From 652916f7858d8216d8ed4e7bf2984f330045316f Mon Sep 17 00:00:00 2001 From: Hyunbin Kim Date: Fri, 7 Oct 2022 17:54:44 +0900 Subject: [PATCH] Fixed RMSD check in build-static.yml (-a for decomp AF) --- .github/workflows/build-static.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/build-static.yml b/.github/workflows/build-static.yml index 5bd57b8..0211555 100644 --- a/.github/workflows/build-static.yml +++ b/.github/workflows/build-static.yml @@ -39,7 +39,7 @@ jobs: ./foldcomp compress ../test/test.pdb ./foldcomp decompress ../test/test.fcz ./foldcomp compress ../test/test.cif.gz - ./foldcomp decompress ../test/test.cif.fcz + ./foldcomp decompress -a ../test/test.cif.fcz RMSD1=$(./foldcomp rmsd ../test/test.pdb ../test/test_fcz.pdb | cut -f6) awk -v check=$RMSD1 -v target=0.102262 'BEGIN { diff = check - target; if (diff < 0) diff = -diff; if (diff > 0.001) { print check"!="target; exit 1 } }' RMSD2=$(./foldcomp rmsd ../test/test.cif.gz ../test/test.cif_fcz.pdb | cut -f6)