nf-core_modules/modules/bcftools/merge/main.nf

41 lines
1.4 KiB
Text
Raw Normal View History

2021-02-12 23:08:57 +00:00
// Import generic module functions
include { initOptions; saveFiles; getSoftwareName; getProcessName } from './functions'
2021-02-12 23:08:57 +00:00
params.options = [:]
options = initOptions(params.options)
2021-02-12 23:08:57 +00:00
process BCFTOOLS_MERGE {
tag "$meta.id"
2021-02-24 08:47:54 +00:00
label 'process_medium'
2021-02-12 23:08:57 +00:00
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-12 23:08:57 +00:00
conda (params.enable_conda ? 'bioconda::bcftools=1.13' : null)
2021-02-12 23:08:57 +00:00
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
container "https://depot.galaxyproject.org/singularity/bcftools:1.13--h3a49de5_0"
2021-02-12 23:08:57 +00:00
} else {
container "quay.io/biocontainers/bcftools:1.13--h3a49de5_0"
2021-02-12 23:08:57 +00:00
}
input:
tuple val(meta), path(vcfs), path(tbis)
output:
tuple val(meta), path("*.gz"), emit: vcf
path "versions.yml" , emit: versions
2021-02-12 23:08:57 +00:00
script:
prefix = options.suffix ? "${meta.id}${options.suffix}" : "${meta.id}"
"""
2021-02-12 23:16:52 +00:00
bcftools merge -Oz \\
2021-02-12 23:08:57 +00:00
--output ${prefix}.vcf.gz \\
$options.args \\
*.vcf.gz
cat <<-END_VERSIONS > versions.yml
${getProcessName(task.process)}:
${getSoftwareName(task.process)}: \$(bcftools --version 2>&1 | head -n1 | sed 's/^.*bcftools //; s/ .*\$//')
END_VERSIONS
2021-02-12 23:08:57 +00:00
"""
}