2021-09-13 15:16:23 +00:00
|
|
|
process GATK4_MUTECT2 {
|
|
|
|
tag "$meta.id"
|
|
|
|
label 'process_medium'
|
|
|
|
|
2022-01-12 12:55:54 +00:00
|
|
|
conda (params.enable_conda ? "bioconda::gatk4=4.2.4.1" : null)
|
2021-11-26 07:58:40 +00:00
|
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
2022-01-12 12:55:54 +00:00
|
|
|
'https://depot.galaxyproject.org/singularity/gatk4:4.2.4.1--hdfd78af_0' :
|
|
|
|
'quay.io/biocontainers/gatk4:4.2.4.1--hdfd78af_0' }"
|
2021-09-13 15:16:23 +00:00
|
|
|
|
|
|
|
input:
|
2021-10-29 10:27:56 +00:00
|
|
|
tuple val(meta) , path(input) , path(input_index) , val(which_norm)
|
|
|
|
val run_single
|
|
|
|
val run_pon
|
|
|
|
val run_mito
|
|
|
|
val interval_label
|
2021-09-13 15:16:23 +00:00
|
|
|
path fasta
|
2021-11-15 17:03:02 +00:00
|
|
|
path fai
|
2021-09-13 15:16:23 +00:00
|
|
|
path dict
|
|
|
|
path germline_resource
|
2021-11-15 16:49:20 +00:00
|
|
|
path germline_resource_tbi
|
2021-09-13 15:16:23 +00:00
|
|
|
path panel_of_normals
|
2021-11-15 16:49:20 +00:00
|
|
|
path panel_of_normals_tbi
|
2021-09-13 15:16:23 +00:00
|
|
|
|
|
|
|
output:
|
2021-09-17 08:56:56 +00:00
|
|
|
tuple val(meta), path("*.vcf.gz") , emit: vcf
|
|
|
|
tuple val(meta), path("*.tbi") , emit: tbi
|
|
|
|
tuple val(meta), path("*.stats") , emit: stats
|
2021-09-13 15:16:23 +00:00
|
|
|
tuple val(meta), path("*.f1r2.tar.gz"), optional:true, emit: f1r2
|
2021-10-01 13:04:56 +00:00
|
|
|
path "versions.yml" , emit: versions
|
2021-09-13 15:16:23 +00:00
|
|
|
|
2022-02-04 08:53:32 +00:00
|
|
|
when:
|
|
|
|
task.ext.when == null || task.ext.when
|
|
|
|
|
2021-09-13 15:16:23 +00:00
|
|
|
script:
|
2021-11-26 07:58:40 +00:00
|
|
|
def args = task.ext.args ?: ''
|
2021-12-02 12:39:55 +00:00
|
|
|
def prefix = task.ext.prefix ?: "${meta.id}"
|
2021-10-29 10:27:56 +00:00
|
|
|
def panels_command = ''
|
|
|
|
def normals_command = ''
|
2021-09-13 15:16:23 +00:00
|
|
|
|
2021-10-29 10:27:56 +00:00
|
|
|
def inputs_command = '-I ' + input.join( ' -I ')
|
2021-09-13 15:16:23 +00:00
|
|
|
|
|
|
|
if(run_pon) {
|
2021-10-29 10:27:56 +00:00
|
|
|
panels_command = ''
|
|
|
|
normals_command = ''
|
2021-09-13 15:16:23 +00:00
|
|
|
|
|
|
|
} else if(run_single) {
|
2021-10-29 10:27:56 +00:00
|
|
|
panels_command = " --germline-resource $germline_resource --panel-of-normals $panel_of_normals"
|
|
|
|
normals_command = ''
|
|
|
|
|
|
|
|
} else if(run_mito){
|
|
|
|
panels_command = "-L ${interval_label} --mitochondria-mode"
|
|
|
|
normals_command = ''
|
2021-09-13 15:16:23 +00:00
|
|
|
|
|
|
|
} else {
|
2021-10-29 10:27:56 +00:00
|
|
|
panels_command = " --germline-resource $germline_resource --panel-of-normals $panel_of_normals --f1r2-tar-gz ${prefix}.f1r2.tar.gz"
|
|
|
|
normals_command = '-normal ' + which_norm.join( ' -normal ')
|
2021-09-13 15:16:23 +00:00
|
|
|
}
|
|
|
|
|
2021-12-07 14:22:24 +00:00
|
|
|
def avail_mem = 3
|
|
|
|
if (!task.memory) {
|
|
|
|
log.info '[GATK Mutect2] Available memory not known - defaulting to 3GB. Specify process memory requirements to change this.'
|
|
|
|
} else {
|
|
|
|
avail_mem = task.memory.giga
|
|
|
|
}
|
2021-09-13 15:16:23 +00:00
|
|
|
"""
|
2021-12-07 14:22:24 +00:00
|
|
|
gatk --java-options "-Xmx${avail_mem}g" Mutect2 \\
|
2021-09-13 15:16:23 +00:00
|
|
|
-R ${fasta} \\
|
2021-10-29 10:27:56 +00:00
|
|
|
${inputs_command} \\
|
|
|
|
${normals_command} \\
|
|
|
|
${panels_command} \\
|
2021-09-13 15:16:23 +00:00
|
|
|
-O ${prefix}.vcf.gz \\
|
2021-11-26 07:58:40 +00:00
|
|
|
$args
|
2021-09-13 15:16:23 +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}":
|
|
|
|
gatk4: \$(echo \$(gatk --version 2>&1) | sed 's/^.*(GATK) v//; s/ .*\$//')
|
2021-09-27 08:41:24 +00:00
|
|
|
END_VERSIONS
|
2021-09-13 15:16:23 +00:00
|
|
|
"""
|
|
|
|
}
|