From 7249695ccaf66d4424689ec8b3a2a1b13e460c09 Mon Sep 17 00:00:00 2001 From: Pedro Mendes Date: Fri, 17 May 2024 11:42:26 -0400 Subject: [PATCH] updated normality test --- tests/0004_Normal100/run.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/0004_Normal100/run.sh b/tests/0004_Normal100/run.sh index b288287..872f8ac 100755 --- a/tests/0004_Normal100/run.sh +++ b/tests/0004_Normal100/run.sh @@ -33,7 +33,7 @@ fi # get values of Ka grep -Po "Ka_\d+\s+fixed\s+(\d+\.\d+)" BindingKa_100.summary.txt | awk '{ print $3 }' > Ka.csv # test if they look normal -../shapiro-wilk.py Ka.csv +../normality_test.py Ka.csv if [ "$?" = 1 ] ; then printf 'FAIL %s\n' "${test}" let "fail = $fail + 4"