We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 41694ce commit 517751dCopy full SHA for 517751d
subworkflows/local/speclib/main.nf
@@ -41,11 +41,11 @@ workflow SPECLIB {
41
// Generate spectrum library for all MSruns in the samplesheet
42
if (params.global_fdr) {
43
EASYPQP_CONVERT.out.psmpkl
44
- .map { meta, psmpkl -> [meta + [id: meta.search_preset ?: 'global'], psmpkl] }
+ .map { meta, psmpkl -> [[id: meta.search_preset ?: 'global'], psmpkl] }
45
.groupTuple()
46
.set { ch_global_psmpkl }
47
EASYPQP_CONVERT.out.peakpkl
48
- .map { meta, peakpkl -> [meta + [id: meta.search_preset ?: 'global'], peakpkl] }
+ .map { meta, peakpkl -> [[id: meta.search_preset ?: 'global'], peakpkl] }
49
50
.set { ch_global_peakpkl }
51
EASYPQP_LIBRARY_GLOBAL(ch_global_psmpkl.join(ch_global_peakpkl))
0 commit comments