Skip to content

Commit

Permalink
make fusioninspector tsv optional
Browse files Browse the repository at this point in the history
  • Loading branch information
fevac committed Aug 22, 2023
1 parent 88d1051 commit 98fb0ba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions modules/local/fusioninspector/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,9 @@ process FUSIONINSPECTOR {
path reference

output:
tuple val(meta), path("*FusionInspector.fusions.tsv") , emit: tsv
path "*" , emit: output
path "versions.yml" , emit: versions
tuple val(meta), path("*FusionInspector.fusions.tsv") , optional:true, emit: tsv
path "*" , emit: output
path "versions.yml" , emit: versions

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

0 comments on commit 98fb0ba

Please sign in to comment.