Skip to content
Snippets Groups Projects
Commit 35bbadb5 authored by Bienchen's avatar Bienchen
Browse files

Testing

parent 83bea4d9
No related branches found
No related tags found
No related merge requests found
......@@ -115,6 +115,16 @@ class TestHHblitsBindings(unittest.TestCase):
'TSKYR')
self.hh = hhblits.HHblits(query_seq, self.hhroot)
a3m = self.hh.BuildQueryMSA('testfiles/hhblitsdb/hhblitsdb')
print "A3M"
with open(a3m) as fh:
for line in fh:
line = line.split()
print line
print "TESTFILE"
with open("testfiles/testali.a3m") as fh:
for line in fh:
line = line.split()
print line
self.assertTrue(filecmp.cmp(a3m, "testfiles/testali.a3m"))
def testA3mToProfileFileName(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment