2021-02-17 17:23:11 +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-02-17 17:23:11 +00:00
|
|
|
|
|
|
|
process BWAMETH_ALIGN {
|
|
|
|
tag "$meta.id"
|
|
|
|
label 'process_high'
|
|
|
|
publishDir "${params.outdir}",
|
|
|
|
mode: params.publish_dir_mode,
|
2021-04-09 16:23:56 +00:00
|
|
|
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) {
|
2021-04-06 09:45:14 +00:00
|
|
|
container "https://depot.galaxyproject.org/singularity/bwameth:0.2.2--py_1"
|
2021-02-17 17:23:11 +00:00
|
|
|
} else {
|
2021-04-06 09:45:14 +00:00
|
|
|
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 "*.version.txt" , emit: version
|
|
|
|
|
|
|
|
script:
|
|
|
|
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}" : ""
|
|
|
|
"""
|
2021-02-20 12:12:43 +00:00
|
|
|
INDEX=`find -L ${index} -name "*.bwameth.c2t" | sed 's/.bwameth.c2t//'`
|
2021-02-20 11:51:01 +00:00
|
|
|
|
2021-02-17 17:23:11 +00:00
|
|
|
bwameth.py \\
|
|
|
|
$options.args \\
|
|
|
|
$read_group \\
|
|
|
|
-t $task.cpus \\
|
2021-02-20 11:51:01 +00:00
|
|
|
--reference \$INDEX \\
|
2021-02-17 17:23:11 +00:00
|
|
|
$reads \\
|
|
|
|
| samtools view $options.args2 -@ $task.cpus -bhS -o ${prefix}.bam -
|
|
|
|
|
|
|
|
echo \$(bwameth.py --version 2>&1) | cut -f2 -d" " > ${software}.version.txt
|
|
|
|
"""
|
|
|
|
}
|