nf-core_modules/modules/bwameth/align/main.nf

51 lines
1.7 KiB
Text
Raw Normal View History

2021-02-17 17:23:11 +00:00
// Import generic module functions
include { initOptions; saveFiles; getSoftwareName; getProcessName } from './functions'
2021-02-17 17:23:11 +00:00
params.options = [:]
options = initOptions(params.options)
2021-02-17 17:23:11 +00:00
process BWAMETH_ALIGN {
tag "$meta.id"
label 'process_high'
publishDir "${params.outdir}",
mode: params.publish_dir_mode,
saveAs: { filename -> saveFiles(filename:filename, options:params.options, publish_dir:getSoftwareName(task.process), meta:meta, publish_by_meta:['id']) }
2021-02-17 17:23:11 +00:00
conda (params.enable_conda ? "bioconda::bwameth=0.2.2" : null)
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
container "https://depot.galaxyproject.org/singularity/bwameth:0.2.2--py_1"
2021-02-17 17:23:11 +00:00
} else {
container "quay.io/biocontainers/bwameth:0.2.2--py_1"
2021-02-17 17:23:11 +00:00
}
input:
tuple val(meta), path(reads)
path index
output:
tuple val(meta), path("*.bam"), emit: bam
path "versions.yml" , emit: version
2021-02-17 17:23:11 +00:00
script:
def split_cpus = Math.floor(task.cpus/2)
2021-02-17 17:23:11 +00:00
def software = getSoftwareName(task.process)
def prefix = options.suffix ? "${meta.id}${options.suffix}" : "${meta.id}"
def read_group = meta.read_group ? "-R ${meta.read_group}" : ""
"""
INDEX=`find -L ${index} -name "*.bwameth.c2t" | sed 's/.bwameth.c2t//'`
2021-02-17 17:23:11 +00:00
bwameth.py \\
$options.args \\
$read_group \\
-t ${split_cpus} \\
--reference \$INDEX \\
2021-02-17 17:23:11 +00:00
$reads \\
| samtools view $options.args2 -@ ${split_cpus} -bhS -o ${prefix}.bam -
2021-02-17 17:23:11 +00:00
cat <<-END_VERSIONS > versions.yml
${getProcessName(task.process)}:
${getSoftwareName(task.process)}: \$(bwameth.py --version 2>&1 | cut -f2 -d" ")
END_VERSIONS
2021-02-17 17:23:11 +00:00
"""
}