2021-08-10 13:10:27 +00:00
|
|
|
process BCFTOOLS_CONCAT {
|
|
|
|
tag "$meta.id"
|
|
|
|
label 'process_medium'
|
|
|
|
|
2022-07-07 13:48:04 +00:00
|
|
|
conda (params.enable_conda ? "bioconda::bcftools=1.15.1" : null)
|
2021-11-26 07:58:40 +00:00
|
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
2022-07-07 13:48:04 +00:00
|
|
|
'https://depot.galaxyproject.org/singularity/bcftools:1.15.1--h0ea216a_0':
|
|
|
|
'quay.io/biocontainers/bcftools:1.15.1--h0ea216a_0' }"
|
2021-08-10 13:10:27 +00:00
|
|
|
|
|
|
|
input:
|
2022-05-31 13:15:58 +00:00
|
|
|
tuple val(meta), path(vcfs), path(tbi)
|
2021-08-10 13:10:27 +00:00
|
|
|
|
|
|
|
output:
|
|
|
|
tuple val(meta), path("*.gz"), emit: vcf
|
2021-10-01 13:04:56 +00:00
|
|
|
path "versions.yml" , emit: versions
|
2021-08-10 13:10:27 +00:00
|
|
|
|
2022-02-04 08:53:32 +00:00
|
|
|
when:
|
|
|
|
task.ext.when == null || task.ext.when
|
|
|
|
|
2021-08-10 13:10:27 +00:00
|
|
|
script:
|
2021-12-07 14:00:43 +00:00
|
|
|
def args = task.ext.args ?: ''
|
|
|
|
prefix = task.ext.prefix ?: "${meta.id}"
|
2021-08-10 13:10:27 +00:00
|
|
|
"""
|
|
|
|
bcftools concat \\
|
|
|
|
--output ${prefix}.vcf.gz \\
|
2021-11-26 07:58:40 +00:00
|
|
|
$args \\
|
2021-08-10 13:10:27 +00:00
|
|
|
--threads $task.cpus \\
|
|
|
|
${vcfs}
|
|
|
|
|
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-08-10 13:10:27 +00:00
|
|
|
"""
|
|
|
|
}
|