add nextflow d30e48d
This commit is contained in:
13
nextflow/docs/snippets/process-out-env.nf
Normal file
13
nextflow/docs/snippets/process-out-env.nf
Normal file
@@ -0,0 +1,13 @@
|
||||
process seq {
|
||||
output:
|
||||
env 'RESULT'
|
||||
|
||||
script:
|
||||
'''
|
||||
RESULT=$(seq 5)
|
||||
'''
|
||||
}
|
||||
|
||||
workflow {
|
||||
seq | view
|
||||
}
|
||||
Reference in New Issue
Block a user