Skip to content

Commit

Permalink
..
Browse files Browse the repository at this point in the history
  • Loading branch information
dweindl committed Jul 2, 2024
1 parent c74bab4 commit 4cd4f23
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion petabtests/cases/v1.0.0/sbml/0005/0005.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
offset_A = 0;
end
"""
model_file = sbml_file = Path(__file__).parent / "_model.xml"
model_file = Path(__file__).parent / "_model.xml"
model_file.write_text(antimony_to_sbml_str(ant_model))

condition_df = pd.DataFrame(
Expand Down
2 changes: 1 addition & 1 deletion petabtests/cases/v1.0.0/sbml/0011/0011.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
k2 = 0;
end
"""
model_file = sbml_file = Path(__file__).parent / "_model.xml"
model_file = Path(__file__).parent / "_model.xml"
model_file.write_text(antimony_to_sbml_str(ant_model))

condition_df = pd.DataFrame(data={CONDITION_ID: ["c0"], "B": [2]}).set_index(
Expand Down
2 changes: 1 addition & 1 deletion petabtests/cases/v1.0.0/sbml/0019/0019.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
k2 = 0;
end
"""
model_file = sbml_file = Path(__file__).parent / "_model.xml"
model_file = Path(__file__).parent / "_model.xml"
model_file.write_text(antimony_to_sbml_str(ant_model))

condition_df = pd.DataFrame(
Expand Down
2 changes: 1 addition & 1 deletion petabtests/cases/v2.0.0/sbml/0005/0005.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
k2 = 0;
end
"""
model_file = sbml_file = Path(__file__).parent / "_model.xml"
model_file = Path(__file__).parent / "_model.xml"
model_file.write_text(antimony_to_sbml_str(ant_model))

condition_df = pd.DataFrame(
Expand Down
2 changes: 1 addition & 1 deletion petabtests/cases/v2.0.0/sbml/0011/0011.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
k2 = 0;
end
"""
model_file = sbml_file = Path(__file__).parent / "_model.xml"
model_file = Path(__file__).parent / "_model.xml"
model_file.write_text(antimony_to_sbml_str(ant_model))

condition_df = pd.DataFrame(data={CONDITION_ID: ["c0"], "B": [2]}).set_index(
Expand Down
2 changes: 1 addition & 1 deletion petabtests/cases/v2.0.0/sbml/0013/0013.py
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
k2 = 0;
end
"""
model_file = sbml_file = Path(__file__).parent / "_model.xml"
model_file = Path(__file__).parent / "_model.xml"
model_file.write_text(antimony_to_sbml_str(ant_model))

condition_df = pd.DataFrame(
Expand Down
2 changes: 1 addition & 1 deletion petabtests/cases/v2.0.0/sbml/0020/0020.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
k2 = 0;
end
"""
model_file = sbml_file = Path(__file__).parent / "_model.xml"
model_file = Path(__file__).parent / "_model.xml"
model_file.write_text(antimony_to_sbml_str(ant_model))

condition_df = pd.DataFrame(
Expand Down

0 comments on commit 4cd4f23

Please sign in to comment.