Skip to content

Commit

Permalink
Fixed empty channels
Browse files Browse the repository at this point in the history
  • Loading branch information
svarona committed Dec 28, 2023
1 parent 566837a commit bb66560
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion workflows/nanopore.nf
Original file line number Diff line number Diff line change
Expand Up @@ -468,7 +468,7 @@ workflow NANOPORE {
QUAST (
ch_to_quast,
PREPARE_GENOME.out.fasta.collect().map { [ [:], it ] },
params.gff ? PREPARE_GENOME.out.gff.map { [ [:], it ] } : [],
params.gff ? PREPARE_GENOME.out.gff.map { [ [:], it ] } : [ [:], [] ],
)
ch_quast_multiqc = QUAST.out.tsv
ch_versions = ch_versions.mix(QUAST.out.versions)
Expand Down

0 comments on commit bb66560

Please sign in to comment.