mirror of
https://github.com/MillironX/nf-core_modules.git
synced 2024-11-10 20:23:10 +00:00
update mqc command
This commit is contained in:
parent
439d2a9e67
commit
f1e33ca6e0
1 changed files with 7 additions and 2 deletions
|
@ -8,7 +8,7 @@ process MULTIQC {
|
|||
|
||||
input:
|
||||
path multiqc_files, stageAs: "?/*"
|
||||
tuple path(mqc_config), path(mqc_logo)
|
||||
tuple path(multiqc_config), path(multiqc_logo)
|
||||
|
||||
output:
|
||||
path "*multiqc_report.html", emit: report
|
||||
|
@ -21,8 +21,13 @@ process MULTIQC {
|
|||
|
||||
script:
|
||||
def args = task.ext.args ?: ''
|
||||
def config = multiqc_config ?: '--config $multiqc_config'
|
||||
"""
|
||||
multiqc -f $args .
|
||||
multiqc \
|
||||
--force \
|
||||
$config \
|
||||
$args \
|
||||
.
|
||||
|
||||
cat <<-END_VERSIONS > versions.yml
|
||||
"${task.process}":
|
||||
|
|
Loading…
Reference in a new issue