Skip to content

Commit ae9afef

Browse files
committed
still debugging issues with test on Ubuntu ARM64
1 parent abd4fbc commit ae9afef

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

tests/test_systemprepare.py

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -204,6 +204,14 @@ def _test_nonstandard_residues(tmp_path, files):
204204
)
205205
pmol.fileloc.append(os.path.join(tmp_path, "prepared.pdb"))
206206
pmol.write(pmol.fileloc[0])
207+
if inf == "2QRV.pdb":
208+
ref = Molecule(os.path.join(test_home, f"{outf}.pdb"))
209+
print(
210+
"DEBUG MAX DIFF",
211+
np.max(np.abs(pmol.coords - ref.coords)),
212+
)
213+
print("IDX", np.where(np.abs(pmol.coords - ref.coords) > 5e-3))
214+
207215
_compare_results(
208216
os.path.join(test_home, f"{outf}.pdb"),
209217
os.path.join(test_home, f"{outf}.csv"),

0 commit comments

Comments
 (0)