2022-04-12 15:15:39 +00:00
|
|
|
process GATK4_MARKDUPLICATES_SPARK {
|
|
|
|
tag "$meta.id"
|
|
|
|
label 'process_high'
|
|
|
|
|
2022-06-09 12:54:19 +00:00
|
|
|
conda (params.enable_conda ? "bioconda::gatk4=4.2.6.1 conda-forge::openjdk=8.0.312" : null)
|
2022-04-12 15:15:39 +00:00
|
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
2022-06-09 12:54:19 +00:00
|
|
|
'https://depot.galaxyproject.org/singularity/gatk4:4.2.6.1--hdfd78af_0':
|
|
|
|
'quay.io/biocontainers/gatk4:4.2.6.1--hdfd78af_0' }"
|
2022-04-12 15:15:39 +00:00
|
|
|
|
|
|
|
input:
|
|
|
|
tuple val(meta), path(bam)
|
|
|
|
path fasta
|
|
|
|
path fasta_fai
|
|
|
|
path dict
|
|
|
|
|
|
|
|
output:
|
2022-06-03 11:50:45 +00:00
|
|
|
tuple val(meta), path("${prefix}"), emit: output
|
2022-05-31 12:34:50 +00:00
|
|
|
tuple val(meta), path("*.metrics"), emit: metrics, optional: true
|
|
|
|
path "versions.yml" , emit: versions
|
2022-04-12 15:15:39 +00:00
|
|
|
|
|
|
|
when:
|
|
|
|
task.ext.when == null || task.ext.when
|
|
|
|
|
|
|
|
script:
|
|
|
|
def args = task.ext.args ?: ''
|
2022-06-07 11:58:57 +00:00
|
|
|
prefix = task.ext.prefix ?: "${meta.id}"
|
2022-04-13 13:15:44 +00:00
|
|
|
def input_list = bam.collect{"--input $it"}.join(' ')
|
2022-04-12 15:15:39 +00:00
|
|
|
|
2022-05-25 14:38:48 +00:00
|
|
|
|
2022-04-12 15:15:39 +00:00
|
|
|
def avail_mem = 3
|
|
|
|
if (!task.memory) {
|
|
|
|
log.info '[GATK MarkDuplicatesSpark] 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" MarkDuplicatesSpark \\
|
|
|
|
$input_list \\
|
|
|
|
--output $prefix \\
|
|
|
|
--reference $fasta \\
|
|
|
|
--spark-master local[${task.cpus}] \\
|
|
|
|
--tmp-dir . \\
|
|
|
|
$args
|
|
|
|
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
|
|
"${task.process}":
|
|
|
|
gatk4: \$(echo \$(gatk --version 2>&1) | sed 's/^.*(GATK) v//; s/ .*\$//')
|
2022-06-09 08:24:39 +00:00
|
|
|
openjdk: \$(echo \$(java -version 2>&1) | grep version | sed 's/\"//g' | cut -f3 -d ' ')
|
2022-04-12 15:15:39 +00:00
|
|
|
END_VERSIONS
|
|
|
|
"""
|
|
|
|
}
|