Files
ma/nextflow/docs/snippets/transpose-2-with-remainder.nf
2026-04-29 23:01:54 +02:00

7 lines
154 B
Plaintext

channel.of(
[1, [1], ['A']],
[2, [1, 2], ['B', 'C']],
[3, [1, 2, 3], ['D', 'E']]
)
.transpose(remainder: true)
.view()