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

7 lines
125 B
Plaintext

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