2020-12-17 23:50:24 +00:00
|
|
|
process SAMTOOLS_STATS {
|
|
|
|
tag "$meta.id"
|
2022-08-29 10:05:47 +00:00
|
|
|
label 'process_single'
|
2020-12-17 23:50:24 +00:00
|
|
|
|
2022-04-11 12:26:28 +00:00
|
|
|
conda (params.enable_conda ? "bioconda::samtools=1.15.1" : null)
|
2021-11-26 07:58:40 +00:00
|
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
2022-04-11 12:26:28 +00:00
|
|
|
'https://depot.galaxyproject.org/singularity/samtools:1.15.1--h1170115_0' :
|
|
|
|
'quay.io/biocontainers/samtools:1.15.1--h1170115_0' }"
|
2020-12-17 23:50:24 +00:00
|
|
|
|
|
|
|
input:
|
2022-07-14 09:42:00 +00:00
|
|
|
tuple val(meta), path(input), path(input_index)
|
2021-10-29 11:01:05 +00:00
|
|
|
path fasta
|
2020-12-17 23:50:24 +00:00
|
|
|
|
|
|
|
output:
|
|
|
|
tuple val(meta), path("*.stats"), emit: stats
|
2021-10-01 13:04:56 +00:00
|
|
|
path "versions.yml" , emit: versions
|
2020-12-17 23:50:24 +00:00
|
|
|
|
2022-02-04 08:53:32 +00:00
|
|
|
when:
|
|
|
|
task.ext.when == null || task.ext.when
|
|
|
|
|
2020-12-17 23:50:24 +00:00
|
|
|
script:
|
2021-11-26 07:58:40 +00:00
|
|
|
def args = task.ext.args ?: ''
|
2022-06-16 11:42:01 +00:00
|
|
|
def prefix = task.ext.prefix ?: "${meta.id}"
|
2021-10-29 11:01:05 +00:00
|
|
|
def reference = fasta ? "--reference ${fasta}" : ""
|
2020-12-17 23:50:24 +00:00
|
|
|
"""
|
2022-01-07 17:52:39 +00:00
|
|
|
samtools \\
|
|
|
|
stats \\
|
2022-08-29 10:05:47 +00:00
|
|
|
--threads ${task.cpus} \\
|
2022-01-07 17:52:39 +00:00
|
|
|
${reference} \\
|
2022-07-14 09:42:00 +00:00
|
|
|
${input} \\
|
2022-06-16 11:42:01 +00:00
|
|
|
> ${prefix}.stats
|
2021-11-18 21:24:47 +00:00
|
|
|
|
2021-09-27 08:41:24 +00:00
|
|
|
cat <<-END_VERSIONS > versions.yml
|
2021-11-26 07:58:40 +00:00
|
|
|
"${task.process}":
|
|
|
|
samtools: \$(echo \$(samtools --version 2>&1) | sed 's/^.*samtools //; s/Using.*\$//')
|
2021-09-27 08:41:24 +00:00
|
|
|
END_VERSIONS
|
2020-12-17 23:50:24 +00:00
|
|
|
"""
|
2022-03-28 15:48:39 +00:00
|
|
|
|
|
|
|
stub:
|
|
|
|
def prefix = task.ext.prefix ?: "${meta.id}"
|
|
|
|
"""
|
2022-06-16 11:42:01 +00:00
|
|
|
touch ${prefix}.stats
|
2022-03-28 15:48:39 +00:00
|
|
|
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
|
|
"${task.process}":
|
|
|
|
samtools: \$(echo \$(samtools --version 2>&1) | sed 's/^.*samtools //; s/Using.*\$//')
|
|
|
|
END_VERSIONS
|
|
|
|
"""
|
2020-12-17 23:50:24 +00:00
|
|
|
}
|