2021-02-17 17:23:11 +00:00
|
|
|
process BWAMETH_ALIGN {
|
|
|
|
tag "$meta.id"
|
|
|
|
label 'process_high'
|
|
|
|
|
|
|
|
conda (params.enable_conda ? "bioconda::bwameth=0.2.2" : null)
|
2021-11-26 07:58:40 +00:00
|
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
|
|
|
'https://depot.galaxyproject.org/singularity/bwameth:0.2.2--py_1' :
|
|
|
|
'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
|
2021-10-01 13:04:56 +00:00
|
|
|
path "versions.yml" , emit: versions
|
2021-02-17 17:23:11 +00:00
|
|
|
|
|
|
|
script:
|
2021-11-26 07:58:40 +00:00
|
|
|
def args = task.ext.args ?: ''
|
|
|
|
def args2 = task.ext.args2 ?: ''
|
2021-12-02 12:39:55 +00:00
|
|
|
def prefix = task.ext.prefix ?: "${meta.id}"
|
2021-02-17 17:23:11 +00:00
|
|
|
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-11-06 15:05:04 +00:00
|
|
|
# Modify the timestamps so that bwameth doesn't complain about building the index
|
|
|
|
# See https://github.com/nf-core/methylseq/pull/217
|
|
|
|
touch -c -- *
|
|
|
|
|
2021-02-17 17:23:11 +00:00
|
|
|
bwameth.py \\
|
2021-11-26 07:58:40 +00:00
|
|
|
$args \\
|
2021-02-17 17:23:11 +00:00
|
|
|
$read_group \\
|
2021-09-30 08:26:52 +00:00
|
|
|
-t $task.cpus \\
|
2021-02-20 11:51:01 +00:00
|
|
|
--reference \$INDEX \\
|
2021-02-17 17:23:11 +00:00
|
|
|
$reads \\
|
2021-11-26 07:58:40 +00:00
|
|
|
| samtools view $args2 -@ $task.cpus -bhS -o ${prefix}.bam -
|
2021-02-17 17:23:11 +00:00
|
|
|
|
2021-09-27 08:41:24 +00:00
|
|
|
cat <<-END_VERSIONS > versions.yml
|
2021-11-26 07:58:40 +00:00
|
|
|
"${task.process}":
|
|
|
|
bwameth: \$(echo \$(bwameth.py --version 2>&1) | cut -f2 -d" ")
|
2021-09-27 08:41:24 +00:00
|
|
|
END_VERSIONS
|
2021-02-17 17:23:11 +00:00
|
|
|
"""
|
|
|
|
}
|