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

6 lines
106 B
Plaintext

numbers = channel.of(1, 2, 3)
words = channel.of('hello', 'ciao')
numbers
.combine(words)
.view()