Skip to content

Commit

Permalink
fix channel i/o for empty channels
Browse files Browse the repository at this point in the history
  • Loading branch information
rannick committed Aug 28, 2023
1 parent 22c5862 commit 74e94ea
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions subworkflows/local/starfusion_workflow.nf
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ workflow STARFUSION_WORKFLOW {
emit:
fusions = ch_starfusion_fusions
star_stats = ch_star_stats
ch_bam_sorted = ch_align
ch_bam_sorted_indexed = bam_sorted_indexed.ifEmpty(null)
ch_bam_sorted = ch_align.ifEmpty([[],[]])
ch_bam_sorted_indexed = bam_sorted_indexed.ifEmpty([[],[],[]])
versions = ch_versions.ifEmpty(null)

}
Expand Down

0 comments on commit 74e94ea

Please sign in to comment.