add nextflow d30e48d
This commit is contained in:
22
nextflow/tests-v1/buffer.nf
Normal file
22
nextflow/tests-v1/buffer.nf
Normal file
@@ -0,0 +1,22 @@
|
||||
#!/usr/bin/env nextflow
|
||||
|
||||
process blastThemAll {
|
||||
debug true
|
||||
|
||||
input:
|
||||
path x
|
||||
|
||||
"""
|
||||
echo $x
|
||||
"""
|
||||
}
|
||||
|
||||
|
||||
workflow {
|
||||
Channel
|
||||
.fromPath("$baseDir/data/p?.fa") |
|
||||
toSortedList |
|
||||
flatten |
|
||||
buffer(size:2, remainder: true) |
|
||||
blastThemAll
|
||||
}
|
||||
Reference in New Issue
Block a user