nf-core_modules/modules/gatk4/variantrecalibrator/main.nf

57 lines
2 KiB
Text
Raw Normal View History

process GATK4_VARIANTRECALIBRATOR {
tag "$meta.id"
label 'process_low'
2022-05-12 13:45:21 +00:00
conda (params.enable_conda ? "bioconda::gatk4=4.2.6.1" : null)
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
2022-05-12 13:45:21 +00:00
'https://depot.galaxyproject.org/singularity/gatk4:4.2.6.1--hdfd78af_0':
'quay.io/biocontainers/gatk4:4.2.6.1--hdfd78af_0' }"
input:
tuple val(meta), path(vcf), path(tbi) // input vcf and tbi of variants to recalibrate
path resource_vcf // resource vcf
path resource_tbi // resource tbi
val labels // string (or list of strings) containing dedicated resource labels already formatted with '--resource:' tag
path fasta
path fai
path dict
output:
tuple val(meta), path("*.recal") , emit: recal
tuple val(meta), path("*.idx") , emit: idx
tuple val(meta), path("*.tranches"), emit: tranches
tuple val(meta), path("*plots.R") , emit: plots, optional:true
path "versions.yml" , emit: versions
2022-02-04 08:53:32 +00:00
when:
task.ext.when == null || task.ext.when
script:
def args = task.ext.args ?: ''
def prefix = task.ext.prefix ?: "${meta.id}"
def reference_command = fasta ? "--reference $fasta " : ''
def labels_command = labels.join(' ')
def avail_mem = 3
if (!task.memory) {
log.info '[GATK VariantRecalibrator] Available memory not known - defaulting to 3GB. Specify process memory requirements to change this.'
} else {
avail_mem = task.memory.giga
}
"""
gatk --java-options "-Xmx${avail_mem}g" VariantRecalibrator \\
--variant $vcf \\
--output ${prefix}.recal \\
--tranches-file ${prefix}.tranches \\
$reference_command \\
--tmp-dir . \\
$labels_command \\
$args
cat <<-END_VERSIONS > versions.yml
"${task.process}":
gatk4: \$(echo \$(gatk --version 2>&1) | sed 's/^.*(GATK) v//; s/ .*\$//')
END_VERSIONS
"""
}