Skip to content

Commit

Permalink
fix: emit optional unpaired reads
Browse files Browse the repository at this point in the history
  • Loading branch information
kelly-sovacool committed Oct 19, 2023
1 parent c5625a0 commit 2ac0809
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/CCBR/custom/bam_to_fastq/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ process BAM_TO_FASTQ {

output:
tuple val(meta), path("*.R?.fastq*"), emit: reads
tuple val(meta), path("*.unpaired.fastq*"), optional: true
tuple val(meta), path("*.unpaired.fastq*"), emit: unpaired, optional: true

when:
task.ext.when == null || task.ext.when
Expand Down

0 comments on commit 2ac0809

Please sign in to comment.