2021-03-18 13:08:06 +00:00
|
|
|
// Import generic module functions
|
|
|
|
include { initOptions; saveFiles; getSoftwareName } from './functions'
|
|
|
|
|
|
|
|
params.options = [:]
|
|
|
|
def options = initOptions(params.options)
|
|
|
|
|
|
|
|
process KRAKEN2_RUN {
|
|
|
|
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-03-18 13:08:06 +00:00
|
|
|
|
2021-04-12 16:47:34 +00:00
|
|
|
conda (params.enable_conda ? 'bioconda::kraken2=2.1.1 conda-forge::pigz=2.6' : null)
|
2021-03-18 13:08:06 +00:00
|
|
|
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
|
2021-04-12 16:47:34 +00:00
|
|
|
container 'https://depot.galaxyproject.org/singularity/mulled-v2-5799ab18b5fc681e75923b2450abaa969907ec98:941789bd7fe00db16531c26de8bf3c5c985242a5-0'
|
2021-03-18 13:08:06 +00:00
|
|
|
} else {
|
2021-04-12 16:47:34 +00:00
|
|
|
container 'quay.io/biocontainers/mulled-v2-5799ab18b5fc681e75923b2450abaa969907ec98:941789bd7fe00db16531c26de8bf3c5c985242a5-0'
|
2021-03-18 13:08:06 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
input:
|
|
|
|
tuple val(meta), path(reads)
|
|
|
|
path db
|
|
|
|
|
|
|
|
output:
|
|
|
|
tuple val(meta), path('*classified*') , emit: classified
|
|
|
|
tuple val(meta), path('*unclassified*'), emit: unclassified
|
|
|
|
tuple val(meta), path('*report.txt') , emit: txt
|
|
|
|
path '*.version.txt' , emit: version
|
|
|
|
|
|
|
|
script:
|
|
|
|
def software = getSoftwareName(task.process)
|
|
|
|
def prefix = options.suffix ? "${meta.id}${options.suffix}" : "${meta.id}"
|
|
|
|
def paired = meta.single_end ? "" : "--paired"
|
|
|
|
def classified = meta.single_end ? "${prefix}.classified.fastq" : "${prefix}.classified#.fastq"
|
|
|
|
def unclassified = meta.single_end ? "${prefix}.unclassified.fastq" : "${prefix}.unclassified#.fastq"
|
|
|
|
"""
|
|
|
|
kraken2 \\
|
|
|
|
--db $db \\
|
|
|
|
--threads $task.cpus \\
|
|
|
|
--unclassified-out $unclassified \\
|
|
|
|
--classified-out $classified \\
|
|
|
|
--report ${prefix}.kraken2.report.txt \\
|
|
|
|
--gzip-compressed \\
|
|
|
|
$paired \\
|
|
|
|
$options.args \\
|
|
|
|
$reads
|
|
|
|
|
2021-04-12 16:47:34 +00:00
|
|
|
pigz -p $task.cpus *.fastq
|
|
|
|
|
2021-03-18 13:08:06 +00:00
|
|
|
echo \$(kraken2 --version 2>&1) | sed 's/^.*Kraken version //; s/ .*\$//' > ${software}.version.txt
|
|
|
|
"""
|
|
|
|
}
|