mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-14 13:43:09 +00:00
more generic name because of multiple extension (#1880)
This commit is contained in:
parent
1de4bd46b7
commit
f48a24770e
1 changed files with 2 additions and 2 deletions
|
@ -8,7 +8,7 @@ process SAMTOOLS_STATS {
|
||||||
'quay.io/biocontainers/samtools:1.15.1--h1170115_0' }"
|
'quay.io/biocontainers/samtools:1.15.1--h1170115_0' }"
|
||||||
|
|
||||||
input:
|
input:
|
||||||
tuple val(meta), path(bam), path(bai)
|
tuple val(meta), path(input), path(input_index)
|
||||||
path fasta
|
path fasta
|
||||||
|
|
||||||
output:
|
output:
|
||||||
|
@ -27,7 +27,7 @@ process SAMTOOLS_STATS {
|
||||||
stats \\
|
stats \\
|
||||||
--threads ${task.cpus-1} \\
|
--threads ${task.cpus-1} \\
|
||||||
${reference} \\
|
${reference} \\
|
||||||
${bam} \\
|
${input} \\
|
||||||
> ${prefix}.stats
|
> ${prefix}.stats
|
||||||
|
|
||||||
cat <<-END_VERSIONS > versions.yml
|
cat <<-END_VERSIONS > versions.yml
|
||||||
|
|
Loading…
Reference in a new issue