2021-01-31 21:23:26 +00:00
|
|
|
// Import generic module functions
|
|
|
|
include { initOptions; saveFiles; getSoftwareName } from './functions'
|
|
|
|
|
|
|
|
params.options = [:]
|
2021-03-15 12:16:43 +00:00
|
|
|
options = initOptions(params.options)
|
2021-01-31 21:23:26 +00:00
|
|
|
|
|
|
|
process BCFTOOLS_CONSENSUS {
|
|
|
|
tag "$meta.id"
|
2021-02-24 08:47:54 +00:00
|
|
|
label 'process_medium'
|
2021-01-31 21:23:26 +00:00
|
|
|
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-03-09 09:04:08 +00:00
|
|
|
conda (params.enable_conda ? 'bioconda::bcftools=1.11' : null)
|
2021-01-31 21:23:26 +00:00
|
|
|
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
2021-03-09 09:04:08 +00:00
|
|
|
container 'https://depot.galaxyproject.org/singularity/bcftools:1.11--h7c999a4_0'
|
2021-01-31 21:23:26 +00:00
|
|
|
} else {
|
2021-03-09 09:04:08 +00:00
|
|
|
container 'quay.io/biocontainers/bcftools:1.11--h7c999a4_0'
|
2021-01-31 21:23:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
input:
|
|
|
|
tuple val(meta), path(vcf), path(tbi), path(fasta)
|
|
|
|
|
|
|
|
output:
|
2021-03-09 09:04:08 +00:00
|
|
|
tuple val(meta), path('*.fa'), emit: fasta
|
|
|
|
path '*.version.txt' , emit: version
|
2021-01-31 21:23:26 +00:00
|
|
|
|
|
|
|
script:
|
|
|
|
def software = getSoftwareName(task.process)
|
|
|
|
def prefix = options.suffix ? "${meta.id}${options.suffix}" : "${meta.id}"
|
|
|
|
"""
|
|
|
|
cat $fasta | bcftools consensus $vcf $options.args > ${prefix}.fa
|
|
|
|
header=\$(head -n 1 ${prefix}.fa | sed 's/>//g')
|
2021-03-09 09:04:08 +00:00
|
|
|
sed -i 's/\${header}/${meta.id}/g' ${prefix}.fa
|
2021-01-31 21:23:26 +00:00
|
|
|
|
|
|
|
echo \$(bcftools --version 2>&1) | sed 's/^.*bcftools //; s/ .*\$//' > ${software}.version.txt
|
|
|
|
"""
|
|
|
|
}
|