We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a916886 commit 2e91c91Copy full SHA for 2e91c91
subworkflows/local/contamination_check/main.nf
@@ -30,6 +30,7 @@ workflow CONTAMINATION_CHECK {
30
31
// Discard samples that produced no long contigs (empty output files)
32
// then collect all filtered FASTAs into a single list for concatenation.
33
+ // This step collects all samples so needs to wait until SPADES is completed for all samples.
34
ch_all_fas = CONTIG_FILTER_RENAME.out.filtered
35
.filter { _meta, fa -> fa.size() > 0 }
36
.map { _meta, fa -> fa }
0 commit comments