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

3 lines
46 B
Plaintext

channel.of( 1..10 )
.take( 3 )
.view()