mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-14 21:53:10 +00:00
49 lines
1.8 KiB
Text
49 lines
1.8 KiB
Text
process KRAKEN2_KRAKEN2 {
|
|
tag "$meta.id"
|
|
label 'process_high'
|
|
|
|
conda (params.enable_conda ? 'bioconda::kraken2=2.1.2 conda-forge::pigz=2.6' : null)
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
|
'https://depot.galaxyproject.org/singularity/mulled-v2-5799ab18b5fc681e75923b2450abaa969907ec98:87fc08d11968d081f3e8a37131c1f1f6715b6542-0' :
|
|
'quay.io/biocontainers/mulled-v2-5799ab18b5fc681e75923b2450abaa969907ec98:87fc08d11968d081f3e8a37131c1f1f6715b6542-0' }"
|
|
|
|
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 "versions.yml" , emit: versions
|
|
|
|
when:
|
|
task.ext.when == null || task.ext.when
|
|
|
|
script:
|
|
def args = task.ext.args ?: ''
|
|
def prefix = task.ext.prefix ?: "${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 \\
|
|
$args \\
|
|
$reads
|
|
|
|
pigz -p $task.cpus *.fastq
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
"${task.process}":
|
|
kraken2: \$(echo \$(kraken2 --version 2>&1) | sed 's/^.*Kraken version //; s/ .*\$//')
|
|
pigz: \$( pigz --version 2>&1 | sed 's/pigz //g' )
|
|
END_VERSIONS
|
|
"""
|
|
}
|