@@ -130,11 +130,6 @@ include { QUANTIFY_SALMON as QUANTIFY_SALMON } from '../subworkflows/local/
130130//
131131// MODULE: Installed directly from nf-core/modules
132132//
133- <<<<<< < HEAD
134- include { FASTQC } from ' ../modules/nf-core/fastqc/main'
135- include { MULTIQC } from ' ../modules/nf-core/multiqc/main'
136- include { CUSTOM_DUMPSOFTWAREVERSIONS } from ' ../modules/nf-core/custom/dumpsoftwareversions/main'
137- ====== =
138133include { CAT_FASTQ } from ' ../modules/nf-core/modules/cat/fastq/main'
139134include { BBMAP_BBSPLIT } from ' ../modules/nf-core/modules/bbmap/bbsplit/main'
140135include { SAMTOOLS_SORT } from ' ../modules/nf-core/modules/samtools/sort/main'
@@ -144,7 +139,6 @@ include { SORTMERNA } from '../modules/nf-core/modules/sortmer
144139include { STRINGTIE_STRINGTIE } from ' ../modules/nf-core/modules/stringtie/stringtie/main'
145140include { SUBREAD_FEATURECOUNTS } from ' ../modules/nf-core/modules/subread/featurecounts/main'
146141include { CUSTOM_DUMPSOFTWAREVERSIONS } from ' ../modules/nf-core/modules/custom/dumpsoftwareversions/main'
147- >>>>>>> origin/ dev
148142
149143//
150144// SUBWORKFLOW: Consisting entirely of nf-core/modules
@@ -771,30 +765,16 @@ workflow RNASEQ {
771765 workflow_summary = WorkflowRnaseq . paramsSummaryMultiqc(workflow, summary_params)
772766 ch_workflow_summary = Channel . value(workflow_summary)
773767
774- <<<<<< < HEAD
775- methods_description = WorkflowRnaseq . methodsDescriptionText(workflow, ch_multiqc_custom_methods_description)
776- ch_methods_description = Channel . value(methods_description)
777-
778- ch_multiqc_files = Channel . empty()
779- ch_multiqc_files = ch_multiqc_files. mix(ch_workflow_summary. collectFile(name : ' workflow_summary_mqc.yaml' ))
780- ch_multiqc_files = ch_multiqc_files. mix(ch_methods_description. collectFile(name : ' methods_description_mqc.yaml' ))
781- ch_multiqc_files = ch_multiqc_files. mix(CUSTOM_DUMPSOFTWAREVERSIONS . out. mqc_yml. collect())
782- ch_multiqc_files = ch_multiqc_files. mix(FASTQC . out. zip. collect{it[1 ]}. ifEmpty([]))
783-
784- MULTIQC (
785- ch_multiqc_files. collect(),
786- ch_multiqc_config. collect(). ifEmpty([]),
787- ch_multiqc_custom_config. collect(). ifEmpty([]),
788- ch_multiqc_logo. collect(). ifEmpty([])
789- )
790- multiqc_report = MULTIQC . out. report. toList()
791- ch_versions = ch_versions. mix(MULTIQC . out. versions)
792- ====== =
768+ methods_description = WorkflowRnaseq . methodsDescriptionText(workflow, ch_multiqc_custom_methods_description)
769+ ch_methods_description = Channel . value(methods_description)
770+
793771 MULTIQC (
794772 ch_multiqc_config,
795773 ch_multiqc_custom_config. collect(). ifEmpty([]),
796774 CUSTOM_DUMPSOFTWAREVERSIONS . out. mqc_yml. collect(),
797775 ch_workflow_summary. collectFile(name : ' workflow_summary_mqc.yaml' ),
776+ ch_methods_description. collectFile(name : ' methods_description_mqc.yaml' ),
777+ ch_multiqc_logo. collect(). ifEmpty([]),
798778 ch_fail_trimming_multiqc. ifEmpty([]),
799779 ch_fail_mapping_multiqc. ifEmpty([]),
800780 ch_fail_strand_multiqc. ifEmpty([]),
@@ -829,7 +809,6 @@ workflow RNASEQ {
829809 )
830810 multiqc_report = MULTIQC . out. report. toList()
831811 }
832- >>>>>>> origin/ dev
833812}
834813
835814/*
@@ -842,14 +821,12 @@ workflow.onComplete {
842821 if (params. email || params. email_on_fail) {
843822 NfcoreTemplate . email(workflow, params, summary_params, projectDir, log, multiqc_report, fail_percent_mapped)
844823 }
845- <<<<<< < HEAD
846- NfcoreTemplate . summary(workflow, params, log)
824+
847825 if (params. hook_url) {
848826 NfcoreTemplate . adaptivecard(workflow, params, summary_params, projectDir, log)
849827 }
850- ====== =
828+
851829 NfcoreTemplate . summary(workflow, params, log, fail_percent_mapped, pass_percent_mapped)
852- >>>>>>> origin/ dev
853830}
854831
855832/*
0 commit comments