2021-02-01 08:46:24 +00:00
|
|
|
// Import generic module functions
|
|
|
|
include { initOptions; saveFiles; getSoftwareName } from './functions'
|
|
|
|
|
|
|
|
params.options = [:]
|
|
|
|
def options = initOptions(params.options)
|
|
|
|
|
2021-02-02 09:50:45 +00:00
|
|
|
process BCFTOOLS_ISEC {
|
2021-02-01 08:46:24 +00:00
|
|
|
tag "$meta.id"
|
|
|
|
publishDir "${params.outdir}",
|
|
|
|
mode: params.publish_dir_mode,
|
|
|
|
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), publish_id:meta.id) }
|
|
|
|
|
2021-02-09 22:00:19 +00:00
|
|
|
conda (params.enable_conda ? "bioconda::bcftools=1.11=h7c999a4_0" : null)
|
2021-02-01 08:46:24 +00:00
|
|
|
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
|
|
|
container "https://depot.galaxyproject.org/singularity/bcftools:1.11--h7c999a4_0"
|
|
|
|
} else {
|
|
|
|
container "quay.io/biocontainers/bcftools:1.11--h7c999a4_0"
|
|
|
|
}
|
|
|
|
|
|
|
|
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
|
|
|
|
path "*.version.txt" , emit: version
|
2021-02-01 08:46:24 +00:00
|
|
|
|
|
|
|
script:
|
|
|
|
def software = getSoftwareName(task.process)
|
2021-02-02 09:50:45 +00:00
|
|
|
prefix = options.suffix ? "${meta.id}${options.suffix}" : "${meta.id}"
|
2021-02-01 08:46:24 +00:00
|
|
|
"""
|
2021-02-02 09:50:45 +00:00
|
|
|
bcftools isec \\
|
|
|
|
$options.args \\
|
|
|
|
-p $prefix \\
|
2021-02-08 14:11:36 +00:00
|
|
|
*.vcf.gz
|
2021-02-01 08:46:24 +00:00
|
|
|
echo \$(bcftools --version 2>&1) | sed 's/^.*bcftools //; s/ .*\$//' > ${software}.version.txt
|
|
|
|
"""
|
|
|
|
}
|