Skip to content

Commit

Permalink
Make ciriquant_de outputs optional
Browse files Browse the repository at this point in the history
  • Loading branch information
nictru committed Jan 19, 2025
1 parent 2c71e63 commit 925eb02
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/local/ciriquant/de/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ process CIRIQUANT_DE {
tuple val(meta), path(library), path(expression), path(gene)

output:
tuple val(meta), path("${circ_path}"), emit: circ
tuple val(meta), path("${gene_path}"), emit: gene
tuple val(meta), path("${circ_path}"), emit: circ, optional: true
tuple val(meta), path("${gene_path}"), emit: gene, optional: true
path "versions.yml", emit: versions

when:
Expand Down

0 comments on commit 925eb02

Please sign in to comment.