2021-02-19 12:29:08 +00:00
|
|
|
process GATK4_MERGEVCFS {
|
|
|
|
tag "$meta.id"
|
|
|
|
label 'process_medium'
|
|
|
|
|
2022-05-12 13:45:21 +00:00
|
|
|
conda (params.enable_conda ? "bioconda::gatk4=4.2.6.1" : null)
|
2021-11-26 07:58:40 +00:00
|
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
2022-05-12 13:45:21 +00:00
|
|
|
'https://depot.galaxyproject.org/singularity/gatk4:4.2.6.1--hdfd78af_0':
|
|
|
|
'quay.io/biocontainers/gatk4:4.2.6.1--hdfd78af_0' }"
|
2021-02-19 12:29:08 +00:00
|
|
|
|
|
|
|
input:
|
2022-04-12 15:15:39 +00:00
|
|
|
tuple val(meta), path(vcf)
|
|
|
|
path dict
|
2021-02-19 12:29:08 +00:00
|
|
|
|
|
|
|
output:
|
2021-07-01 15:13:01 +00:00
|
|
|
tuple val(meta), path('*.vcf.gz'), emit: vcf
|
2022-05-31 13:37:26 +00:00
|
|
|
tuple val(meta), path("*.tbi") , emit: tbi
|
2021-10-01 13:04:56 +00:00
|
|
|
path "versions.yml" , emit: versions
|
2021-02-19 12:29:08 +00:00
|
|
|
|
2022-02-04 08:53:32 +00:00
|
|
|
when:
|
|
|
|
task.ext.when == null || task.ext.when
|
|
|
|
|
2021-02-19 12:29:08 +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}"
|
2022-04-12 15:15:39 +00:00
|
|
|
def input_list = vcf.collect{ "--INPUT $it"}.join(' ')
|
|
|
|
def reference_command = dict ? "--SEQUENCE_DICTIONARY $dict" : ""
|
2021-07-01 15:13:01 +00:00
|
|
|
|
2021-12-07 14:22:24 +00:00
|
|
|
def avail_mem = 3
|
|
|
|
if (!task.memory) {
|
|
|
|
log.info '[GATK MergeVcfs] Available memory not known - defaulting to 3GB. Specify process memory requirements to change this.'
|
|
|
|
} else {
|
|
|
|
avail_mem = task.memory.giga
|
|
|
|
}
|
2021-02-19 12:29:08 +00:00
|
|
|
"""
|
2021-12-07 14:22:24 +00:00
|
|
|
gatk --java-options "-Xmx${avail_mem}g" MergeVcfs \\
|
2022-04-12 15:15:39 +00:00
|
|
|
$input_list \\
|
|
|
|
--OUTPUT ${prefix}.vcf.gz \\
|
|
|
|
$reference_command \\
|
|
|
|
--TMP_DIR . \\
|
2021-11-26 07:58:40 +00:00
|
|
|
$args
|
2021-02-19 12:29:08 +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-02-19 12:29:08 +00:00
|
|
|
"""
|
|
|
|
}
|