mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-12-22 02:58:17 +00:00
fix output glob
This commit is contained in:
parent
2f6382168c
commit
fefffb9bb0
2 changed files with 4 additions and 4 deletions
|
@ -11,8 +11,8 @@ process ELPREP_MERGE {
|
|||
tuple val(meta), path(bam)
|
||||
|
||||
output:
|
||||
tuple val(meta), path("**.{bam,sam}") , emit: bam
|
||||
path "versions.yml" , emit: versions
|
||||
tuple val(meta), path("output/**.{bam,sam}") , emit: bam
|
||||
path "versions.yml" , emit: versions
|
||||
|
||||
when:
|
||||
task.ext.when == null || task.ext.when
|
||||
|
@ -30,7 +30,7 @@ process ELPREP_MERGE {
|
|||
|
||||
elprep merge \\
|
||||
input \\
|
||||
${prefix}.${suffix} \\
|
||||
output/${prefix}.${suffix} \\
|
||||
$args \\
|
||||
${single_end} \\
|
||||
--nr-of-threads $task.cpus
|
||||
|
|
|
@ -4,5 +4,5 @@
|
|||
- elprep
|
||||
- elprep/merge
|
||||
files:
|
||||
- path: output/elprep/test.bam
|
||||
- path: output/elprep/output/test.bam
|
||||
- path: output/elprep/versions.yml
|
||||
|
|
Loading…
Reference in a new issue