Skip to content
Snippets Groups Projects
Commit f4a4e273 authored by Studer Gabriel's avatar Studer Gabriel
Browse files

simple unit test for lga binding

parent 8ab1af86
No related branches found
No related tags found
No related merge requests found
......@@ -8,6 +8,7 @@ set(OST_BINDINGS_UNIT_TESTS
test_cadscore.py
test_tmtools.py
test_ialign.py
test_lga.py
)
ost_unittest(MODULE bindings
......
import unittest
from ost import *
from ost import settings
from ost.bindings import lga
from ost import testutils
class TestLGABindings(unittest.TestCase):
def setUp(self):
self.protein = io.LoadEntity("testfiles/testprotein.pdb")
self.chain_a = self.protein.Select("cname=A")
def testLGA(self):
try:
lga_path = settings.Locate('lga')
except:
print("Could not find lga executable: ignoring unit tests")
return
lga_result = lga.GDT(self.chain_a, self.chain_a,
reference_length=len(self.chain_a.residues))
expected_transform = geom.Mat4(1,0,0,0, 0,1,0,0, 0,0,1,0, 0,0,0,1)
self.assertEqual(lga_result.gdt_ts, 100.0)
self.assertEqual(lga_result.gdt_ha, 100.0)
self.assertEqual(lga_result.GetTransform(), expected_transform)
if __name__ == "__main__":
testutils.RunTests()
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment