Skip to content
Snippets Groups Projects
Commit 4de40e33 authored by nservant's avatar nservant
Browse files

[BUG] fix bug in channel.from

parent 90f8469b
No related branches found
No related tags found
No related merge requests found
......@@ -257,8 +257,8 @@ workflow HIC {
ch_workflow_summary = Channel.value(workflow_summary)
ch_multiqc_files = Channel.empty()
ch_multiqc_files = ch_multiqc_files.mix(Channel.from(ch_multiqc_config))
ch_multiqc_files = ch_multiqc_files.mix(Channel.from(ch_multiqc_custom_config.collect().ifEmpty([])))
ch_multiqc_files = ch_multiqc_files.mix(ch_multiqc_config)
ch_multiqc_files = ch_multiqc_files.mix(ch_multiqc_custom_config.collect().ifEmpty([]))
ch_multiqc_files = ch_multiqc_files.mix(ch_workflow_summary.collectFile(name: 'workflow_summary_mqc.yaml'))
ch_multiqc_files = ch_multiqc_files.mix(FASTQC.out.zip.map{it->it[1]})
ch_multiqc_files = ch_multiqc_files.mix(HICPRO.out.mqc)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment