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

4 lines
158 B
Plaintext

source = channel.of( [1, 'alpha'], [2, 'beta'] )
target = channel.of( [1, 'a'], [1, 'b'], [2, 'a'], [2, 'b'] )
source .cross(target) { v -> v[1][0] } .view()