add nextflow d30e48d
This commit is contained in:
3
nextflow/docs/snippets/splitcsv-with-columns.nf
Normal file
3
nextflow/docs/snippets/splitcsv-with-columns.nf
Normal file
@@ -0,0 +1,3 @@
|
||||
channel.of( 'alpha,beta,gamma\n10,20,30\n70,80,90' )
|
||||
.splitCsv( header: ['col1', 'col2', 'col3'], skip: 1 )
|
||||
.view { row -> "${row.col1} - ${row.col2} - ${row.col3}" }
|
||||
Reference in New Issue
Block a user