nextflow.preview.topic = true
process FOO {
storeDir 'output'
output:
path "output.txt"
tuple val(task.process), val('grep'), eval('grep --version | head -n 1'), topic: versions
script:
"""
touch output.txt
"""
}
workflow {
FOO()
}
WARN: [FOO] StoreDir can only be used when using 'file' outputs
ERROR ~ No such file or directory: /home/cormac/sandbox/output/.command.env
Bug report
Expected behavior and actual behavior
Expected
Actual
Steps to reproduce the problem
Program output
Environment