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

3 lines
61 B
Plaintext

channel.of( 1..100 )
.randomSample( 10, 234 )
.view()