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

4 lines
135 B
Plaintext

// emits bundles starting with `2` and ending with `4`
channel.of( 1, 2, 3, 4, 5, 1, 2, 3, 4, 5, 1, 2 )
.buffer( 2, 4 )
.view()