2021-09-12 17:51:40 +00:00
|
|
|
process BCFTOOLS_VIEW {
|
|
|
|
tag "$meta.id"
|
|
|
|
label 'process_medium'
|
|
|
|
|
|
|
|
conda (params.enable_conda ? "bioconda::bcftools=1.13" : null)
|
2021-11-26 07:58:40 +00:00
|
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
|
|
|
'https://depot.galaxyproject.org/singularity/bcftools:1.13--h3a49de5_0' :
|
|
|
|
'quay.io/biocontainers/bcftools:1.13--h3a49de5_0' }"
|
2021-09-12 17:51:40 +00:00
|
|
|
|
|
|
|
input:
|
|
|
|
tuple val(meta), path(vcf), path(index)
|
|
|
|
path(regions)
|
|
|
|
path(targets)
|
|
|
|
path(samples)
|
|
|
|
|
|
|
|
output:
|
|
|
|
tuple val(meta), path("*.gz") , emit: vcf
|
2021-10-01 13:04:56 +00:00
|
|
|
path "versions.yml" , emit: versions
|
2021-09-12 17:51:40 +00:00
|
|
|
|
|
|
|
script:
|
2021-11-26 07:58:40 +00:00
|
|
|
def args = task.ext.args ?: ''
|
|
|
|
def prefix = task.ext.suffix ? "${meta.id}${task.ext.suffix}" : "${meta.id}"
|
2021-09-12 17:51:40 +00:00
|
|
|
def regions_file = regions ? "--regions-file ${regions}" : ""
|
|
|
|
def targets_file = targets ? "--targets-file ${targets}" : ""
|
|
|
|
def samples_file = samples ? "--samples-file ${samples}" : ""
|
|
|
|
"""
|
|
|
|
bcftools view \\
|
|
|
|
--output ${prefix}.vcf.gz \\
|
|
|
|
${regions_file} \\
|
|
|
|
${targets_file} \\
|
|
|
|
${samples_file} \\
|
2021-11-26 07:58:40 +00:00
|
|
|
$args \\
|
2021-09-12 17:51:40 +00:00
|
|
|
--threads $task.cpus \\
|
|
|
|
${vcf}
|
|
|
|
|
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-09-12 17:51:40 +00:00
|
|
|
"""
|
|
|
|
}
|