Files
ma/nextflow/docs/snippets/grouptuple-by.nf
2026-04-29 23:01:54 +02:00

3 lines
117 B
Plaintext

channel.of( [1, 'A'], [1, 'B'], [2, 'C'], [3, 'B'], [1, 'C'], [2, 'A'], [3, 'D'] )
.groupTuple(by: 1)
.view()