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

3 lines
107 B
Plaintext

channel.of( '10,20,30\n70,80,90' )
.splitCsv()
.view { row -> "${row[0]} - ${row[1]} - ${row[2]}" }