nf-core_modules/modules/samtools/convert/main.nf

43 lines
1.3 KiB
Text
Raw Normal View History

process SAMTOOLS_CONVERT {
tag "$meta.id"
label 'process_low'
conda (params.enable_conda ? "bioconda::samtools=1.15.1" : null)
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'https://depot.galaxyproject.org/singularity/samtools:1.15.1--h1170115_0' :
'quay.io/biocontainers/samtools:1.15.1--h1170115_0' }"
input:
tuple val(meta), path(input), path(index)
path fasta
path fai
output:
2022-05-09 14:07:49 +00:00
tuple val(meta), path("*.{cram,bam}"), path("*.{crai,bai}") , emit: alignment_index
2022-05-09 14:04:58 +00:00
path "versions.yml" , emit: versions
when:
task.ext.when == null || task.ext.when
script:
def args = task.ext.args ?: ''
2022-05-09 14:06:22 +00:00
def prefix = task.ext.prefix ?: "${meta.id}"
def output_extension = input.getExtension() == "bam" ? "cram" : "bam"
"""
samtools view \\
--threads ${task.cpus} \\
--reference ${fasta} \\
$args \\
$input \\
2022-05-09 14:06:22 +00:00
-o ${prefix}.${output_extension}
2022-05-09 14:06:22 +00:00
samtools index -@${task.cpus} ${prefix}.${output_extension}
cat <<-END_VERSIONS > versions.yml
"${task.process}":
samtools: \$(echo \$(samtools --version 2>&1) | sed 's/^.*samtools //; s/Using.*\$//')
END_VERSIONS
"""
}