Skip to content

Commit 4ab556c

Browse files
committed
Shorter id
1 parent ccee5f4 commit 4ab556c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

workflows/rnaseq.nf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,8 +191,8 @@ workflow RNASEQ {
191191
.reads
192192
.map {
193193
meta, fastq ->
194-
without_technicalrep_number = meta.id - ~/_T\d+/
195-
[ meta + [id: without_technicalrep_number], fastq ]
194+
new_id = meta.id - ~/_T\d+/
195+
[ meta + [id: new_id], fastq ]
196196
}
197197
.groupTuple()
198198
.branch {

0 commit comments

Comments
 (0)