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
|
|
|
|
2022-01-07 17:52:39 +00:00
|
|
|
conda (params.enable_conda ? 'bioconda::bcftools=1.14' : null)
|
2021-11-26 07:58:40 +00:00
|
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
2022-01-07 17:52:39 +00:00
|
|
|
'https://depot.galaxyproject.org/singularity/bcftools:1.14--h88f3f91_0' :
|
|
|
|
'quay.io/biocontainers/bcftools:1.14--h88f3f91_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
|
2021-10-01 13:04:56 +00:00
|
|
|
path "versions.yml" , emit: versions
|
2021-02-12 23:08:57 +00:00
|
|
|
|
2022-02-04 08:53:32 +00:00
|
|
|
when:
|
|
|
|
task.ext.when == null || task.ext.when
|
|
|
|
|
2021-02-12 23:08:57 +00:00
|
|
|
script:
|
2021-12-07 14:00:43 +00:00
|
|
|
def args = task.ext.args ?: ''
|
|
|
|
prefix = task.ext.prefix ?: "${meta.id}"
|
2021-02-12 23:08:57 +00:00
|
|
|
"""
|
2021-02-12 23:16:52 +00:00
|
|
|
bcftools merge -Oz \\
|
2021-02-12 23:08:57 +00:00
|
|
|
--output ${prefix}.vcf.gz \\
|
2021-11-26 07:58:40 +00:00
|
|
|
$args \\
|
2021-02-12 23:08:57 +00:00
|
|
|
*.vcf.gz
|
2021-09-27 08:41:24 +00:00
|
|
|
cat <<-END_VERSIONS > versions.yml
|
2021-11-26 07:58:40 +00:00
|
|
|
"${task.process}":
|
|
|
|
bcftools: \$(bcftools --version 2>&1 | head -n1 | sed 's/^.*bcftools //; s/ .*\$//')
|
2021-09-27 08:41:24 +00:00
|
|
|
END_VERSIONS
|
2021-02-12 23:08:57 +00:00
|
|
|
"""
|
|
|
|
}
|