Nextflow Channels 教學
1. Channel 類型
Queue channel
ch = Channel.of(1, 2, 3)
ch.view()1
2
3Value channel
2. Channel factories
value()
value()of()
of()fromList()
fromList()fromPath()
fromPath()fromFilePairs()
fromFilePairs()fromSRA()
fromSRA()3. 總結
Last updated