Files
ma/nextflow/validation/test-overwrite.nf
2026-04-29 23:01:54 +02:00

16 lines
205 B
Plaintext

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
"""
}