mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-12-22 11:08: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)
|
tuple val(meta), path(bam)
|
||||||
|
|
||||||
output:
|
output:
|
||||||
tuple val(meta), path("**.{bam,sam}") , emit: bam
|
tuple val(meta), path("output/**.{bam,sam}") , emit: bam
|
||||||
path "versions.yml" , emit: versions
|
path "versions.yml" , emit: versions
|
||||||
|
|
||||||
when:
|
when:
|
||||||
task.ext.when == null || task.ext.when
|
task.ext.when == null || task.ext.when
|
||||||
|
@ -30,7 +30,7 @@ process ELPREP_MERGE {
|
||||||
|
|
||||||
elprep merge \\
|
elprep merge \\
|
||||||
input \\
|
input \\
|
||||||
${prefix}.${suffix} \\
|
output/${prefix}.${suffix} \\
|
||||||
$args \\
|
$args \\
|
||||||
${single_end} \\
|
${single_end} \\
|
||||||
--nr-of-threads $task.cpus
|
--nr-of-threads $task.cpus
|
||||||
|
|
|
@ -4,5 +4,5 @@
|
||||||
- elprep
|
- elprep
|
||||||
- elprep/merge
|
- elprep/merge
|
||||||
files:
|
files:
|
||||||
- path: output/elprep/test.bam
|
- path: output/elprep/output/test.bam
|
||||||
- path: output/elprep/versions.yml
|
- path: output/elprep/versions.yml
|
||||||
|
|
Loading…
Reference in a new issue