add nextflow d30e48d
This commit is contained in:
15
nextflow/validation/test-overwrite.nf
Normal file
15
nextflow/validation/test-overwrite.nf
Normal file
@@ -0,0 +1,15 @@
|
||||
workflow {
|
||||
foo()
|
||||
}
|
||||
|
||||
process foo {
|
||||
container 'quay.io/nextflow/bash'
|
||||
publishDir "gs://rnaseq-nf/scratch/tests", overwrite: true
|
||||
output:
|
||||
path 'hello.txt'
|
||||
|
||||
script:
|
||||
"""
|
||||
touch hello.txt
|
||||
"""
|
||||
}
|
||||
Reference in New Issue
Block a user