19 lines
307 B
Plaintext
19 lines
307 B
Plaintext
set -e
|
|
|
|
#
|
|
# run normal mode
|
|
#
|
|
echo ''
|
|
|
|
NXF_SYNTAX_PARSER=v1 $NXF_RUN | tee stdout
|
|
|
|
[[ `< .nextflow.log grep -c 'Submitted process > hello'` == 1 ]] || false
|
|
|
|
#
|
|
# RESUME mode
|
|
#
|
|
echo ''
|
|
NXF_SYNTAX_PARSER=v2 $NXF_RUN -resume | tee stdout
|
|
|
|
[[ `< .nextflow.log grep -c 'Cached process > hello'` == 1 ]] || false
|