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

52 lines
1.6 KiB
Text
Raw Normal View History

2021-02-19 12:29:08 +00:00
// Import generic module functions
include { initOptions; saveFiles; getSoftwareName; getProcessName } from './functions'
2021-02-19 12:29:08 +00:00
params.options = [:]
options = initOptions(params.options)
2021-02-19 12:29:08 +00:00
process GATK4_MERGEVCFS {
tag "$meta.id"
label 'process_medium'
publishDir "${params.outdir}",
mode: params.publish_dir_mode,
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), meta:meta, publish_by_meta:['id']) }
2021-02-19 12:29:08 +00:00
2021-07-16 09:23:08 +00:00
conda (params.enable_conda ? "bioconda::gatk4=4.2.0.0" : null)
2021-02-19 12:29:08 +00:00
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
2021-07-16 09:23:08 +00:00
container "https://depot.galaxyproject.org/singularity/gatk4:4.2.0.0--0"
2021-02-19 12:29:08 +00:00
} else {
2021-07-16 09:23:08 +00:00
container "quay.io/biocontainers/gatk4:4.2.0.0--0"
2021-02-19 12:29:08 +00:00
}
input:
tuple val(meta), path(vcfs)
path ref_dict
val use_ref_dict
2021-02-19 12:29:08 +00:00
output:
tuple val(meta), path('*.vcf.gz'), emit: vcf
path "versions.yml" , emit: versions
2021-02-19 12:29:08 +00:00
script:
def prefix = options.suffix ? "${meta.id}${options.suffix}" : "${meta.id}"
2021-02-19 12:29:08 +00:00
// Make list of VCFs to merge
def input = ""
for (vcf in vcfs) {
input += " I=${vcf}"
}
def ref = use_ref_dict ? "D=${ref_dict}" : ""
2021-02-19 12:29:08 +00:00
"""
gatk MergeVcfs \\
$input \\
O=${prefix}.vcf.gz \\
$ref \\
2021-02-19 12:29:08 +00:00
$options.args
cat <<-END_VERSIONS > versions.yml
${getProcessName(task.process)}:
${getSoftwareName(task.process)}: \$(echo \$(gatk --version 2>&1) | sed 's/^.*(GATK) v//; s/ .*\$//')
END_VERSIONS
2021-02-19 12:29:08 +00:00
"""
}