Skip to content

Commit

Permalink
update kallistobustools count output list (#5110)
Browse files Browse the repository at this point in the history
* update kallistobustools count output list

* update stub snapshot as new output channels are now emitted
  • Loading branch information
fmalmeida authored Mar 18, 2024
1 parent 92ca535 commit 9d3e489
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 5 deletions.
8 changes: 5 additions & 3 deletions modules/nf-core/kallistobustools/count/main.nf
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,11 @@ process KALLISTOBUSTOOLS_COUNT {
val workflow_mode

output:
tuple val(meta), path ("*.count") , emit: count
path "versions.yml" , emit: versions
path "*.count/*/*.mtx" , emit: matrix //Ensure that kallisto finished and produced outputs
tuple val(meta), path ("*.count") , emit: count
tuple val(meta), path ("*.count/counts_unfiltered"), emit: raw_counts
tuple val(meta), path ("*.count/counts_filtered") , emit: filtered_counts, optional: true
path "versions.yml" , emit: versions
path "*.count/*/*.mtx" , emit: matrix //Ensure that kallisto finished and produced outputs

when:
task.ext.when == null || task.ext.when
Expand Down
8 changes: 8 additions & 0 deletions modules/nf-core/kallistobustools/count/meta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,14 @@ output:
type: file
description: kb count output folder
pattern: "*.{count}"
- raw_counts:
type: file
description: kb raw counts output folder
pattern: "*.{count}/counts_unfiltered"
- filtered_counts:
type: file
description: kb filtered counts output folder
pattern: "*.{count}/counts_filtered"
- versions:
type: file
description: File containing software versions
Expand Down
30 changes: 28 additions & 2 deletions modules/nf-core/kallistobustools/count/tests/main.nf.test.snap

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 9d3e489

Please sign in to comment.