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

fix

parent db1d0e0f
No related branches found
No related tags found
No related merge requests found
...@@ -360,4 +360,3 @@ def test_real_data_multiallelic_refinement(max_epochs=10): ...@@ -360,4 +360,3 @@ def test_real_data_multiallelic_refinement(max_epochs=10):
print(refine_allele, "final motif lysine-1 rate: ", final_motif.loc[1, "K"]) print(refine_allele, "final motif lysine-1 rate: ", final_motif.loc[1, "K"])
assert_greater(final_motif.loc[1, "K"], original_motif.loc[1, "K"]) assert_greater(final_motif.loc[1, "K"], original_motif.loc[1, "K"])
\ No newline at end of file
...@@ -24,7 +24,7 @@ AFFINITY_PREDICTOR = None ...@@ -24,7 +24,7 @@ AFFINITY_PREDICTOR = None
def setup(): def setup():
global AFFINITY_PREDICTOR global AFFINITY_PREDICTOR
startup() startup()
PAN_ALLELE_PREDICTOR_NO_MASS_SPEC = Class1AffinityPredictor.load( AFFINITY_PREDICTOR = Class1AffinityPredictor.load(
get_path("models_class1_pan", "models.no_mass_spec"), get_path("models_class1_pan", "models.no_mass_spec"),
optimization_level=0, optimization_level=0,
max_models=1) max_models=1)
...@@ -32,7 +32,7 @@ def setup(): ...@@ -32,7 +32,7 @@ def setup():
def teardown(): def teardown():
global AFFINITY_PREDICTOR global AFFINITY_PREDICTOR
PAN_ALLELE_PREDICTOR_NO_MASS_SPEC = None AFFINITY_PREDICTOR = None
cleanup() cleanup()
......
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