Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file modified SBML/tests/d1_plots_local/amici_d1.pdf
Binary file not shown.
Binary file modified SBML/tests/d1_plots_local/bionetgen_d1.pdf
Binary file not shown.
Binary file modified SBML/tests/d1_plots_local/boolnet_d1.pdf
Binary file not shown.
Binary file modified SBML/tests/d1_plots_local/cbmpy_d1.pdf
Binary file not shown.
Binary file modified SBML/tests/d1_plots_local/cobrapy_d1.pdf
Binary file not shown.
Binary file modified SBML/tests/d1_plots_local/copasi_d1.pdf
Binary file not shown.
Binary file modified SBML/tests/d1_plots_local/gillespy2_d1.pdf
Binary file not shown.
Binary file modified SBML/tests/d1_plots_local/ginsim_d1.pdf
Binary file not shown.
Binary file modified SBML/tests/d1_plots_local/libsbmlsim_d1.pdf
Binary file not shown.
Binary file modified SBML/tests/d1_plots_local/masspy_d1.pdf
Binary file not shown.
Binary file modified SBML/tests/d1_plots_local/pysces_d1.pdf
Binary file not shown.
Binary file modified SBML/tests/d1_plots_local/rbapy_d1.pdf
Binary file not shown.
Binary file modified SBML/tests/d1_plots_local/tellurium_d1.pdf
Binary file not shown.
Binary file modified SBML/tests/d1_plots_remote/amici_d1.pdf
Binary file not shown.
Binary file modified SBML/tests/d1_plots_remote/bionetgen_d1.pdf
Binary file not shown.
Binary file modified SBML/tests/d1_plots_remote/boolnet_d1.pdf
Binary file not shown.
Binary file modified SBML/tests/d1_plots_remote/cbmpy_d1.pdf
Binary file not shown.
Binary file modified SBML/tests/d1_plots_remote/cobrapy_d1.pdf
Binary file not shown.
Binary file modified SBML/tests/d1_plots_remote/copasi_d1.pdf
Binary file not shown.
Binary file modified SBML/tests/d1_plots_remote/gillespy2_d1.pdf
Binary file not shown.
Binary file modified SBML/tests/d1_plots_remote/ginsim_d1.pdf
Binary file not shown.
Binary file modified SBML/tests/d1_plots_remote/libsbmlsim_d1.pdf
Binary file not shown.
Binary file modified SBML/tests/d1_plots_remote/masspy_d1.pdf
Binary file not shown.
Binary file modified SBML/tests/d1_plots_remote/pysces_d1.pdf
Binary file not shown.
Binary file modified SBML/tests/d1_plots_remote/rbapy_d1.pdf
Binary file not shown.
Binary file modified SBML/tests/d1_plots_remote/tellurium_d1.pdf
Binary file not shown.
46 changes: 23 additions & 23 deletions SBML/tests/results_compatibility_biosimulators.md

Large diffs are not rendered by default.

5 changes: 1 addition & 4 deletions SBML/tests/test_biosimulators_local.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@
import utils
import argparse

engines = utils.engines
types_dict = utils.types_dict

# Save the current working directory
cwd = os.getcwd()
print('Current working directory:', cwd)
Expand Down Expand Up @@ -44,5 +41,5 @@
results_local = utils.run_biosimulators_locally(sedml_file_name=sedml_file_name,
sbml_file_name=sbml_file_name,
d1_plots_local_dir=d1_plots_local_dir,
engines=engines, test_folder=test_folder)
test_folder=test_folder)

5 changes: 1 addition & 4 deletions SBML/tests/test_biosimulators_remote.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@
import utils
import argparse

engines = utils.engines
types_dict = utils.types_dict

# Save the current working directory
cwd = os.getcwd()
print('Current working directory:', cwd)
Expand Down Expand Up @@ -44,5 +41,5 @@
results_remote = utils.run_biosimulators_remotely(sedml_file_name=sedml_file_name,
sbml_file_name=sbml_file_name,
d1_plots_remote_dir=d1_plots_remote_dir,
engines=engines, test_folder=test_folder)
test_folder=test_folder)

6 changes: 3 additions & 3 deletions SBML/tests/test_compatibility_biosimulators.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@
import utils
import argparse

engines = utils.engines
types_dict = utils.types_dict
engines = utils.ENGINES
types_dict = utils.TYPES

# Save the current working directory
cwd = os.getcwd()
Expand Down Expand Up @@ -46,4 +46,4 @@
sbml_file_name,
d1_plots_remote_dir,
d1_plots_local_dir,
engines=engines, test_folder=test_folder)
test_folder=test_folder)
3 changes: 1 addition & 2 deletions SBML/tests/test_creation_combined_results_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
import utils
import argparse

engines = utils.engines
engines = utils.ENGINES

# Save the current working directory
cwd = os.getcwd()
Expand Down Expand Up @@ -40,7 +40,6 @@
sbml_file_name,
d1_plots_local_dir,
d1_plots_remote_dir,
engines=engines,
test_folder='tests')

print(results_table)
Expand Down
169 changes: 97 additions & 72 deletions utils/__init__.py

Large diffs are not rendered by default.