mirror of
https://github.com/MillironX/taxprofiler.git
synced 2024-11-22 21:59:55 +00:00
58 lines
2.4 KiB
Text
Generated
58 lines
2.4 KiB
Text
Generated
process KRAKEN2_KRAKEN2 {
|
|
tag "$meta.id"
|
|
label 'process_high'
|
|
|
|
conda "bioconda::kraken2=2.1.2 conda-forge::pigz=2.6"
|
|
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
|
|
val save_output_fastqs
|
|
val save_reads_assignment
|
|
|
|
output:
|
|
tuple val(meta), path('*.classified{.,_}*') , optional:true, emit: classified_reads_fastq
|
|
tuple val(meta), path('*.unclassified{.,_}*') , optional:true, emit: unclassified_reads_fastq
|
|
tuple val(meta), path('*classifiedreads.txt') , optional:true, emit: classified_reads_assignment
|
|
tuple val(meta), path('*report.txt') , emit: report
|
|
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"
|
|
def classified_option = save_output_fastqs ? "--classified-out ${classified}" : ""
|
|
def unclassified_option = save_output_fastqs ? "--unclassified-out ${unclassified}" : ""
|
|
def readclassification_option = save_reads_assignment ? "--output ${prefix}.kraken2.classifiedreads.txt" : ""
|
|
def compress_reads_command = save_output_fastqs ? "pigz -p $task.cpus *.fastq" : ""
|
|
|
|
"""
|
|
kraken2 \\
|
|
--db $db \\
|
|
--threads $task.cpus \\
|
|
--report ${prefix}.kraken2.report.txt \\
|
|
--gzip-compressed \\
|
|
$unclassified_option \\
|
|
$classified_option \\
|
|
$readclassification_option \\
|
|
$paired \\
|
|
$args \\
|
|
$reads
|
|
|
|
$compress_reads_command
|
|
|
|
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
|
|
"""
|
|
}
|