2021-02-19 12:29:08 +00:00
|
|
|
process GATK4_MERGEVCFS {
|
|
|
|
tag "$meta.id"
|
|
|
|
label 'process_medium'
|
|
|
|
|
2022-01-12 12:55:54 +00:00
|
|
|
conda (params.enable_conda ? "bioconda::gatk4=4.2.4.1" : null)
|
2021-11-26 07:58:40 +00:00
|
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
2022-01-12 12:55:54 +00:00
|
|
|
'https://depot.galaxyproject.org/singularity/gatk4:4.2.4.1--hdfd78af_0' :
|
|
|
|
'quay.io/biocontainers/gatk4:4.2.4.1--hdfd78af_0' }"
|
2021-02-19 12:29:08 +00:00
|
|
|
|
|
|
|
input:
|
|
|
|
tuple val(meta), path(vcfs)
|
2021-07-01 15:13:01 +00:00
|
|
|
path ref_dict
|
|
|
|
val use_ref_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
|
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}"
|
2021-07-01 15:13:01 +00:00
|
|
|
|
2021-02-19 12:29:08 +00:00
|
|
|
// Make list of VCFs to merge
|
|
|
|
def input = ""
|
|
|
|
for (vcf in vcfs) {
|
|
|
|
input += " I=${vcf}"
|
|
|
|
}
|
2021-02-19 13:09:32 +00:00
|
|
|
def ref = use_ref_dict ? "D=${ref_dict}" : ""
|
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 \\
|
2021-02-19 12:29:08 +00:00
|
|
|
$input \\
|
2021-07-01 15:13:01 +00:00
|
|
|
O=${prefix}.vcf.gz \\
|
2021-02-19 13:09:32 +00:00
|
|
|
$ref \\
|
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
|
|
|
"""
|
|
|
|
}
|