mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
61c88c6233
* fix: remove left-over unnecessary code * Add hamronizer/deeparg * Add hamronisation/summarise * Update test.yml * Update modules/hamronization/summarize/meta.yml Co-authored-by: Jasmin F <73216762+jasmezz@users.noreply.github.com> * line up outputs Co-authored-by: Robert A. Petit III <robbie.petit@gmail.com> Co-authored-by: Jasmin F <73216762+jasmezz@users.noreply.github.com>
38 lines
1.2 KiB
Text
38 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
|
|
"""
|
|
}
|