@@ -116,6 +116,7 @@ workflow QUANTMS {
116116 //
117117 ch_pipeline_results = Channel . empty()
118118 ch_ids_pmultiqc = Channel . empty()
119+ ch_msstats_in = Channel . empty()
119120
120121 //
121122 // MODULE: Generate decoy database
@@ -141,15 +142,18 @@ workflow QUANTMS {
141142 TMT (ch_fileprep_result. iso, CREATE_INPUT_CHANNEL . out. ch_expdesign, ch_searchengine_in_db)
142143 ch_ids_pmultiqc = ch_ids_pmultiqc. mix(TMT . out. ch_pmultiqc_ids)
143144 ch_pipeline_results = ch_pipeline_results. mix(TMT . out. final_result)
145+ ch_msstats_in = ch_msstats_in. mix(TMT . out. msstats_in)
144146 ch_versions = ch_versions. mix(TMT . out. versions. ifEmpty(null ))
145147
146148 LFQ (ch_fileprep_result. lfq, CREATE_INPUT_CHANNEL . out. ch_expdesign, ch_searchengine_in_db)
147149 ch_ids_pmultiqc = ch_ids_pmultiqc. mix(LFQ . out. ch_pmultiqc_ids)
148150 ch_pipeline_results = ch_pipeline_results. mix(LFQ . out. final_result)
151+ ch_msstats_in = ch_msstats_in. mix(LFQ . out. msstats_in)
149152 ch_versions = ch_versions. mix(LFQ . out. versions. ifEmpty(null ))
150153
151154 DIA (ch_fileprep_result. dia, CREATE_INPUT_CHANNEL . out. ch_expdesign)
152155 ch_pipeline_results = ch_pipeline_results. mix(DIA . out. diann_report)
156+ ch_msstats_in = ch_msstats_in. mix(DIA . out. msstats_in)
153157 ch_versions = ch_versions. mix(DIA . out. versions. ifEmpty(null ))
154158
155159
@@ -177,7 +181,8 @@ workflow QUANTMS {
177181 CREATE_INPUT_CHANNEL . out. ch_expdesign
178182 .combine(ch_pipeline_results. ifEmpty([]). combine(ch_multiqc_files. collect())
179183 .combine(ch_pmultiqc_mzmls. collect())
180- .combine(ch_ids_pmultiqc. collect(). ifEmpty([]))),
184+ .combine(ch_ids_pmultiqc. collect(). ifEmpty([])))
185+ .combine(ch_msstats_in),
181186 ch_multiqc_quantms_logo
182187 )
183188 multiqc_report = SUMMARYPIPELINE . out. ch_pmultiqc_report. toList()
0 commit comments