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

3 lines
147 B
Plaintext

channel.of( 'alpha,beta,gamma\n10,20,30\n70,80,90' )
.splitCsv( header: true )
.view { row -> "${row.alpha} - ${row.beta} - ${row.gamma}" }