Skip to content
Snippets Groups Projects
Commit 4e68da43 authored by Tim O'Donnell's avatar Tim O'Donnell
Browse files

Fix predict test

parent 0f9394e2
No related branches found
No related tags found
No related merge requests found
......@@ -32,7 +32,7 @@ def test_csv():
for delete in deletes:
os.unlink(delete)
assert_equal(result.shape, (3, 6))
assert_equal(result.shape, (3, 7))
def test_no_csv():
......@@ -55,7 +55,8 @@ def test_no_csv():
for delete in deletes:
os.unlink(delete)
assert_equal(result.shape, (6, 5))
print(result)
assert_equal(result.shape, (6, 6))
sub_result1 = result.ix[result.peptide == "SIINFEKL"].set_index("allele")
assert (
sub_result1.ix["H-2-Kb"].mhcflurry1_prediction <
......
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