@@ -53,8 +53,7 @@ nextflow_process {
5353 bam(process.out.bam[0][1]).getReadsMD5(),
5454 file(process.out.report[0][1]).readLines().contains("Number of alignments with a unique best hit from the different alignments:\t5009"),
5555 process.out.unmapped,
56- process.out.versions,
57- path(process.out.versions[0]).yaml
56+ process.out.findAll { key, val -> key.startsWith('versions') },
5857 ).match()
5958 }
6059 )
@@ -92,8 +91,7 @@ nextflow_process {
9291 bam(process.out.bam[0][1]).getReadsMD5(),
9392 file(process.out.report[0][1]).readLines().contains("Number of alignments with a unique best hit from the different alignments:\t5009"),
9493 process.out.unmapped,
95- process.out.versions,
96- path(process.out.versions[0]).yaml
94+ process.out.findAll { key, val -> key.startsWith('versions') },
9795 ).match()
9896 }
9997 )
@@ -128,8 +126,7 @@ nextflow_process {
128126 bam(process.out.bam[0][1]).getReadsMD5(),
129127 file(process.out.report[0][1]).readLines().contains("Number of alignments with a unique best hit from the different alignments:\t5009"),
130128 process.out.unmapped,
131- process.out.versions,
132- path(process.out.versions[0]).yaml
129+ process.out.findAll { key, val -> key.startsWith('versions') },
133130 ).match()
134131 }
135132 )
@@ -167,8 +164,7 @@ nextflow_process {
167164 bam(process.out.bam[0][1]).getReadsMD5(),
168165 file(process.out.report[0][1]).readLines().contains("Number of alignments with a unique best hit from the different alignments:\t5009"),
169166 process.out.unmapped,
170- process.out.versions,
171- path(process.out.versions[0]).yaml
167+ process.out.findAll { key, val -> key.startsWith('versions') },
172168 ).match()
173169 }
174170 )
@@ -203,8 +199,7 @@ nextflow_process {
203199 bam(process.out.bam[0][1]).getReadsMD5(),
204200 file(process.out.report[0][1]).readLines().contains("Number of alignments with a unique best hit from the different alignments:\t5047"),
205201 process.out.unmapped,
206- process.out.versions,
207- path(process.out.versions[0]).yaml
202+ process.out.findAll { key, val -> key.startsWith('versions') },
208203 ).match()
209204 }
210205 )
0 commit comments