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

49 lines
1.4 KiB
Text
Raw Normal View History

2022-05-13 11:46:34 +00:00
process GATK4_SPLITINTERVALS {
tag "$meta.id"
label 'process_low'
conda (params.enable_conda ? "bioconda::gatk4=4.2.6.1" : null)
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
'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(intervals)
path(fasta)
path(fasta_fai)
2022-05-13 12:21:48 +00:00
path(dict)
2022-05-13 11:46:34 +00:00
output:
tuple val(meta), path("**.interval_list"), emit: split_intervals
2022-05-13 12:35:22 +00:00
path "versions.yml" , emit: versions
2022-05-13 11:46:34 +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 = fasta ? "--reference $fasta" : ""
def avail_mem = 3
if (!task.memory) {
2022-05-13 12:25:53 +00:00
log.info '[GATK SplitIntervals] Available memory not known - defaulting to 3GB. Specify process memory requirements to change this.'
2022-05-13 11:46:34 +00:00
} else {
avail_mem = task.memory.giga
}
"""
gatk --java-options "-Xmx${avail_mem}g" SplitIntervals \\
--output ${prefix} \\
--intervals $intervals \\
$reference \\
2022-05-13 12:35:22 +00:00
--tmp-dir . \\
2022-05-13 11:48:33 +00:00
$args
2022-05-13 11:46:34 +00:00
cat <<-END_VERSIONS > versions.yml
"${task.process}":
gatk4: \$(echo \$(gatk --version 2>&1) | sed 's/^.*(GATK) v//; s/ .*\$//')
END_VERSIONS
"""
}