Skip to content

Commit 222a986

Browse files
committed
harmonize syntax and correct comment
1 parent 4705376 commit 222a986

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

workflows/seqinspector.nf

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,10 +87,10 @@ workflow SEQINSPECTOR {
8787
.mix(ch_multiqc_extra_files)
8888
.collect(),
8989
ch_multiqc_config.toList(),
90-
Channel.empty().toList(),
90+
[],
9191
ch_multiqc_logo.toList(),
92-
Channel.empty().toList(),
93-
Channel.empty().toList()
92+
[],
93+
[]
9494
)
9595

9696
ch_tags = ch_multiqc_files
@@ -138,7 +138,7 @@ workflow SEQINSPECTOR {
138138
)
139139

140140
emit:
141-
global_report = MULTIQC_GLOBAL.out.report.toList() // channel: /path/to/multiqc_report.html
141+
global_report = MULTIQC_GLOBAL.out.report.toList() // channel: [ /path/to/multiqc_report.html ]
142142
grouped_reports = MULTIQC_PER_TAG.out.report.toList() // channel: [ /path/to/multiqc_report.html ]
143143
versions = ch_versions // channel: [ path(versions.yml) ]
144144
}

0 commit comments

Comments
 (0)