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

3 lines
70 B
Plaintext

channel.of( 1, 2, 3, 1, 2, 3 )
.buffer { v -> v == 2 }
.view()