@@ -67,7 +67,6 @@ workflow NFCORE_PROTEINFOLD {
6767
6868 main :
6969 ch_samplesheet = samplesheet
70- ch_multiqc = channel. empty()
7170 ch_versions = channel. empty()
7271 ch_report_input = channel. empty()
7372 ch_top_ranked_model = channel. empty()
@@ -136,7 +135,6 @@ workflow NFCORE_PROTEINFOLD {
136135 PREPARE_ALPHAFOLD2_DBS . out. pdb_seqres,
137136 PREPARE_ALPHAFOLD2_DBS . out. uniprot
138137 )
139- ch_multiqc = ch_multiqc. mix(ALPHAFOLD2 . out. multiqc_report. collect())
140138 ch_versions = ch_versions. mix(ALPHAFOLD2 . out. versions)
141139 ch_report_input = ch_report_input
142140 .mix(
@@ -195,7 +193,6 @@ workflow NFCORE_PROTEINFOLD {
195193 PREPARE_ALPHAFOLD3_DBS . out. uniprot
196194 )
197195
198- ch_multiqc = ch_multiqc. mix(ALPHAFOLD3 . out. multiqc_report)
199196 ch_versions = ch_versions. mix(ALPHAFOLD3 . out. versions)
200197 ch_report_input = ch_report_input
201198 .mix(
@@ -240,7 +237,6 @@ workflow NFCORE_PROTEINFOLD {
240237 params. colabfold_num_recycles
241238 )
242239
243- ch_multiqc = ch_multiqc. mix(COLABFOLD . out. multiqc_report)
244240 ch_versions = ch_versions. mix(COLABFOLD . out. versions)
245241 ch_report_input = ch_report_input
246242 .mix(
@@ -279,7 +275,6 @@ workflow NFCORE_PROTEINFOLD {
279275 params. esmfold_num_recycles
280276 )
281277
282- ch_multiqc = ch_multiqc. mix(ESMFOLD . out. multiqc_report. collect())
283278 ch_versions = ch_versions. mix(ESMFOLD . out. versions)
284279 ch_report_input = ch_report_input
285280 .mix(
@@ -324,7 +319,6 @@ workflow NFCORE_PROTEINFOLD {
324319 PREPARE_ROSETTAFOLD_ALL_ATOM_DBS . out. pdb100,
325320 PREPARE_ROSETTAFOLD_ALL_ATOM_DBS . out. rfaa_paper_weights
326321 )
327- ch_multiqc = ch_multiqc. mix(ROSETTAFOLD_ALL_ATOM . out. multiqc_report. collect())
328322 ch_versions = ch_versions. mix(ROSETTAFOLD_ALL_ATOM . out. versions)
329323 ch_report_input = ch_report_input
330324 .mix(
@@ -396,7 +390,6 @@ workflow NFCORE_PROTEINFOLD {
396390 PREPARE_HELIXFOLD3_DBS . out. helixfold3_init_models,
397391 PREPARE_HELIXFOLD3_DBS . out. helixfold3_maxit_src
398392 )
399- ch_multiqc = ch_multiqc. mix(HELIXFOLD3 . out. multiqc_report. collect())
400393 ch_versions = ch_versions. mix(HELIXFOLD3 . out. versions)
401394 ch_report_input = ch_report_input
402395 .mix(
@@ -446,7 +439,6 @@ workflow NFCORE_PROTEINFOLD {
446439 PREPARE_ROSETTAFOLD2NA_DBS . out. rna,
447440 PREPARE_ROSETTAFOLD2NA_DBS . out. rosettafold2na_weights
448441 )
449- ch_multiqc = ch_multiqc. mix(ROSETTAFOLD2NA . out. multiqc_report. collect())
450442 ch_versions = ch_versions. mix(ROSETTAFOLD2NA . out. versions)
451443 ch_report_input = ch_report_input
452444 .mix(
@@ -501,7 +493,6 @@ workflow NFCORE_PROTEINFOLD {
501493 PREPARE_COLABFOLD_DBS_BOLTZ . out. uniref30,
502494 params. use_msa_server
503495 )
504- ch_multiqc = ch_multiqc. mix(BOLTZ . out. multiqc_report)
505496 ch_versions = ch_versions. mix(BOLTZ . out. versions)
506497 ch_report_input = ch_report_input
507498 .mix(
@@ -531,7 +522,6 @@ workflow NFCORE_PROTEINFOLD {
531522 params. skip_multiqc,
532523 params. outdir,
533524 ch_versions,
534- ch_multiqc,
535525 ch_multiqc_config,
536526 ch_multiqc_custom_config,
537527 ch_multiqc_logo,
@@ -540,7 +530,7 @@ workflow NFCORE_PROTEINFOLD {
540530 )
541531
542532 emit :
543- multiqc_report = ch_multiqc
533+ multiqc_report = POST_PROCESSING . out . multiqc_report
544534}
545535
546536/*
0 commit comments