add nextflow d30e48d

This commit is contained in:
2026-04-29 23:01:54 +02:00
parent d0b12d668d
commit 97cc9058d3
2840 changed files with 730250 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
set +e
$NXF_RUN | tee stdout
set -e
if [[ "$NXF_SYNTAX_PARSER" == "v2" ]] ; then
# strict parser should give compile-time error
< stdout grep "error-message.nf:19:1: \`printx\` is not defined"
else
# legacy parser should give runtime error
< stdout grep "Check script '.*error-message.nf' at line: 19"
fi