mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-11 04:33:10 +00:00
39 lines
1.2 KiB
Text
39 lines
1.2 KiB
Text
|
process HAMRONIZATION_SUMMARIZE {
|
||
|
label 'process_low'
|
||
|
|
||
|
conda (params.enable_conda ? "bioconda::hamronization=1.0.3" : null)
|
||
|
container "${ workflow.containerEngine == 'singularity' && !task.ext.singularity_pull_docker_container ?
|
||
|
'https://depot.galaxyproject.org/singularity/hamronization:1.0.3--py_0':
|
||
|
'quay.io/biocontainers/hamronization:1.0.3--py_0' }"
|
||
|
|
||
|
input:
|
||
|
path(reports)
|
||
|
val(format)
|
||
|
|
||
|
output:
|
||
|
path("hamronization_combined_report.json"), optional: true, emit: json
|
||
|
path("hamronization_combined_report.tsv") , optional: true, emit: tsv
|
||
|
path("hamronization_combined_report.html"), optional: true, emit: html
|
||
|
path "versions.yml" , emit: versions
|
||
|
|
||
|
when:
|
||
|
task.ext.when == null || task.ext.when
|
||
|
|
||
|
script:
|
||
|
def args = task.ext.args ?: ''
|
||
|
def outformat = format == 'interactive' ? 'html' : format
|
||
|
"""
|
||
|
hamronize \\
|
||
|
summarize \\
|
||
|
${reports.join(' ')} \\
|
||
|
-t ${format} \\
|
||
|
$args \\
|
||
|
-o hamronization_combined_report.${outformat}
|
||
|
|
||
|
cat <<-END_VERSIONS > versions.yml
|
||
|
"${task.process}":
|
||
|
hamronization: \$(echo \$(hamronize --version 2>&1) | cut -f 2 -d ' ' )
|
||
|
END_VERSIONS
|
||
|
"""
|
||
|
}
|