Skip to content

Commit

Permalink
transdecoder needed a meta.id with the container updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Danilo Di Leo committed May 22, 2024
1 parent 9551673 commit 01e2aaa
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions modules/local/transdecoder.nf
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,11 @@ process TRANSDECODER {
tuple val(meta), path(fasta)

output:
tuple val(meta), path("*.pep") , emit: pep
tuple val(meta), path("*.gff3"), emit: gff
tuple val(meta), path("*.cds") , emit: cds
tuple val(meta), path("*.bed") , emit: bed
path "versions.yml" , emit: versions
tuple val(meta), path("${meta.id}/*.pep") , emit: pep
tuple val(meta), path("${meta.id}/*.gff3"), emit: gff
tuple val(meta), path("${meta.id}/*.cds") , emit: cds
tuple val(meta), path("${meta.id}/*.bed") , emit: bed
path "versions.yml" , emit: versions

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

0 comments on commit 01e2aaa

Please sign in to comment.