We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 295b1dc commit 0d64669Copy full SHA for 0d64669
1 file changed
modules/format-checks.nf
@@ -105,10 +105,10 @@ workflow format_checks {
105
check_anndata(anndata_format_ch, anndata_format_reference_file)
106
107
// collect all error files and concatenate to print to a formatting errors output file
108
- error_input_ch = check_sce.out
+ error_output_ch = check_sce.out
109
.mix(check_anndata.out) // mix with the anndata error files
110
111
- error_files_ch = error_input_ch
+ error_files_ch = error_output_ch
112
.collect{ meta, error_file -> error_file } // collect into a list of just the error files
113
114
compile_errors(error_files_ch)
0 commit comments