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

4 lines
159 B
Plaintext

source = channel.of( [1, 'alpha'], [2, 'beta'] )
target = channel.of( [1, 'x'], [1, 'y'], [1, 'z'], [2, 'p'], [2, 'q'], [2, 't'] )
source.cross(target).view()