nf-core_modules/software/bcftools/isec/main.nf

38 lines
1.3 KiB
Text
Raw Normal View History

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)
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-16 23:58:23 +00:00
conda (params.enable_conda ? "bioconda::bcftools=1.11" : 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:
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)
prefix = options.suffix ? "${meta.id}${options.suffix}" : "${meta.id}"
2021-02-01 08:46:24 +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
"""
}