nf-core_modules/modules/gatk/realignertargetcreator/main.nf

44 lines
1.2 KiB
Text
Raw Normal View History

2022-05-31 18:13:48 +00:00
process GATK_REALIGNERTARGETCREATOR {
tag "$meta.id"
label 'process_low'
2022-05-31 18:19:49 +00:00
conda (params.enable_conda ? "bioconda::gatk=3.5" : null)
2022-05-31 18:13:48 +00:00
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
2022-05-31 18:19:49 +00:00
'https://depot.galaxyproject.org/singularity/gatk:3.5--hdfd78af_11':
'quay.io/biocontainers/gatk:3.5--hdfd78af_11' }"
2022-05-31 18:13:48 +00:00
input:
tuple val(meta), path(bam)
2022-05-31 18:19:49 +00:00
tuple val(meta), path(reference)
tuple val(meta), path(known_vcf)
2022-05-31 18:13:48 +00:00
output:
tuple val(meta), path("*.bam"), emit: bam
path "versions.yml" , emit: versions
when:
task.ext.when == null || task.ext.when
script:
def args = task.ext.args ?: ''
def prefix = task.ext.prefix ?: "${meta.id}"
2022-05-31 18:19:49 +00:00
def known = known_vcf ? "-known ${known_vcf}" ? ""
if ("$bam" == "${prefix}.bam") error "Input and output names are the same, set prefix in module configuration to disambiguate!"
2022-05-31 18:13:48 +00:00
"""
2022-05-31 18:19:49 +00:00
gatk3 \\
-T RealigerTargetCreator \\
-nt ${task.cpus}
-I ${bam} \\
-R ${reference} \\
2022-05-31 18:13:48 +00:00
-o ${prefix}.bam \\
2022-05-31 18:19:49 +00:00
${known} \\
$args
2022-05-31 18:13:48 +00:00
cat <<-END_VERSIONS > versions.yml
"${task.process}":
2022-05-31 18:19:49 +00:00
gatk: \$(echo \$(gatk3 --version))
2022-05-31 18:13:48 +00:00
END_VERSIONS
"""
}