2021-03-23 17:32:37 +00:00
|
|
|
process GATK4_BASERECALIBRATOR {
|
|
|
|
tag "$meta.id"
|
|
|
|
label 'process_low'
|
|
|
|
|
2021-12-20 16:10:49 +00:00
|
|
|
conda (params.enable_conda ? "bioconda::gatk4=4.2.4.0" : null)
|
2021-11-26 07:58:40 +00:00
|
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
2021-12-20 16:10:49 +00:00
|
|
|
'https://depot.galaxyproject.org/singularity/gatk4:4.2.4.0--hdfd78af_0' :
|
|
|
|
'quay.io/biocontainers/gatk4:4.2.4.0--hdfd78af_0' }"
|
2021-03-23 17:32:37 +00:00
|
|
|
|
|
|
|
input:
|
2021-12-23 11:58:20 +00:00
|
|
|
tuple val(meta), path(input), path(input_index), path(intervals)
|
2021-03-23 17:32:37 +00:00
|
|
|
path fasta
|
2021-11-15 17:03:02 +00:00
|
|
|
path fai
|
2021-03-23 17:32:37 +00:00
|
|
|
path dict
|
|
|
|
path knownSites
|
|
|
|
path knownSites_tbi
|
|
|
|
|
|
|
|
output:
|
|
|
|
tuple val(meta), path("*.table"), emit: table
|
2021-10-01 13:04:56 +00:00
|
|
|
path "versions.yml" , emit: versions
|
2021-03-23 17:32:37 +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-12-23 11:58:20 +00:00
|
|
|
def intervalsCommand = intervals ? "-L ${intervals}" : ""
|
2021-03-23 17:32:37 +00:00
|
|
|
def sitesCommand = knownSites.collect{"--known-sites ${it}"}.join(' ')
|
2021-12-23 11:58:20 +00:00
|
|
|
|
2021-12-07 14:22:24 +00:00
|
|
|
def avail_mem = 3
|
2021-10-29 11:01:05 +00:00
|
|
|
if (!task.memory) {
|
|
|
|
log.info '[GATK BaseRecalibrator] Available memory not known - defaulting to 3GB. Specify process memory requirements to change this.'
|
|
|
|
} else {
|
|
|
|
avail_mem = task.memory.giga
|
|
|
|
}
|
2021-12-23 11:58:20 +00:00
|
|
|
|
2021-03-23 17:32:37 +00:00
|
|
|
"""
|
2021-12-07 14:22:24 +00:00
|
|
|
gatk --java-options "-Xmx${avail_mem}g" BaseRecalibrator \
|
2021-03-23 17:32:37 +00:00
|
|
|
-R $fasta \
|
2021-10-29 11:01:05 +00:00
|
|
|
-I $input \
|
2021-03-23 17:32:37 +00:00
|
|
|
$sitesCommand \
|
|
|
|
$intervalsCommand \
|
2021-10-29 11:01:05 +00:00
|
|
|
--tmp-dir . \
|
2021-11-26 07:58:40 +00:00
|
|
|
$args \
|
2021-03-23 17:32:37 +00:00
|
|
|
-O ${prefix}.table
|
|
|
|
|
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-03-23 17:32:37 +00:00
|
|
|
"""
|
|
|
|
}
|