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

Testing

parent 83bea4d9
Branches
Tags
No related merge requests found
...@@ -115,6 +115,16 @@ class TestHHblitsBindings(unittest.TestCase): ...@@ -115,6 +115,16 @@ class TestHHblitsBindings(unittest.TestCase):
'TSKYR') 'TSKYR')
self.hh = hhblits.HHblits(query_seq, self.hhroot) self.hh = hhblits.HHblits(query_seq, self.hhroot)
a3m = self.hh.BuildQueryMSA('testfiles/hhblitsdb/hhblitsdb') 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")) self.assertTrue(filecmp.cmp(a3m, "testfiles/testali.a3m"))
def testA3mToProfileFileName(self): def testA3mToProfileFileName(self):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment