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

7 lines
139 B
Plaintext

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