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

3 lines
86 B
Plaintext

channel.of( 1, 1, 2, 2, 2, 3, 1, 1, 2, 4, 6 )
.distinct { v -> v % 2 }
.view()