2021-02-02 09:50:45 +00:00
|
|
|
process BCFTOOLS_ISEC {
|
2021-02-01 08:46:24 +00:00
|
|
|
tag "$meta.id"
|
2021-02-24 08:47:54 +00:00
|
|
|
label 'process_medium'
|
2021-02-01 08:46:24 +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-01 08:46:24 +00:00
|
|
|
|
|
|
|
input:
|
2021-02-08 14:11:36 +00:00
|
|
|
tuple val(meta), path(vcfs), path(tbis)
|
2021-02-01 08:46:24 +00:00
|
|
|
|
|
|
|
output:
|
2021-02-02 09:50:45 +00:00
|
|
|
tuple val(meta), path("${prefix}"), emit: results
|
2021-10-01 13:04:56 +00:00
|
|
|
path "versions.yml" , emit: versions
|
2021-02-01 08:46:24 +00:00
|
|
|
|
2022-02-04 08:53:32 +00:00
|
|
|
when:
|
|
|
|
task.ext.when == null || task.ext.when
|
|
|
|
|
2021-02-01 08:46:24 +00:00
|
|
|
script:
|
2021-12-07 14:00:43 +00:00
|
|
|
def args = task.ext.args ?: ''
|
|
|
|
prefix = task.ext.prefix ?: "${meta.id}"
|
2021-02-01 08:46:24 +00:00
|
|
|
"""
|
2021-02-02 09:50:45 +00:00
|
|
|
bcftools isec \\
|
2021-11-26 07:58:40 +00:00
|
|
|
$args \\
|
2021-02-02 09:50:45 +00:00
|
|
|
-p $prefix \\
|
2021-02-08 14:11:36 +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-01 08:46:24 +00:00
|
|
|
"""
|
|
|
|
}
|