Skip to content

Commit

Permalink
Return the titin epitope tests back to the original more stringent th…
Browse files Browse the repository at this point in the history
…reshold of 500nm (instead of 700nm)
  • Loading branch information
timodonnell committed Sep 16, 2016
1 parent f8b40cc commit 9ff964f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions test/test_known_class1_epitopes.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def test_A1_Titin_epitope():
print(ic50s)
assert len(ic50s) == 1
ic50 = ic50s[0]
assert ic50 <= 700, ic50
assert ic50 <= 500, ic50


def test_A1_MAGE_epitope():
Expand All @@ -38,7 +38,7 @@ def test_A1_MAGE_epitope():
print(ic50s)
assert len(ic50s) == 1
ic50 = ic50s[0]
assert ic50 <= 700, ic50
assert ic50 <= 500, ic50


def test_A2_HIV_epitope():
Expand All @@ -49,7 +49,7 @@ def test_A2_HIV_epitope():
print(ic50s)
assert len(ic50s) == 1
ic50 = ic50s[0]
assert ic50 <= 700, ic50
assert ic50 <= 500, ic50


if __name__ == "__main__":
Expand Down
2 changes: 1 addition & 1 deletion test/test_predict.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ def test_predict_A1_Titin_epitope():
assert len(result_df) == 1
row = result_df.ix[0]
ic50 = row["Prediction"]
assert ic50 <= 700
assert ic50 <= 500

0 comments on commit 9ff964f

Please sign in to comment.