Skip to content

Commit d6e3f37

Browse files
authored
Merge pull request #203 from bigbio/patch-pmultiqc-0.0.12
Update main.nf
2 parents c65c405 + b043721 commit d6e3f37

File tree

5 files changed

+12
-6
lines changed

5 files changed

+12
-6
lines changed

modules/local/pmultiqc/main.nf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
process PMULTIQC {
22
label 'process_high'
33

4-
conda (params.enable_conda ? "conda-forge::pandas_schema conda-forge::lzstring bioconda::pmultiqc=0.0.11" : null)
4+
conda (params.enable_conda ? "conda-forge::pandas_schema conda-forge::lzstring bioconda::pmultiqc=0.0.12" : null)
55
if (workflow.containerEngine == 'singularity' && !params.singularity_pull_docker_container) {
6-
container "https://depot.galaxyproject.org/singularity/pmultiqc:0.0.11--pyhdfd78af_0"
6+
container "https://depot.galaxyproject.org/singularity/pmultiqc:0.0.12--pyhdfd78af_0"
77
} else {
8-
container "quay.io/biocontainers/pmultiqc:0.0.11--pyhdfd78af_0"
8+
container "quay.io/biocontainers/pmultiqc:0.0.12--pyhdfd78af_0"
99
}
1010

1111
input:

workflows/dia.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ workflow DIA {
100100
emit:
101101
versions = ch_software_versions
102102
diann_report = DIANNSUMMARY.out.main_report
103-
msstats_csv = DIANNCONVERT.out.out_msstats
103+
msstats_in = DIANNCONVERT.out.out_msstats
104104
out_triqler = DIANNCONVERT.out.out_triqler
105105
msstats_out = ch_msstats_out
106106

workflows/lfq.nf

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,7 @@ workflow LFQ {
7575
ch_pmultiqc_ids = ch_pmultiqc_ids
7676
final_result = PROTEOMICSLFQ.out.out_mztab
7777
versions = ch_software_versions
78+
msstats_in = PROTEOMICSLFQ.out.out_msstats
7879
msstats_out = ch_msstats_out
7980
}
8081

workflows/quantms.nf

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -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()

workflows/tmt.nf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ workflow TMT {
8383
emit:
8484
ch_pmultiqc_ids = ch_pmultiqc_ids
8585
final_result = PROTEINQUANT.out.out_mztab
86-
msstats_input = PROTEINQUANT.out.msstats_csv
86+
msstats_in = PROTEINQUANT.out.msstats_csv
8787
msstats_out = ch_msstats_out
8888
versions = ch_software_versions
8989
}

0 commit comments

Comments
 (0)