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

Return the titin epitope tests back to the original more stringent threshold...

Return the titin epitope tests back to the original more stringent threshold of 500nm (instead of 700nm)
parent f8b40ccb
No related merge requests found
......@@ -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():
......@@ -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():
......@@ -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__":
......
......@@ -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% 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