Files
ma/nextflow/tests/checks/output-links.nf/.checks
2026-04-29 23:01:54 +02:00

19 lines
305 B
Plaintext

set -e
#
# run normal mode
#
$NXF_RUN -process.scratch true | tee stdout
[[ `grep INFO .nextflow.log | grep -c 'Submitted process'` == 1 ]] || false
#
# run resume mode
#
$NXF_RUN -resume -process.scratch true | tee stdout
[[ `grep INFO .nextflow.log | grep -c 'Cached process'` == 1 ]] || false