Skip to content
Snippets Groups Projects
Unverified Commit ac48a440 authored by Maxime U. Garcia's avatar Maxime U. Garcia Committed by GitHub
Browse files

Merge pull request #146 from nservant/dev

Remove usages of deprecated Channel.from method
parents 0f1ff36d 4de40e33
No related branches found
No related tags found
No related merge requests found
...@@ -257,8 +257,8 @@ workflow HIC { ...@@ -257,8 +257,8 @@ workflow HIC {
ch_workflow_summary = Channel.value(workflow_summary) ch_workflow_summary = Channel.value(workflow_summary)
ch_multiqc_files = Channel.empty() ch_multiqc_files = Channel.empty()
ch_multiqc_files = ch_multiqc_files.mix(Channel.from(ch_multiqc_config)) ch_multiqc_files = ch_multiqc_files.mix(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_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(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(FASTQC.out.zip.map{it->it[1]})
ch_multiqc_files = ch_multiqc_files.mix(HICPRO.out.mqc) 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