2021-09-13 11:16:23 -04:00
|
|
|
process GATK4_MUTECT2 {
|
|
|
|
tag "$meta.id"
|
|
|
|
label 'process_medium'
|
|
|
|
|
2022-05-12 09:45:21 -04:00
|
|
|
conda (params.enable_conda ? "bioconda::gatk4=4.2.6.1" : null)
|
2021-11-26 02:58:40 -05:00
|
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
2022-05-12 09:45:21 -04:00
|
|
|
'https://depot.galaxyproject.org/singularity/gatk4:4.2.6.1--hdfd78af_0':
|
|
|
|
'quay.io/biocontainers/gatk4:4.2.6.1--hdfd78af_0' }"
|
2021-09-13 11:16:23 -04:00
|
|
|
|
|
|
|
input:
|
2022-04-12 11:15:39 -04:00
|
|
|
tuple val(meta), path(input), path(input_index), path(intervals)
|
2021-09-13 11:16:23 -04:00
|
|
|
path fasta
|
2021-11-15 12:03:02 -05:00
|
|
|
path fai
|
2021-09-13 11:16:23 -04:00
|
|
|
path dict
|
|
|
|
path germline_resource
|
2021-11-15 11:49:20 -05:00
|
|
|
path germline_resource_tbi
|
2021-09-13 11:16:23 -04:00
|
|
|
path panel_of_normals
|
2021-11-15 11:49:20 -05:00
|
|
|
path panel_of_normals_tbi
|
2021-09-13 11:16:23 -04:00
|
|
|
|
|
|
|
output:
|
2021-09-17 04:56:56 -04: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 11:16:23 -04:00
|
|
|
tuple val(meta), path("*.f1r2.tar.gz"), optional:true, emit: f1r2
|
2021-10-01 09:04:56 -04:00
|
|
|
path "versions.yml" , emit: versions
|
2021-09-13 11:16:23 -04:00
|
|
|
|
2022-02-04 03:53:32 -05:00
|
|
|
when:
|
|
|
|
task.ext.when == null || task.ext.when
|
|
|
|
|
2021-09-13 11:16:23 -04:00
|
|
|
script:
|
2021-11-26 02:58:40 -05:00
|
|
|
def args = task.ext.args ?: ''
|
2021-12-02 07:39:55 -05:00
|
|
|
def prefix = task.ext.prefix ?: "${meta.id}"
|
2022-04-12 11:15:39 -04:00
|
|
|
def inputs = input.collect{ "--input $it"}.join(" ")
|
|
|
|
def interval_command = intervals ? "--intervals $intervals" : ""
|
|
|
|
def pon_command = panel_of_normals ? "--panel-of-normals $panel_of_normals" : ""
|
|
|
|
def gr_command = germline_resource ? "--germline-resource $germline_resource" : ""
|
2021-09-13 11:16:23 -04:00
|
|
|
|
2021-12-07 09:22:24 -05: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 11:16:23 -04:00
|
|
|
"""
|
2021-12-07 09:22:24 -05:00
|
|
|
gatk --java-options "-Xmx${avail_mem}g" Mutect2 \\
|
2022-04-12 11:15:39 -04:00
|
|
|
$inputs \\
|
|
|
|
--output ${prefix}.vcf.gz \\
|
|
|
|
--reference $fasta \\
|
|
|
|
$pon_command \\
|
|
|
|
$gr_command \\
|
|
|
|
$interval_command \\
|
|
|
|
--tmp-dir . \\
|
2021-11-26 02:58:40 -05:00
|
|
|
$args
|
2021-09-13 11:16:23 -04:00
|
|
|
|
2021-09-27 04:41:24 -04:00
|
|
|
cat <<-END_VERSIONS > versions.yml
|
2021-11-26 02:58:40 -05:00
|
|
|
"${task.process}":
|
|
|
|
gatk4: \$(echo \$(gatk --version 2>&1) | sed 's/^.*(GATK) v//; s/ .*\$//')
|
2021-09-27 04:41:24 -04:00
|
|
|
END_VERSIONS
|
2021-09-13 11:16:23 -04:00
|
|
|
"""
|
2022-05-02 04:34:14 -04:00
|
|
|
|
|
|
|
stub:
|
|
|
|
def prefix = task.ext.prefix ?: "${meta.id}"
|
|
|
|
"""
|
|
|
|
touch ${prefix}.vcf.gz
|
2022-05-02 09:11:57 -04:00
|
|
|
touch ${prefix}.vcf.gz.tbi
|
|
|
|
touch ${prefix}.vcf.gz.stats
|
2022-05-02 04:34:14 -04:00
|
|
|
touch ${prefix}.f1r2.tar.gz
|
|
|
|
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
|
|
"${task.process}":
|
|
|
|
gatk4: \$(echo \$(gatk --version 2>&1) | sed 's/^.*(GATK) v//; s/ .*\$//')
|
|
|
|
END_VERSIONS
|
|
|
|
"""
|
2021-09-13 11:16:23 -04:00
|
|
|
}
|