add nextflow d30e48d
This commit is contained in:
18
nextflow/tests-v1/chunk.nf
Normal file
18
nextflow/tests-v1/chunk.nf
Normal file
@@ -0,0 +1,18 @@
|
||||
#!/usr/bin/env nextflow
|
||||
|
||||
params.chunkSize = 1
|
||||
|
||||
process foo {
|
||||
debug true
|
||||
|
||||
input:
|
||||
stdin()
|
||||
|
||||
"cat -"
|
||||
}
|
||||
|
||||
workflow {
|
||||
Channel.from(stdin) \
|
||||
| splitFasta( by: params.chunkSize) \
|
||||
| foo
|
||||
}
|
||||
Reference in New Issue
Block a user