mirror of
https://github.com/MillironX/taxprofiler.git
synced 2024-11-11 00:53:09 +00:00
38 lines
1.1 KiB
Text
Generated
38 lines
1.1 KiB
Text
Generated
process MEGAN_RMA2INFO {
|
|
tag "$meta.id"
|
|
label 'process_single'
|
|
|
|
conda "bioconda::megan=6.21.7"
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
|
'https://depot.galaxyproject.org/singularity/megan:6.21.7--h9ee0642_0':
|
|
'quay.io/biocontainers/megan:6.21.7--h9ee0642_0' }"
|
|
|
|
input:
|
|
tuple val(meta), path(rma6)
|
|
val(megan_summary)
|
|
|
|
output:
|
|
tuple val(meta), path("*.txt.gz") , emit: txt
|
|
tuple val(meta), path("*.megan"), optional: true, emit: megan_summary
|
|
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 summary = megan_summary ? "-es ${prefix}.megan" : ""
|
|
"""
|
|
rma2info \\
|
|
-i ${rma6} \\
|
|
-o ${prefix}.txt.gz \\
|
|
${summary} \\
|
|
$args
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
"${task.process}":
|
|
megan: \$(echo \$(rma2info 2>&1) | grep version | sed 's/.*version //g;s/, built.*//g')
|
|
END_VERSIONS
|
|
"""
|
|
}
|