mirror of
https://github.com/MillironX/taxprofiler.git
synced 2024-11-11 03:43:09 +00:00
41 lines
1.3 KiB
Text
Generated
41 lines
1.3 KiB
Text
Generated
process KRONA_KTIMPORTTAXONOMY {
|
|
tag "${meta.id}"
|
|
label 'process_single'
|
|
|
|
// WARN: Version information not provided by tool on CLI. Please update version string below when bumping container versions.
|
|
conda "bioconda::krona=2.8"
|
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
|
'https://depot.galaxyproject.org/singularity/krona:2.8--pl5262hdfd78af_2' :
|
|
'quay.io/biocontainers/krona:2.8--pl5262hdfd78af_2' }"
|
|
|
|
input:
|
|
tuple val(meta), path(report)
|
|
path taxonomy, stageAs: 'taxonomy.tab'
|
|
|
|
output:
|
|
tuple val(meta), path ('*.html'), emit: html
|
|
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 VERSION = '2.8' // WARN: Version information not provided by tool on CLI. Please update this string when bumping container versions.
|
|
"""
|
|
TAXONOMY=\$(find -L . -name '*.tab' -exec dirname {} \\;)
|
|
echo \$TAXONOMY
|
|
|
|
ktImportTaxonomy \\
|
|
$args \\
|
|
-o ${prefix}.html \\
|
|
-tax \$TAXONOMY/ \\
|
|
$report
|
|
|
|
cat <<-END_VERSIONS > versions.yml
|
|
"${task.process}":
|
|
krona: $VERSION
|
|
END_VERSIONS
|
|
"""
|
|
}
|