2021-03-24 16:14:52 +00:00
|
|
|
process YARA_MAPPER {
|
|
|
|
tag "$meta.id"
|
|
|
|
label 'process_medium'
|
|
|
|
|
|
|
|
conda (params.enable_conda ? "bioconda::yara=1.0.2 bioconda::samtools=1.12" : null)
|
2021-11-26 07:58:40 +00:00
|
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
|
|
|
'https://depot.galaxyproject.org/singularity/mulled-v2-f13549097a0d1ca36f9d4f017636fb3609f6c083:f794a548b8692f29264c8984ff116c2141b90d9e-0' :
|
|
|
|
'quay.io/biocontainers/mulled-v2-f13549097a0d1ca36f9d4f017636fb3609f6c083:f794a548b8692f29264c8984ff116c2141b90d9e-0' }"
|
2021-03-24 16:14:52 +00:00
|
|
|
|
|
|
|
input:
|
|
|
|
tuple val(meta), path(reads)
|
|
|
|
path index
|
|
|
|
|
|
|
|
output:
|
|
|
|
tuple val(meta), path("*.mapped.bam"), emit: bam
|
2021-10-01 13:04:56 +00:00
|
|
|
path "versions.yml" , emit: versions
|
2021-03-24 16:14:52 +00:00
|
|
|
|
|
|
|
script:
|
2021-11-26 07:58:40 +00:00
|
|
|
def args = task.ext.args ?: ''
|
2021-12-02 12:39:55 +00:00
|
|
|
def prefix = task.ext.prefix ?: "${meta.id}"
|
2021-09-28 13:37:47 +00:00
|
|
|
if (meta.single_end) {
|
|
|
|
"""
|
|
|
|
yara_mapper \\
|
2021-11-26 07:58:40 +00:00
|
|
|
$args \\
|
2021-09-28 13:37:47 +00:00
|
|
|
-t $task.cpus \\
|
|
|
|
-f bam \\
|
|
|
|
${index}/yara \\
|
|
|
|
$reads | samtools view -@ $task.cpus -hb -F4 > ${prefix}.mapped.bam
|
2021-03-24 16:14:52 +00:00
|
|
|
|
2021-09-28 13:37:47 +00:00
|
|
|
cat <<-END_VERSIONS > versions.yml
|
2021-11-26 07:58:40 +00:00
|
|
|
"${task.process}":
|
|
|
|
yara: \$(echo \$(yara_mapper --version 2>&1) | sed 's/^.*yara_mapper version: //; s/ .*\$//')
|
2021-09-28 13:37:47 +00:00
|
|
|
samtools: \$(echo \$(samtools --version 2>&1) | sed 's/^.*samtools //; s/Using.*\$//')
|
|
|
|
END_VERSIONS
|
|
|
|
"""
|
2021-03-24 16:14:52 +00:00
|
|
|
} else {
|
2021-09-28 13:37:47 +00:00
|
|
|
"""
|
|
|
|
yara_mapper \\
|
2021-11-26 07:58:40 +00:00
|
|
|
$args \\
|
|
|
|
-t $task.cpus \\
|
2021-09-28 13:37:47 +00:00
|
|
|
-f bam \\
|
|
|
|
${index}/yara \\
|
|
|
|
${reads[0]} \\
|
|
|
|
${reads[1]} > output.bam
|
2021-03-24 16:14:52 +00:00
|
|
|
|
2021-09-28 13:37:47 +00:00
|
|
|
samtools view -@ $task.cpus -hF 4 -f 0x40 -b output.bam > ${prefix}_1.mapped.bam
|
|
|
|
samtools view -@ $task.cpus -hF 4 -f 0x80 -b output.bam > ${prefix}_2.mapped.bam
|
|
|
|
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
2021-11-26 07:58:40 +00:00
|
|
|
"${task.process}":
|
|
|
|
yara: \$(echo \$(yara_mapper --version 2>&1) | sed 's/^.*yara_mapper version: //; s/ .*\$//')
|
2021-09-28 13:37:47 +00:00
|
|
|
samtools: \$(echo \$(samtools --version 2>&1) | sed 's/^.*samtools //; s/Using.*\$//')
|
|
|
|
END_VERSIONS
|
|
|
|
"""
|
|
|
|
}
|
2021-03-24 16:14:52 +00:00
|
|
|
}
|