Nextflow Operators 教學筆記
1. 基本範例
nums = Channel.of(1, 2, 3, 4)
square = nums.map { it -> it * it }
square.view()1
4
9
162. 常用 Operators
2.1 view()
view()2.2 map()
map()2.3 mix()
mix()2.4 flatten()
flatten()2.5 collect()
collect()2.6 groupTuple()
groupTuple()2.7 join()
join()2.8 branch()
branch()3. 文字檔案處理
3.1 splitText()
splitText()3.2 splitCsv()
splitCsv()3.3 splitJson()
splitJson()4. 小結
Last updated