From afa02ff3fcf08faf214d311f0f5b1f7fb8123d5b Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Mon, 28 Oct 2024 09:52:14 +0000 Subject: [PATCH 01/24] remove engines parameter from process_cases and make changes tht allow fetching all results links from remote runs --- ..._test_suite_compatibility_biosimulators.py | 2 +- utils/__init__.py | 21 ++++++++----------- 2 files changed, 10 insertions(+), 13 deletions(-) diff --git a/test_suite/test_test_suite_compatibility_biosimulators.py b/test_suite/test_test_suite_compatibility_biosimulators.py index 1a1a590a..a7b790e7 100644 --- a/test_suite/test_test_suite_compatibility_biosimulators.py +++ b/test_suite/test_test_suite_compatibility_biosimulators.py @@ -134,7 +134,7 @@ def process_cases(args): os.path.basename(sbml_file_path), os.path.join(test_folder,'d1_plots_remote'), os.path.join(test_folder,'d1_plots_local'), - engines=engines, test_folder=test_folder) + test_folder=test_folder) if __name__ == "__main__": diff --git a/utils/__init__.py b/utils/__init__.py index 5a232bcd..ad7cb82b 100644 --- a/utils/__init__.py +++ b/utils/__init__.py @@ -526,13 +526,11 @@ def run_biosimulators_remote(engine,sedml_filepath,sbml_filepath): "email": "", } - res = biosimulations.submit_simulation_archive(\ + results_urls = biosimulations.submit_simulation_archive(\ archive_file=omex_file_name,\ sim_dict=sim_dict) - - download_url = res["download"] - - return download_url + + return results_urls def get_remote_results(engine, download_link, output_dir='remote_results'): @@ -1094,7 +1092,7 @@ def create_results_table(results, sbml_filepath, sedml_filepath, output_dir): # Create a table of the results results_table = pd.DataFrame.from_dict(results).T # if list is three elements - if results_table.shape[1] == 3: + if results_table.shape[1] > 2: results_table.columns = [PASS_FAIL, ERROR, TYPE] elif results_table.shape[1] == 2: results_table.columns = [PASS_FAIL, ERROR] @@ -1154,16 +1152,15 @@ def run_biosimulators_remotely(sedml_file_name, remote_output_dir = 'remote_results' remote_output_dir = os.path.join(test_folder, remote_output_dir) - download_links_dict = dict() + results_urls = dict() for e in ENGINES.keys(): - download_link = run_biosimulators_remote(e, sedml_file_name, sbml_file_name) - download_links_dict[e] = download_link + results_urls[e] = run_biosimulators_remote(e, sedml_file_name, sbml_file_name) extract_dir_dict = dict() results_remote = dict() - for e, link in download_links_dict.items(): + for e, link in results_urls.items(): try: - extract_dir = get_remote_results(e, link, remote_output_dir) + extract_dir = get_remote_results(e, link["download"], remote_output_dir) except HTTPError as emessage: results_remote[e] = ["FAIL", str(emessage), type(emessage).__name__] continue @@ -1190,7 +1187,7 @@ def run_biosimulators_remotely(sedml_file_name, exception_type = exception['type'] else: status = None - results_remote[e] = [status, error_message, exception_type] + results_remote[e] = [status, error_message, exception_type, results_urls] file_paths = find_files(remote_output_dir, '.pdf') move_d1_files(file_paths, d1_plots_remote_dir) From a6993639e4800f1957ed23c04a92d2563c4ccdfd Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Mon, 28 Oct 2024 16:38:41 +0000 Subject: [PATCH 02/24] add results_[local/remote] JSONs for easy testing and improving of results_table creation --- .../results_compatibility_biosimulators.md | 46 ++--- SBML/tests/results_local.json | 86 ++++++++ SBML/tests/results_local.md | 23 +++ SBML/tests/results_remote.json | 191 ++++++++++++++++++ SBML/tests/results_remote.md | 23 +++ SBML/tests/test_biosimulators_local.py | 5 + SBML/tests/test_biosimulators_remote.py | 5 + .../test_creation_combined_results_table.py | 16 +- utils/__init__.py | 61 +++--- 9 files changed, 401 insertions(+), 55 deletions(-) create mode 100644 SBML/tests/results_local.json create mode 100644 SBML/tests/results_local.md create mode 100644 SBML/tests/results_remote.json create mode 100644 SBML/tests/results_remote.md diff --git a/SBML/tests/results_compatibility_biosimulators.md b/SBML/tests/results_compatibility_biosimulators.md index 1cf019a0..1dca62c0 100644 --- a/SBML/tests/results_compatibility_biosimulators.md +++ b/SBML/tests/results_compatibility_biosimulators.md @@ -1,23 +1,23 @@ -| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | Error (R) | Error (L) | Type (R) | d1 (R) | d1 (L) | -|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------|:------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
| ✅ PASS | ✅ PASS | | | | plot | plot | -| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
| ⚠ XFAIL | ⚠ XFAIL |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | -| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
| ⚠ XFAIL | ⚠ XFAIL |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | -| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
| ⚠ XFAIL | ⚠ XFAIL |
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1```
|
MNFEModuleNotFoundError
| | | -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
| ❌ FAIL | ❌ FAIL |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
| ❌ FAIL | ❌ FAIL |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| ✅ PASS | ✅ PASS | | | | plot | plot | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| ✅ PASS | ✅ PASS | | | | plot | plot | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
| ⚠ XFAIL | ⚠ XFAIL |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| ✅ PASS | ✅ PASS | | | | plot | plot | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
| ❌ FAIL | ❌ FAIL |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
| ⚠ XFAIL | ⚠ XFAIL |
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1```
|
MNFEModuleNotFoundError
| | | -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
| ⚠ XFAIL | ⚠ XFAIL |
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1```
|
MNFEModuleNotFoundError
| | | -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
| ⚠ XFAIL | ⚠ XFAIL |
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1```
|
MNFEModuleNotFoundError
| | | -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
| ⚠ XFAIL | ⚠ XFAIL |
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1```
|
MNFEModuleNotFoundError
| | | -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
| ❌ FAIL | ❌ FAIL |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Model at /tmp/tmp1bq_quiv/./LEMS_NML2_Ex9_FN.sbml could not be imported:

File /tmp/tmp1bq_quiv/./LEMS_NML2_Ex9_FN.sbml.xml does not exist
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
| ⚠ XFAIL | ⚠ XFAIL |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
| ⚠ XFAIL | ⚠ XFAIL |
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1```
|
MNFEModuleNotFoundError
| | | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| ✅ PASS | ✅ PASS | | | | plot | plot | -| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
| | ❌ FAIL | |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1```
| | | | -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
| ⚠ XFAIL | ⚠ XFAIL |
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1```
|
MNFEModuleNotFoundError
| | | \ No newline at end of file +| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | Error (R) | Error (L) | Type (R) | d1 (R) | d1 (L) | +|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------| +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
|
✅ PASSview
download
logs
| | | | | plot | plot | +| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
⚠ XFAILview
download
logs
| |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | +| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
⚠ XFAILview
download
logs
| |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | +| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|
⚠ XFAILview
download
logs
| |
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1```
|
MNFEModuleNotFoundError
| | | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|
❌ FAILview
download
logs
| |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|
❌ FAILview
download
logs
| |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
|
✅ PASSview
download
logs
| | | | | plot | plot | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
|
✅ PASSview
download
logs
| | | | | plot | plot | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
⚠ XFAILview
download
logs
| |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
|
✅ PASSview
download
logs
| | | | | plot | plot | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|
❌ FAILview
download
logs
| |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|
⚠ XFAILview
download
logs
| |
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1```
|
MNFEModuleNotFoundError
| | | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
⚠ XFAILview
download
logs
| |
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1```
|
MNFEModuleNotFoundError
| | | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
⚠ XFAILview
download
logs
| |
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1```
|
MNFEModuleNotFoundError
| | | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
⚠ XFAILview
download
logs
| |
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1```
|
MNFEModuleNotFoundError
| | | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|
❌ FAILview
download
logs
| |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
⚠ XFAILview
download
logs
| |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|
⚠ XFAILview
download
logs
| |
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1```
|
MNFEModuleNotFoundError
| | | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
|
✅ PASSview
download
logs
| | | | | plot | plot | +| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
Noneview
download
logs
| | |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1```
| | | | +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
⚠ XFAILview
download
logs
| |
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1```
|
MNFEModuleNotFoundError
| | | \ No newline at end of file diff --git a/SBML/tests/results_local.json b/SBML/tests/results_local.json new file mode 100644 index 00000000..215ebce5 --- /dev/null +++ b/SBML/tests/results_local.json @@ -0,0 +1,86 @@ +{ + "amici": { + "status": "pass", + "error_message": "" + }, + "brian2": { + "status": "FAIL", + "error_message": "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1```" + }, + "bionetgen": { + "status": "FAIL", + "error_message": "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1```" + }, + "boolnet": { + "status": "FAIL", + "error_message": "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1```" + }, + "cbmpy": { + "status": "FAIL", + "error_message": "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1```" + }, + "cobrapy": { + "status": "FAIL", + "error_message": "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1```" + }, + "copasi": { + "status": "pass", + "error_message": "" + }, + "gillespy2": { + "status": "pass", + "error_message": "" + }, + "ginsim": { + "status": "FAIL", + "error_message": "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1```" + }, + "libsbmlsim": { + "status": "pass", + "error_message": "" + }, + "masspy": { + "status": "FAIL", + "error_message": "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1```" + }, + "netpyne": { + "status": "FAIL", + "error_message": "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1```" + }, + "neuron": { + "status": "FAIL", + "error_message": "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1```" + }, + "opencor": { + "status": "FAIL", + "error_message": "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1```" + }, + "pyneuroml": { + "status": "FAIL", + "error_message": "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1```" + }, + "pysces": { + "status": "FAIL", + "error_message": "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1```" + }, + "rbapy": { + "status": "FAIL", + "error_message": "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1```" + }, + "smoldyn": { + "status": "FAIL", + "error_message": "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1```" + }, + "tellurium": { + "status": "pass", + "error_message": "" + }, + "vcell": { + "status": "FAIL", + "error_message": "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1```" + }, + "xpp": { + "status": "FAIL", + "error_message": "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1```" + } +} \ No newline at end of file diff --git a/SBML/tests/results_local.md b/SBML/tests/results_local.md new file mode 100644 index 00000000..af20a392 --- /dev/null +++ b/SBML/tests/results_local.md @@ -0,0 +1,23 @@ +| | Engine | pass / FAIL | Error | combi | d1 | Compatibility | +|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:--------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------|:----------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
| | | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
| +| 1 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
| |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1```
| | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
| +| 2 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
| |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1```
| | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
| +| 3 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
| |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1```
| | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
| +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
| |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1```
| | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
| +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
| |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1```
| | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
| +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
| | | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
| | | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
| |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1```
| | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
| +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
| | | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
| |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1```
| | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
| +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1```
| | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
| +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1```
| | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
| +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
| |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1```
| | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
| +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1```
| | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
| +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
| |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1```
| | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
| +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
| |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1```
| | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
| +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
| |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1```
| | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
| +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
| | | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| +| 19 |
vcellhttps://github.com/virtualcell/vcell
| |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1```
| | |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
| +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
| |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1```
| | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
| \ No newline at end of file diff --git a/SBML/tests/results_remote.json b/SBML/tests/results_remote.json new file mode 100644 index 00000000..46d63e11 --- /dev/null +++ b/SBML/tests/results_remote.json @@ -0,0 +1,191 @@ +{ + "amici": { + "response": 201, + "view": "https://api.biosimulations.org/runs/671f7f46f9c43d155d41845a", + "download": "https://api.biosimulations.org/results/671f7f46f9c43d155d41845a/download", + "logs": "https://api.biosimulations.org/logs/671f7f46f9c43d155d41845a?includeOutput=true", + "status": "pass", + "error_message": "", + "exception_type": "" + }, + "brian2": { + "response": 201, + "view": "https://api.biosimulations.org/runs/671f7f48f9c43d155d41845d", + "download": "https://api.biosimulations.org/results/671f7f48f9c43d155d41845d/download", + "logs": "https://api.biosimulations.org/logs/671f7f48f9c43d155d41845d?includeOutput=true", + "status": "FAIL", + "error_message": "No module named 'libsbml'", + "exception_type": "ModuleNotFoundError" + }, + "bionetgen": { + "response": 201, + "view": "https://api.biosimulations.org/runs/671f7f4a953bc3bf105eaace", + "download": "https://api.biosimulations.org/results/671f7f4a953bc3bf105eaace/download", + "logs": "https://api.biosimulations.org/logs/671f7f4a953bc3bf105eaace?includeOutput=true", + "status": "FAIL", + "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).", + "exception_type": "CombineArchiveExecutionError" + }, + "boolnet": { + "response": 201, + "view": "https://api.biosimulations.org/runs/671f7f4db741155bbe286d4d", + "download": "https://api.biosimulations.org/results/671f7f4db741155bbe286d4d/download", + "logs": "https://api.biosimulations.org/logs/671f7f4db741155bbe286d4d?includeOutput=true", + "status": "FAIL", + "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).", + "exception_type": "CombineArchiveExecutionError" + }, + "cbmpy": { + "response": 201, + "view": "https://api.biosimulations.org/runs/671f7f4f953bc3bf105eaad2", + "download": "https://api.biosimulations.org/results/671f7f4f953bc3bf105eaad2/download", + "logs": "https://api.biosimulations.org/logs/671f7f4f953bc3bf105eaad2?includeOutput=true", + "status": "FAIL", + "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", + "exception_type": "CombineArchiveExecutionError" + }, + "cobrapy": { + "response": 201, + "view": "https://api.biosimulations.org/runs/671f7f51f9c43d155d418465", + "download": "https://api.biosimulations.org/results/671f7f51f9c43d155d418465/download", + "logs": "https://api.biosimulations.org/logs/671f7f51f9c43d155d418465?includeOutput=true", + "status": "FAIL", + "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", + "exception_type": "CombineArchiveExecutionError" + }, + "copasi": { + "response": 201, + "view": "https://api.biosimulations.org/runs/671f7f53b741155bbe286d56", + "download": "https://api.biosimulations.org/results/671f7f53b741155bbe286d56/download", + "logs": "https://api.biosimulations.org/logs/671f7f53b741155bbe286d56?includeOutput=true", + "status": "pass", + "error_message": "", + "exception_type": "" + }, + "gillespy2": { + "response": 201, + "view": "https://api.biosimulations.org/runs/671f7f56b741155bbe286d59", + "download": "https://api.biosimulations.org/results/671f7f56b741155bbe286d59/download", + "logs": "https://api.biosimulations.org/logs/671f7f56b741155bbe286d59?includeOutput=true", + "status": "pass", + "error_message": "", + "exception_type": "" + }, + "ginsim": { + "response": 201, + "view": "https://api.biosimulations.org/runs/671f7f59b741155bbe286d5c", + "download": "https://api.biosimulations.org/results/671f7f59b741155bbe286d5c/download", + "logs": "https://api.biosimulations.org/logs/671f7f59b741155bbe286d5c?includeOutput=true", + "status": "FAIL", + "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000", + "exception_type": "CombineArchiveExecutionError" + }, + "libsbmlsim": { + "response": 201, + "view": "https://api.biosimulations.org/runs/671f7f5b953bc3bf105eaaeb", + "download": "https://api.biosimulations.org/results/671f7f5b953bc3bf105eaaeb/download", + "logs": "https://api.biosimulations.org/logs/671f7f5b953bc3bf105eaaeb?includeOutput=true", + "status": "pass", + "error_message": "", + "exception_type": "" + }, + "masspy": { + "response": 201, + "view": "https://api.biosimulations.org/runs/671f7f5e953bc3bf105eaaf4", + "download": "https://api.biosimulations.org/results/671f7f5e953bc3bf105eaaf4/download", + "logs": "https://api.biosimulations.org/logs/671f7f5e953bc3bf105eaaf4?includeOutput=true", + "status": "FAIL", + "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .\n \t`(model, errors) = validate_sbml_model(filename)`\n If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .", + "exception_type": "CombineArchiveExecutionError" + }, + "netpyne": { + "response": 201, + "view": "https://api.biosimulations.org/runs/671f7f60f9c43d155d41848c", + "download": "https://api.biosimulations.org/results/671f7f60f9c43d155d41848c/download", + "logs": "https://api.biosimulations.org/logs/671f7f60f9c43d155d41848c?includeOutput=true", + "status": "FAIL", + "error_message": "No module named 'libsbml'", + "exception_type": "ModuleNotFoundError" + }, + "neuron": { + "response": 201, + "view": "https://api.biosimulations.org/runs/671f7f62b741155bbe286d88", + "download": "https://api.biosimulations.org/results/671f7f62b741155bbe286d88/download", + "logs": "https://api.biosimulations.org/logs/671f7f62b741155bbe286d88?includeOutput=true", + "status": "FAIL", + "error_message": "No module named 'libsbml'", + "exception_type": "ModuleNotFoundError" + }, + "opencor": { + "response": 201, + "view": "https://api.biosimulations.org/runs/671f7f64f9c43d155d4184a0", + "download": "https://api.biosimulations.org/results/671f7f64f9c43d155d4184a0/download", + "logs": "https://api.biosimulations.org/logs/671f7f64f9c43d155d4184a0?includeOutput=true", + "status": "FAIL", + "error_message": "No module named 'libsbml'", + "exception_type": "ModuleNotFoundError" + }, + "pyneuroml": { + "response": 201, + "view": "https://api.biosimulations.org/runs/671f7f66b741155bbe286da5", + "download": "https://api.biosimulations.org/results/671f7f66b741155bbe286da5/download", + "logs": "https://api.biosimulations.org/logs/671f7f66b741155bbe286da5?includeOutput=true", + "status": "FAIL", + "error_message": "No module named 'libsbml'", + "exception_type": "ModuleNotFoundError" + }, + "pysces": { + "response": 201, + "view": "https://api.biosimulations.org/runs/671f7f69b741155bbe286db8", + "download": "https://api.biosimulations.org/results/671f7f69b741155bbe286db8/download", + "logs": "https://api.biosimulations.org/logs/671f7f69b741155bbe286db8?includeOutput=true", + "status": "FAIL", + "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", + "exception_type": "CombineArchiveExecutionError" + }, + "rbapy": { + "response": 201, + "view": "https://api.biosimulations.org/runs/671f7f6bf9c43d155d4184c2", + "download": "https://api.biosimulations.org/results/671f7f6bf9c43d155d4184c2/download", + "logs": "https://api.biosimulations.org/logs/671f7f6bf9c43d155d4184c2?includeOutput=true", + "status": "FAIL", + "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).", + "exception_type": "CombineArchiveExecutionError" + }, + "smoldyn": { + "response": 201, + "view": "https://api.biosimulations.org/runs/671f7f6db741155bbe286dcb", + "download": "https://api.biosimulations.org/results/671f7f6db741155bbe286dcb/download", + "logs": "https://api.biosimulations.org/logs/671f7f6db741155bbe286dcb?includeOutput=true", + "status": "FAIL", + "error_message": "No module named 'libsbml'", + "exception_type": "ModuleNotFoundError" + }, + "tellurium": { + "response": 201, + "view": "https://api.biosimulations.org/runs/671f7f6f953bc3bf105eab39", + "download": "https://api.biosimulations.org/results/671f7f6f953bc3bf105eab39/download", + "logs": "https://api.biosimulations.org/logs/671f7f6f953bc3bf105eab39?includeOutput=true", + "status": "pass", + "error_message": "", + "exception_type": "" + }, + "vcell": { + "response": 201, + "view": "https://api.biosimulations.org/runs/671f7f75b741155bbe286de6", + "download": "https://api.biosimulations.org/results/671f7f75b741155bbe286de6/download", + "logs": "https://api.biosimulations.org/logs/671f7f75b741155bbe286de6?includeOutput=true", + "status": null, + "error_message": "", + "exception_type": "" + }, + "xpp": { + "response": 201, + "view": "https://api.biosimulations.org/runs/671f7f77953bc3bf105eab72", + "download": "https://api.biosimulations.org/results/671f7f77953bc3bf105eab72/download", + "logs": "https://api.biosimulations.org/logs/671f7f77953bc3bf105eab72?includeOutput=true", + "status": "FAIL", + "error_message": "No module named 'libsbml'", + "exception_type": "ModuleNotFoundError" + } +} \ No newline at end of file diff --git a/SBML/tests/results_remote.md b/SBML/tests/results_remote.md new file mode 100644 index 00000000..3f3454ab --- /dev/null +++ b/SBML/tests/results_remote.md @@ -0,0 +1,23 @@ +| | Engine | response | view | download | logs | pass / FAIL | Error | Type | combi | d1 | Compatibility | +|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|-----------:|:-------------------------------------------------------------|:-------------------------------------------------------------------------|:--------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
| 201 | https://api.biosimulations.org/runs/671f7f46f9c43d155d41845a | https://api.biosimulations.org/results/671f7f46f9c43d155d41845a/download | https://api.biosimulations.org/logs/671f7f46f9c43d155d41845a?includeOutput=true |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
| +| 1 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/671f7f48f9c43d155d41845d | https://api.biosimulations.org/results/671f7f48f9c43d155d41845d/download | https://api.biosimulations.org/logs/671f7f48f9c43d155d41845d?includeOutput=true |
⚠ XFAILview
download
logs
|
DetailsNo module named 'libsbml'
|
MNFEModuleNotFoundError
| view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
| +| 2 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
| 201 | https://api.biosimulations.org/runs/671f7f4a953bc3bf105eaace | https://api.biosimulations.org/results/671f7f4a953bc3bf105eaace/download | https://api.biosimulations.org/logs/671f7f4a953bc3bf105eaace?includeOutput=true |
⚠ XFAILview
download
logs
|
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).
|
CAEECombineArchiveExecutionError
| view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
| +| 3 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
| 201 | https://api.biosimulations.org/runs/671f7f4db741155bbe286d4d | https://api.biosimulations.org/results/671f7f4db741155bbe286d4d/download | https://api.biosimulations.org/logs/671f7f4db741155bbe286d4d?includeOutput=true |
⚠ XFAILview
download
logs
|
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).
|
CAEECombineArchiveExecutionError
| view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
| +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
| 201 | https://api.biosimulations.org/runs/671f7f4f953bc3bf105eaad2 | https://api.biosimulations.org/results/671f7f4f953bc3bf105eaad2/download | https://api.biosimulations.org/logs/671f7f4f953bc3bf105eaad2?includeOutput=true |
❌ FAILview
download
logs
|
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation
|
CAEECombineArchiveExecutionError
| view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
| +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
| 201 | https://api.biosimulations.org/runs/671f7f51f9c43d155d418465 | https://api.biosimulations.org/results/671f7f51f9c43d155d418465/download | https://api.biosimulations.org/logs/671f7f51f9c43d155d418465?includeOutput=true |
❌ FAILview
download
logs
|
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation
|
CAEECombineArchiveExecutionError
| view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
| +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
| 201 | https://api.biosimulations.org/runs/671f7f53b741155bbe286d56 | https://api.biosimulations.org/results/671f7f53b741155bbe286d56/download | https://api.biosimulations.org/logs/671f7f53b741155bbe286d56?includeOutput=true |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
| 201 | https://api.biosimulations.org/runs/671f7f56b741155bbe286d59 | https://api.biosimulations.org/results/671f7f56b741155bbe286d59/download | https://api.biosimulations.org/logs/671f7f56b741155bbe286d59?includeOutput=true |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
| 201 | https://api.biosimulations.org/runs/671f7f59b741155bbe286d5c | https://api.biosimulations.org/results/671f7f59b741155bbe286d5c/download | https://api.biosimulations.org/logs/671f7f59b741155bbe286d5c?includeOutput=true |
⚠ XFAILview
download
logs
|
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000
|
CAEECombineArchiveExecutionError
| view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
| +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
| 201 | https://api.biosimulations.org/runs/671f7f5b953bc3bf105eaaeb | https://api.biosimulations.org/results/671f7f5b953bc3bf105eaaeb/download | https://api.biosimulations.org/logs/671f7f5b953bc3bf105eaaeb?includeOutput=true |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
| 201 | https://api.biosimulations.org/runs/671f7f5e953bc3bf105eaaf4 | https://api.biosimulations.org/results/671f7f5e953bc3bf105eaaf4/download | https://api.biosimulations.org/logs/671f7f5e953bc3bf105eaaf4?includeOutput=true |
❌ FAILview
download
logs
|
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .
|
CAEECombineArchiveExecutionError
| view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
| +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/671f7f60f9c43d155d41848c | https://api.biosimulations.org/results/671f7f60f9c43d155d41848c/download | https://api.biosimulations.org/logs/671f7f60f9c43d155d41848c?includeOutput=true |
⚠ XFAILview
download
logs
|
DetailsNo module named 'libsbml'
|
MNFEModuleNotFoundError
| view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
| +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/671f7f62b741155bbe286d88 | https://api.biosimulations.org/results/671f7f62b741155bbe286d88/download | https://api.biosimulations.org/logs/671f7f62b741155bbe286d88?includeOutput=true |
⚠ XFAILview
download
logs
|
DetailsNo module named 'libsbml'
|
MNFEModuleNotFoundError
| view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
| +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
| 201 | https://api.biosimulations.org/runs/671f7f64f9c43d155d4184a0 | https://api.biosimulations.org/results/671f7f64f9c43d155d4184a0/download | https://api.biosimulations.org/logs/671f7f64f9c43d155d4184a0?includeOutput=true |
⚠ XFAILview
download
logs
|
DetailsNo module named 'libsbml'
|
MNFEModuleNotFoundError
| view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
| +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/671f7f66b741155bbe286da5 | https://api.biosimulations.org/results/671f7f66b741155bbe286da5/download | https://api.biosimulations.org/logs/671f7f66b741155bbe286da5?includeOutput=true |
⚠ XFAILview
download
logs
|
DetailsNo module named 'libsbml'
|
MNFEModuleNotFoundError
| view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
| +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
| 201 | https://api.biosimulations.org/runs/671f7f69b741155bbe286db8 | https://api.biosimulations.org/results/671f7f69b741155bbe286db8/download | https://api.biosimulations.org/logs/671f7f69b741155bbe286db8?includeOutput=true |
❌ FAILview
download
logs
|
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
|
CAEECombineArchiveExecutionError
| view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
| +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
| 201 | https://api.biosimulations.org/runs/671f7f6bf9c43d155d4184c2 | https://api.biosimulations.org/results/671f7f6bf9c43d155d4184c2/download | https://api.biosimulations.org/logs/671f7f6bf9c43d155d4184c2?includeOutput=true |
⚠ XFAILview
download
logs
|
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).
|
CAEECombineArchiveExecutionError
| view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
| +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
| 201 | https://api.biosimulations.org/runs/671f7f6db741155bbe286dcb | https://api.biosimulations.org/results/671f7f6db741155bbe286dcb/download | https://api.biosimulations.org/logs/671f7f6db741155bbe286dcb?includeOutput=true |
⚠ XFAILview
download
logs
|
DetailsNo module named 'libsbml'
|
MNFEModuleNotFoundError
| view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
| +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
| 201 | https://api.biosimulations.org/runs/671f7f6f953bc3bf105eab39 | https://api.biosimulations.org/results/671f7f6f953bc3bf105eab39/download | https://api.biosimulations.org/logs/671f7f6f953bc3bf105eab39?includeOutput=true |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| +| 19 |
vcellhttps://github.com/virtualcell/vcell
| 201 | https://api.biosimulations.org/runs/671f7f75b741155bbe286de6 | https://api.biosimulations.org/results/671f7f75b741155bbe286de6/download | https://api.biosimulations.org/logs/671f7f75b741155bbe286de6?includeOutput=true |
Noneview
download
logs
| | | view
download
logs | |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
| +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
| 201 | https://api.biosimulations.org/runs/671f7f77953bc3bf105eab72 | https://api.biosimulations.org/results/671f7f77953bc3bf105eab72/download | https://api.biosimulations.org/logs/671f7f77953bc3bf105eab72?includeOutput=true |
⚠ XFAILview
download
logs
|
DetailsNo module named 'libsbml'
|
MNFEModuleNotFoundError
| view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
| \ No newline at end of file diff --git a/SBML/tests/test_biosimulators_local.py b/SBML/tests/test_biosimulators_local.py index 0f59f7a5..8fb2eb22 100644 --- a/SBML/tests/test_biosimulators_local.py +++ b/SBML/tests/test_biosimulators_local.py @@ -11,6 +11,7 @@ sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "..", ".."))) # to import utils import utils import argparse +import json # Save the current working directory cwd = os.getcwd() @@ -42,4 +43,8 @@ sbml_file_name=sbml_file_name, d1_plots_local_dir=d1_plots_local_dir, test_folder=test_folder) + +results_local_path = os.path.join(path_to_sbml_folder, 'tests', 'results_local.json') +with open(results_local_path, 'w') as fp: + json.dump(results_local, fp, indent=4) \ No newline at end of file diff --git a/SBML/tests/test_biosimulators_remote.py b/SBML/tests/test_biosimulators_remote.py index 20896eb7..a4971edb 100644 --- a/SBML/tests/test_biosimulators_remote.py +++ b/SBML/tests/test_biosimulators_remote.py @@ -11,6 +11,7 @@ sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "..", ".."))) # to import utils import utils import argparse +import json # Save the current working directory cwd = os.getcwd() @@ -42,4 +43,8 @@ sbml_file_name=sbml_file_name, d1_plots_remote_dir=d1_plots_remote_dir, test_folder=test_folder) + +results_remote_path = os.path.join(path_to_sbml_folder, 'tests', 'results_remote.json') +with open(results_remote_path, 'w') as fp: + json.dump(results_remote, fp, indent=4) \ No newline at end of file diff --git a/SBML/tests/test_creation_combined_results_table.py b/SBML/tests/test_creation_combined_results_table.py index 0db286c7..6dd57d2a 100644 --- a/SBML/tests/test_creation_combined_results_table.py +++ b/SBML/tests/test_creation_combined_results_table.py @@ -3,6 +3,7 @@ sys.path.append(os.path.abspath(os.path.join(os.path.dirname(__file__), "..", ".."))) # to import utils import utils import argparse +import json engines = utils.ENGINES @@ -31,11 +32,18 @@ d1_plots_local_dir = os.path.join(test_folder, args.output_dir + '_local') d1_plots_remote_dir = os.path.join(test_folder, args.output_dir + '_remote') -results_local = {'amici': 'pass', 'brian2': ['other', "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1```"], 'bionetgen': ['other', "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1```"], 'boolnet': ['other', "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1```"], 'cbmpy': ['other', "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1```"], 'cobrapy': ['other', "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1```"], 'copasi': 'pass', 'gillespy2': 'pass', 'ginsim': ['other', "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1```"], 'libsbmlsim': 'pass', 'masspy': ['other', "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1```"], 'netpyne': ['other', "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1```"], 'neuron': ['other', "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1```"], 'opencor': ['other', "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1```"], 'pyneuroml': ['other', "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1```"], 'pysces': ['other', "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1```"], 'rbapy': ['other', "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1```"], 'smoldyn': ['other', "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1```"], 'tellurium': 'pass', 'vcell': ['other', "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1```"], 'xpp': ['other', "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1```"]} -results_remote = {'amici': ['pass', '', ''], 'brian2': ['FAIL', "No module named 'libsbml'", 'ModuleNotFoundError'], 'bionetgen': ['FAIL', 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).', 'CombineArchiveExecutionError'], 'boolnet': ['FAIL', 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).', 'CombineArchiveExecutionError'], 'cbmpy': ['FAIL', 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'CombineArchiveExecutionError'], 'cobrapy': ['FAIL', 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'CombineArchiveExecutionError'], 'copasi': ['pass', '', ''], 'gillespy2': ['pass', '', ''], 'ginsim': ['FAIL', 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000', 'CombineArchiveExecutionError'], 'libsbmlsim': ['pass', '', ''], 'masspy': ['FAIL', 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .\n \t`(model, errors) = validate_sbml_model(filename)`\n If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .', 'CombineArchiveExecutionError'], 'netpyne': ['FAIL', "No module named 'libsbml'", 'ModuleNotFoundError'], 'neuron': ['FAIL', "No module named 'libsbml'", 'ModuleNotFoundError'], 'opencor': ['FAIL', "No module named 'libsbml'", 'ModuleNotFoundError'], 'pyneuroml': ['FAIL', "No module named 'libsbml'", 'ModuleNotFoundError'], 'pysces': ['FAIL', 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Model at /tmp/tmp1bq_quiv/./LEMS_NML2_Ex9_FN.sbml could not be imported:\n \n File /tmp/tmp1bq_quiv/./LEMS_NML2_Ex9_FN.sbml.xml does not exist', 'CombineArchiveExecutionError'], 'rbapy': ['FAIL', 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).', 'CombineArchiveExecutionError'], 'smoldyn': ['FAIL', "No module named 'libsbml'", 'ModuleNotFoundError'], 'tellurium': ['pass', '', ''], 'vcell': [None, '', ''], 'xpp': ['FAIL', "No module named 'libsbml'", 'ModuleNotFoundError']} +results_paths = { + "local": os.path.join(path_to_sbml_folder, 'tests', 'results_local.json'), + "remote": os.path.join(path_to_sbml_folder, 'tests', 'results_remote.json') +} -results_table = utils.create_combined_results_table(results_remote, - results_local, +results = {} +for key, path in results_paths.items(): + with open(path, 'r') as f: + results[key] = json.load(f) + +results_table = utils.create_combined_results_table(results["remote"], + results["local"], sedml_file_name, sbml_file_name, d1_plots_local_dir, diff --git a/utils/__init__.py b/utils/__init__.py index d7d21d75..d46777cc 100644 --- a/utils/__init__.py +++ b/utils/__init__.py @@ -380,15 +380,15 @@ def d1_plots_dict(d1_plots_path='d1_plots'): return d1_plots_dict -def create_hyperlink(file_path, title=None): +def create_hyperlink(path, title=None): """ Create a hyperlink to a file or folder. If the path is None, return None. Title is the basename of the path. """ - if file_path: + if path: if title is None: - title = os.path.basename(file_path) - return f'{title}' + title = os.path.basename(path) + return f'{title}' else: return None @@ -583,7 +583,7 @@ def run_biosimulators_docker(engine,sedml_filepath,sbml_filepath,output_dir='out gid = os.getgid() os.system(f'sudo chown -R {uid}:{gid} {output_dir}') - if not error_str: return "pass" + if not error_str: return {"status": 'pass', "error_message": ''} # #try to load the cleaner error message from the log.yml file log_str = read_log_yml(os.path.join(os.path.dirname(omex_filepath),"log.yml")) @@ -599,7 +599,7 @@ def run_biosimulators_docker(engine,sedml_filepath,sbml_filepath,output_dir='out if re.search(error_categories[engine][tag],error_str): return [tag,f"```{error_str}```"] - return ["other",f"```{error_str}```"] + return {"status":"FAIL", "error_message": f"```{error_str}```"} def biosimulators_core(engine,omex_filepath,output_dir=None): ''' @@ -1090,20 +1090,17 @@ def create_results_table(results, sbml_filepath, sedml_filepath, output_dir): xfail_html = "❎" xfail_html = "⚠ XFAIL" - # Create a table of the results + for e in results.keys(): + results[e]['combi'] = '
'.join([f'{create_hyperlink(results[e][k], title=k)}' for k in results[e].keys() if k in ['view', 'download', 'logs']]) + results_table = pd.DataFrame.from_dict(results).T - # if list is three elements - if results_table.shape[1] > 2: - results_table.columns = [PASS_FAIL, ERROR, TYPE] - elif results_table.shape[1] == 2: - results_table.columns = [PASS_FAIL, ERROR] + results_table.rename(columns={"status": PASS_FAIL, "error_message": ERROR, "exception_type": TYPE}, inplace=True) results_table.index.name = ENGINE results_table.reset_index(inplace=True) # Error results_table[ERROR] = results_table.apply(lambda x: None if x[PASS_FAIL] == x[ERROR] else x[ERROR], axis=1) - results_table[PASS_FAIL] = results_table[PASS_FAIL].replace('other', 'FAIL') results_table[ERROR] = results_table[ERROR].apply(lambda x: ansi_to_html(x)) results_table[ERROR] = results_table[ERROR].apply(lambda x: collapsible_content(x)) @@ -1120,8 +1117,6 @@ def create_results_table(results, sbml_filepath, sedml_filepath, output_dir): for e in ENGINES.keys(): compatibility_content = check_file_compatibility_test(e, sbml_filepath, sedml_filepath) - - print(e, compatibility_content[0] ) if compatibility_content[0] == 'pass': results_table.loc[results_table[ENGINE] == e, COMPAT] = collapsible_content(compatibility_content[1], title=f'{pass_html}') elif compatibility_content[0] == 'unsure': @@ -1135,10 +1130,12 @@ def create_results_table(results, sbml_filepath, sedml_filepath, output_dir): compatibility_content = check_file_compatibility_test(e, sbml_filepath, sedml_filepath) results_table.loc[results_table[ENGINE] == e, COMPAT] = collapsible_content(compatibility_content[1], title=f'{xfail_html}') results_table.loc[results_table[ENGINE] == e, PASS_FAIL] = f'{xfail_html}' - - + + # for PASS_FAIL column in results_table, add collapsible content (add content from combi col if it exists) but keep titles the same as the content at the momtn + results_table[PASS_FAIL] = results_table.apply(lambda x: collapsible_content(x['combi'], x[PASS_FAIL]), axis=1) + # add status message defined in ENGINES - results_table[ENGINE] = results_table[ENGINE].apply(lambda x: collapsible_content(f'{ENGINES[x]["url"]}
{ENGINES[x]["status"]}', x)) + results_table[ENGINE] = results_table[ENGINE].apply(lambda x: collapsible_content(f'{ENGINES[x]["url"]}
{ENGINES[x]["status"]}', x)) return results_table @@ -1153,13 +1150,13 @@ def run_biosimulators_remotely(sedml_file_name, remote_output_dir = 'remote_results' remote_output_dir = os.path.join(test_folder, remote_output_dir) - results_urls = dict() + results_remote = dict() for e in ENGINES.keys(): - results_urls[e] = run_biosimulators_remote(e, sedml_file_name, sbml_file_name) - + results_remote[e] = run_biosimulators_remote(e, sedml_file_name, sbml_file_name) + results_remote[e]['response'] = results_remote[e]['response'].status_code + extract_dir_dict = dict() - results_remote = dict() - for e, link in results_urls.items(): + for e, link in results_remote.items(): try: extract_dir = get_remote_results(e, link["download"], remote_output_dir) except HTTPError as emessage: @@ -1188,7 +1185,9 @@ def run_biosimulators_remotely(sedml_file_name, exception_type = exception['type'] else: status = None - results_remote[e] = [status, error_message, exception_type, results_urls] + results_remote[e]["status"] = status + results_remote[e]["error_message"] = error_message + results_remote[e]["exception_type"] = exception_type file_paths = find_files(remote_output_dir, '.pdf') move_d1_files(file_paths, d1_plots_remote_dir) @@ -1213,8 +1212,7 @@ def run_biosimulators_locally(sedml_file_name, print('Running ' + e) local_output_dir_e = os.path.abspath(os.path.join(local_output_dir, e)) print(local_output_dir_e) - record = run_biosimulators_docker(e, sedml_file_name, sbml_file_name, output_dir=local_output_dir_e) - results_local[e] = record + results_local[e] = run_biosimulators_docker(e, sedml_file_name, sbml_file_name, output_dir=local_output_dir_e) file_paths = find_files(local_output_dir, '.pdf') print('file paths:', file_paths) @@ -1227,8 +1225,6 @@ def run_biosimulators_locally(sedml_file_name, return results_local - - def create_combined_results_table(results_remote, results_local, sedml_file_name, @@ -1242,7 +1238,16 @@ def create_combined_results_table(results_remote, # Create results tables for remote and local results results_table_remote = create_results_table(results_remote, sbml_file_name, sedml_file_name, d1_plots_remote_dir) + # save as md file + path_to_results = os.path.join(test_folder, 'results_remote.md') + with open(path_to_results, 'w', encoding='utf-8') as f: + f.write(results_table_remote.to_markdown()) + results_table_local = create_results_table(results_local, sbml_file_name, sedml_file_name, d1_plots_local_dir) + # save as md file + path_to_results = os.path.join(test_folder, 'results_local.md') + with open(path_to_results, 'w', encoding='utf-8') as f: + f.write(results_table_local.to_markdown()) # Rename columns to distinguish between local and remote results except for Engine column results_table_remote.columns = [f"{col}{suffix_remote}" if col != ENGINE else col for col in results_table_remote.columns] From 830810f2eb60d765f7aa1ef110bfa03e7fecdd04 Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Tue, 29 Oct 2024 10:17:32 +0000 Subject: [PATCH 03/24] add links column to results table and update collapsible content for PASS_FAIL. --- .../results_compatibility_biosimulators.md | 42 ++++++++--------- SBML/tests/results_local.md | 46 +++++++++---------- SBML/tests/results_remote.md | 2 +- utils/__init__.py | 10 ++-- 4 files changed, 51 insertions(+), 49 deletions(-) diff --git a/SBML/tests/results_compatibility_biosimulators.md b/SBML/tests/results_compatibility_biosimulators.md index 1dca62c0..4b4e77d7 100644 --- a/SBML/tests/results_compatibility_biosimulators.md +++ b/SBML/tests/results_compatibility_biosimulators.md @@ -1,23 +1,23 @@ | | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | Error (R) | Error (L) | Type (R) | d1 (R) | d1 (L) | |---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
|
✅ PASSview
download
logs
| | | | | plot | plot | -| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
⚠ XFAILview
download
logs
| |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | -| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
⚠ XFAILview
download
logs
| |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | -| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|
⚠ XFAILview
download
logs
| |
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1```
|
MNFEModuleNotFoundError
| | | -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|
❌ FAILview
download
logs
| |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|
❌ FAILview
download
logs
| |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
|
✅ PASSview
download
logs
| | | | | plot | plot | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
|
✅ PASSview
download
logs
| | | | | plot | plot | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
⚠ XFAILview
download
logs
| |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
|
✅ PASSview
download
logs
| | | | | plot | plot | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|
❌ FAILview
download
logs
| |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|
⚠ XFAILview
download
logs
| |
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1```
|
MNFEModuleNotFoundError
| | | -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
⚠ XFAILview
download
logs
| |
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1```
|
MNFEModuleNotFoundError
| | | -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
⚠ XFAILview
download
logs
| |
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1```
|
MNFEModuleNotFoundError
| | | -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
⚠ XFAILview
download
logs
| |
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1```
|
MNFEModuleNotFoundError
| | | -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|
❌ FAILview
download
logs
| |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
⚠ XFAILview
download
logs
| |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|
⚠ XFAILview
download
logs
| |
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1```
|
MNFEModuleNotFoundError
| | | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
|
✅ PASSview
download
logs
| | | | | plot | plot | -| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
Noneview
download
logs
| | |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1```
| | | | -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
⚠ XFAILview
download
logs
| |
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1```
|
MNFEModuleNotFoundError
| | | \ No newline at end of file +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
|
✅ PASSview
download
logs
| ✅ PASS | | | | plot | plot | +| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
⚠ XFAILview
download
logs
| ⚠ XFAIL |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | +| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
⚠ XFAILview
download
logs
| ⚠ XFAIL |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | +| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|
⚠ XFAILview
download
logs
| ⚠ XFAIL |
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1```
|
MNFEModuleNotFoundError
| | | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|
❌ FAILview
download
logs
| ❌ FAIL |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|
❌ FAILview
download
logs
| ❌ FAIL |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
|
✅ PASSview
download
logs
| ✅ PASS | | | | plot | plot | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
|
✅ PASSview
download
logs
| ✅ PASS | | | | plot | plot | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
⚠ XFAILview
download
logs
| ⚠ XFAIL |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
|
✅ PASSview
download
logs
| ✅ PASS | | | | plot | plot | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|
❌ FAILview
download
logs
| ❌ FAIL |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|
⚠ XFAILview
download
logs
| ⚠ XFAIL |
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1```
|
MNFEModuleNotFoundError
| | | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
⚠ XFAILview
download
logs
| ⚠ XFAIL |
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1```
|
MNFEModuleNotFoundError
| | | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
⚠ XFAILview
download
logs
| ⚠ XFAIL |
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1```
|
MNFEModuleNotFoundError
| | | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
⚠ XFAILview
download
logs
| ⚠ XFAIL |
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1```
|
MNFEModuleNotFoundError
| | | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|
❌ FAILview
download
logs
| ❌ FAIL |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
⚠ XFAILview
download
logs
| ⚠ XFAIL |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|
⚠ XFAILview
download
logs
| ⚠ XFAIL |
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1```
|
MNFEModuleNotFoundError
| | | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
|
✅ PASSview
download
logs
| ✅ PASS | | | | plot | plot | +| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
Noneview
download
logs
| ❌ FAIL | |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1```
| | | | +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
⚠ XFAILview
download
logs
| ⚠ XFAIL |
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1```
|
MNFEModuleNotFoundError
| | | \ No newline at end of file diff --git a/SBML/tests/results_local.md b/SBML/tests/results_local.md index af20a392..17d0ee67 100644 --- a/SBML/tests/results_local.md +++ b/SBML/tests/results_local.md @@ -1,23 +1,23 @@ -| | Engine | pass / FAIL | Error | combi | d1 | Compatibility | -|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:--------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------|:----------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
| | | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
| -| 1 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
| |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1```
| | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
| -| 2 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
| |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1```
| | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
| -| 3 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
| |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1```
| | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
| -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
| |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1```
| | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
| -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
| |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1```
| | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
| -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
| | | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
| | | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
| |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1```
| | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
| -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
| | | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
| |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1```
| | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
| -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1```
| | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
| -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1```
| | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
| -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
| |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1```
| | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
| -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1```
| | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
| -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
| |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1```
| | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
| -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
| |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1```
| | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
| -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
| |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1```
| | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
| -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
| | | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| -| 19 |
vcellhttps://github.com/virtualcell/vcell
| |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1```
| | |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
| -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
| |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1```
| | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
| \ No newline at end of file +| | Engine | pass / FAIL | Error | d1 | Compatibility | +|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:--------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
| ✅ PASS | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
| +| 1 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
| ⚠ XFAIL |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1```
| |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
| +| 2 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
| ⚠ XFAIL |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1```
| plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
| +| 3 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
| ⚠ XFAIL |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1```
| plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
| +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
| ❌ FAIL |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1```
| plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
| +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
| ❌ FAIL |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1```
| plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
| +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
| ✅ PASS | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
| ✅ PASS | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
| ⚠ XFAIL |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1```
| plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
| +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
| ✅ PASS | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
| ❌ FAIL |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1```
| plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
| +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| ⚠ XFAIL |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1```
| |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
| +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| ⚠ XFAIL |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1```
| |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
| +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
| ⚠ XFAIL |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1```
| |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
| +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| ⚠ XFAIL |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1```
| |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
| +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
| ❌ FAIL |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1```
| plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
| +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
| ⚠ XFAIL |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1```
| plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
| +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
| ⚠ XFAIL |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1```
| |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
| +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
| ✅ PASS | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| +| 19 |
vcellhttps://github.com/virtualcell/vcell
| ❌ FAIL |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1```
| |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
| +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
| ⚠ XFAIL |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1```
| |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
| \ No newline at end of file diff --git a/SBML/tests/results_remote.md b/SBML/tests/results_remote.md index 3f3454ab..bfa4e799 100644 --- a/SBML/tests/results_remote.md +++ b/SBML/tests/results_remote.md @@ -1,4 +1,4 @@ -| | Engine | response | view | download | logs | pass / FAIL | Error | Type | combi | d1 | Compatibility | +| | Engine | response | view | download | logs | pass / FAIL | Error | Type | links | d1 | Compatibility | |---:|:-------------------------------------------------------------------------------------------------------------------------------------------|-----------:|:-------------------------------------------------------------|:-------------------------------------------------------------------------|:--------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| | 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
| 201 | https://api.biosimulations.org/runs/671f7f46f9c43d155d41845a | https://api.biosimulations.org/results/671f7f46f9c43d155d41845a/download | https://api.biosimulations.org/logs/671f7f46f9c43d155d41845a?includeOutput=true |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
| | 1 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/671f7f48f9c43d155d41845d | https://api.biosimulations.org/results/671f7f48f9c43d155d41845d/download | https://api.biosimulations.org/logs/671f7f48f9c43d155d41845d?includeOutput=true |
⚠ XFAILview
download
logs
|
DetailsNo module named 'libsbml'
|
MNFEModuleNotFoundError
| view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
| diff --git a/utils/__init__.py b/utils/__init__.py index d46777cc..d9f1f2f6 100644 --- a/utils/__init__.py +++ b/utils/__init__.py @@ -1087,11 +1087,12 @@ def create_results_table(results, sbml_filepath, sedml_filepath, output_dir): pass_html = "✅ PASS" fail_html = "❌ FAIL" warning_html = "⚠ WARNING" - xfail_html = "❎" xfail_html = "⚠ XFAIL" + links = ['view', 'download', 'logs'] for e in results.keys(): - results[e]['combi'] = '
'.join([f'{create_hyperlink(results[e][k], title=k)}' for k in results[e].keys() if k in ['view', 'download', 'logs']]) + if any([l in results[e].keys() for l in links]): + results[e]['links'] = '
'.join([f'{create_hyperlink(results[e][k], title=k)}' for k in results[e].keys() if k in links]) results_table = pd.DataFrame.from_dict(results).T results_table.rename(columns={"status": PASS_FAIL, "error_message": ERROR, "exception_type": TYPE}, inplace=True) @@ -1131,8 +1132,9 @@ def create_results_table(results, sbml_filepath, sedml_filepath, output_dir): results_table.loc[results_table[ENGINE] == e, COMPAT] = collapsible_content(compatibility_content[1], title=f'{xfail_html}') results_table.loc[results_table[ENGINE] == e, PASS_FAIL] = f'{xfail_html}' - # for PASS_FAIL column in results_table, add collapsible content (add content from combi col if it exists) but keep titles the same as the content at the momtn - results_table[PASS_FAIL] = results_table.apply(lambda x: collapsible_content(x['combi'], x[PASS_FAIL]), axis=1) + # if links column exists add collapsible content to PASS_FAIL column + if 'links' in results_table.columns: + results_table[PASS_FAIL] = results_table.apply(lambda x: collapsible_content(x['links'], x[PASS_FAIL]), axis=1) # add status message defined in ENGINES results_table[ENGINE] = results_table[ENGINE].apply(lambda x: collapsible_content(f'{ENGINES[x]["url"]}
{ENGINES[x]["status"]}', x)) From 41389a64f744bdef86861c43a384cca5dcc226dd Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Tue, 29 Oct 2024 17:34:02 +0000 Subject: [PATCH 04/24] draft for adding the warning messages in the foldout menu for the pass and fail column --- .../results_compatibility_biosimulators.md | 46 +++++++++---------- SBML/tests/results_local.md | 46 +++++++++---------- SBML/tests/results_remote.md | 46 +++++++++---------- utils/__init__.py | 46 +++++++++++++++---- 4 files changed, 105 insertions(+), 79 deletions(-) diff --git a/SBML/tests/results_compatibility_biosimulators.md b/SBML/tests/results_compatibility_biosimulators.md index 4b4e77d7..1e24c0ba 100644 --- a/SBML/tests/results_compatibility_biosimulators.md +++ b/SBML/tests/results_compatibility_biosimulators.md @@ -1,23 +1,23 @@ -| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | Error (R) | Error (L) | Type (R) | d1 (R) | d1 (L) | -|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
|
✅ PASSview
download
logs
| ✅ PASS | | | | plot | plot | -| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
⚠ XFAILview
download
logs
| ⚠ XFAIL |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | -| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
⚠ XFAILview
download
logs
| ⚠ XFAIL |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | -| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|
⚠ XFAILview
download
logs
| ⚠ XFAIL |
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1```
|
MNFEModuleNotFoundError
| | | -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|
❌ FAILview
download
logs
| ❌ FAIL |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|
❌ FAILview
download
logs
| ❌ FAIL |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
|
✅ PASSview
download
logs
| ✅ PASS | | | | plot | plot | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
|
✅ PASSview
download
logs
| ✅ PASS | | | | plot | plot | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
⚠ XFAILview
download
logs
| ⚠ XFAIL |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
|
✅ PASSview
download
logs
| ✅ PASS | | | | plot | plot | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|
❌ FAILview
download
logs
| ❌ FAIL |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|
⚠ XFAILview
download
logs
| ⚠ XFAIL |
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1```
|
MNFEModuleNotFoundError
| | | -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
⚠ XFAILview
download
logs
| ⚠ XFAIL |
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1```
|
MNFEModuleNotFoundError
| | | -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
⚠ XFAILview
download
logs
| ⚠ XFAIL |
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1```
|
MNFEModuleNotFoundError
| | | -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
⚠ XFAILview
download
logs
| ⚠ XFAIL |
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1```
|
MNFEModuleNotFoundError
| | | -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|
❌ FAILview
download
logs
| ❌ FAIL |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
⚠ XFAILview
download
logs
| ⚠ XFAIL |
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1```
|
CAEECombineArchiveExecutionError
| plot | plot | -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|
⚠ XFAILview
download
logs
| ⚠ XFAIL |
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1```
|
MNFEModuleNotFoundError
| | | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
|
✅ PASSview
download
logs
| ✅ PASS | | | | plot | plot | -| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
Noneview
download
logs
| ❌ FAIL | |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1```
| | | | -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
⚠ XFAILview
download
logs
| ⚠ XFAIL |
DetailsNo module named 'libsbml'
|
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1```
|
MNFEModuleNotFoundError
| | | \ No newline at end of file +| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | +|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------| +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
| ✅ PASS | ✅ PASS | plot | plot | +| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1```
| plot | plot | +| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1```
| plot | plot | +| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1```
| | | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1```
| plot | plot | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1```
| plot | plot | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| ✅ PASS | ✅ PASS | plot | plot | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| ✅ PASS | ✅ PASS | plot | plot | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1```
| plot | plot | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| ✅ PASS | ✅ PASS | plot | plot | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1```
| plot | plot | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1```
| | | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1```
| | | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1```
| | | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1```
| | | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1```
| plot | plot | +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1```
| plot | plot | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1```
| | | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| ✅ PASS | ✅ PASS | plot | plot | +| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
Noneview
download
logs

ERROR TYPE:
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1```
| | | +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1```
| | | \ No newline at end of file diff --git a/SBML/tests/results_local.md b/SBML/tests/results_local.md index 17d0ee67..370fd2a7 100644 --- a/SBML/tests/results_local.md +++ b/SBML/tests/results_local.md @@ -1,23 +1,23 @@ -| | Engine | pass / FAIL | Error | d1 | Compatibility | -|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:--------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
| ✅ PASS | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
| -| 1 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
| ⚠ XFAIL |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1```
| |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
| -| 2 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
| ⚠ XFAIL |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1```
| plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
| -| 3 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
| ⚠ XFAIL |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1```
| plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
| -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
| ❌ FAIL |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1```
| plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
| -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
| ❌ FAIL |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1```
| plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
| -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
| ✅ PASS | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
| ✅ PASS | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
| ⚠ XFAIL |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1```
| plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
| -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
| ✅ PASS | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
| ❌ FAIL |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1```
| plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
| -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| ⚠ XFAIL |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1```
| |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
| -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| ⚠ XFAIL |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1```
| |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
| -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
| ⚠ XFAIL |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1```
| |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
| -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| ⚠ XFAIL |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1```
| |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
| -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
| ❌ FAIL |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1```
| plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
| -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
| ⚠ XFAIL |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1```
| plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
| -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
| ⚠ XFAIL |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1```
| |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
| -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
| ✅ PASS | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| -| 19 |
vcellhttps://github.com/virtualcell/vcell
| ❌ FAIL |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1```
| |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
| -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
| ⚠ XFAIL |
Details```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1```
| |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
| \ No newline at end of file +| | Engine | pass / FAIL | Error | d1 | Compatibility | links_error | +|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
| ✅ PASS | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
| nan | +| 1 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1``` | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1``` | +| 2 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1``` | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1``` | +| 3 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1``` | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1``` | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1``` | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1``` | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1``` | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1``` | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
| ✅ PASS | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| nan | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
| ✅ PASS | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| nan | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1``` | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1``` | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
| ✅ PASS | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| nan | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1``` | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1``` | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1``` | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1``` | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1``` | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1``` | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1``` | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1``` | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1``` | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1``` | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1``` | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1``` | +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1``` | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1``` | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1``` | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1``` | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
| ✅ PASS | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| nan | +| 19 |
vcellhttps://github.com/virtualcell/vcell
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1``` | |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1``` | +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1``` | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1``` | \ No newline at end of file diff --git a/SBML/tests/results_remote.md b/SBML/tests/results_remote.md index bfa4e799..2a00fe53 100644 --- a/SBML/tests/results_remote.md +++ b/SBML/tests/results_remote.md @@ -1,23 +1,23 @@ -| | Engine | response | view | download | logs | pass / FAIL | Error | Type | links | d1 | Compatibility | -|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|-----------:|:-------------------------------------------------------------|:-------------------------------------------------------------------------|:--------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
| 201 | https://api.biosimulations.org/runs/671f7f46f9c43d155d41845a | https://api.biosimulations.org/results/671f7f46f9c43d155d41845a/download | https://api.biosimulations.org/logs/671f7f46f9c43d155d41845a?includeOutput=true |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
| -| 1 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/671f7f48f9c43d155d41845d | https://api.biosimulations.org/results/671f7f48f9c43d155d41845d/download | https://api.biosimulations.org/logs/671f7f48f9c43d155d41845d?includeOutput=true |
⚠ XFAILview
download
logs
|
DetailsNo module named 'libsbml'
|
MNFEModuleNotFoundError
| view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
| -| 2 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
| 201 | https://api.biosimulations.org/runs/671f7f4a953bc3bf105eaace | https://api.biosimulations.org/results/671f7f4a953bc3bf105eaace/download | https://api.biosimulations.org/logs/671f7f4a953bc3bf105eaace?includeOutput=true |
⚠ XFAILview
download
logs
|
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).
|
CAEECombineArchiveExecutionError
| view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
| -| 3 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
| 201 | https://api.biosimulations.org/runs/671f7f4db741155bbe286d4d | https://api.biosimulations.org/results/671f7f4db741155bbe286d4d/download | https://api.biosimulations.org/logs/671f7f4db741155bbe286d4d?includeOutput=true |
⚠ XFAILview
download
logs
|
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).
|
CAEECombineArchiveExecutionError
| view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
| -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
| 201 | https://api.biosimulations.org/runs/671f7f4f953bc3bf105eaad2 | https://api.biosimulations.org/results/671f7f4f953bc3bf105eaad2/download | https://api.biosimulations.org/logs/671f7f4f953bc3bf105eaad2?includeOutput=true |
❌ FAILview
download
logs
|
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation
|
CAEECombineArchiveExecutionError
| view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
| -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
| 201 | https://api.biosimulations.org/runs/671f7f51f9c43d155d418465 | https://api.biosimulations.org/results/671f7f51f9c43d155d418465/download | https://api.biosimulations.org/logs/671f7f51f9c43d155d418465?includeOutput=true |
❌ FAILview
download
logs
|
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation
|
CAEECombineArchiveExecutionError
| view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
| -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
| 201 | https://api.biosimulations.org/runs/671f7f53b741155bbe286d56 | https://api.biosimulations.org/results/671f7f53b741155bbe286d56/download | https://api.biosimulations.org/logs/671f7f53b741155bbe286d56?includeOutput=true |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
| 201 | https://api.biosimulations.org/runs/671f7f56b741155bbe286d59 | https://api.biosimulations.org/results/671f7f56b741155bbe286d59/download | https://api.biosimulations.org/logs/671f7f56b741155bbe286d59?includeOutput=true |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
| 201 | https://api.biosimulations.org/runs/671f7f59b741155bbe286d5c | https://api.biosimulations.org/results/671f7f59b741155bbe286d5c/download | https://api.biosimulations.org/logs/671f7f59b741155bbe286d5c?includeOutput=true |
⚠ XFAILview
download
logs
|
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000
|
CAEECombineArchiveExecutionError
| view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
| -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
| 201 | https://api.biosimulations.org/runs/671f7f5b953bc3bf105eaaeb | https://api.biosimulations.org/results/671f7f5b953bc3bf105eaaeb/download | https://api.biosimulations.org/logs/671f7f5b953bc3bf105eaaeb?includeOutput=true |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
| 201 | https://api.biosimulations.org/runs/671f7f5e953bc3bf105eaaf4 | https://api.biosimulations.org/results/671f7f5e953bc3bf105eaaf4/download | https://api.biosimulations.org/logs/671f7f5e953bc3bf105eaaf4?includeOutput=true |
❌ FAILview
download
logs
|
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .
|
CAEECombineArchiveExecutionError
| view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
| -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/671f7f60f9c43d155d41848c | https://api.biosimulations.org/results/671f7f60f9c43d155d41848c/download | https://api.biosimulations.org/logs/671f7f60f9c43d155d41848c?includeOutput=true |
⚠ XFAILview
download
logs
|
DetailsNo module named 'libsbml'
|
MNFEModuleNotFoundError
| view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
| -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/671f7f62b741155bbe286d88 | https://api.biosimulations.org/results/671f7f62b741155bbe286d88/download | https://api.biosimulations.org/logs/671f7f62b741155bbe286d88?includeOutput=true |
⚠ XFAILview
download
logs
|
DetailsNo module named 'libsbml'
|
MNFEModuleNotFoundError
| view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
| -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
| 201 | https://api.biosimulations.org/runs/671f7f64f9c43d155d4184a0 | https://api.biosimulations.org/results/671f7f64f9c43d155d4184a0/download | https://api.biosimulations.org/logs/671f7f64f9c43d155d4184a0?includeOutput=true |
⚠ XFAILview
download
logs
|
DetailsNo module named 'libsbml'
|
MNFEModuleNotFoundError
| view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
| -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/671f7f66b741155bbe286da5 | https://api.biosimulations.org/results/671f7f66b741155bbe286da5/download | https://api.biosimulations.org/logs/671f7f66b741155bbe286da5?includeOutput=true |
⚠ XFAILview
download
logs
|
DetailsNo module named 'libsbml'
|
MNFEModuleNotFoundError
| view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
| -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
| 201 | https://api.biosimulations.org/runs/671f7f69b741155bbe286db8 | https://api.biosimulations.org/results/671f7f69b741155bbe286db8/download | https://api.biosimulations.org/logs/671f7f69b741155bbe286db8?includeOutput=true |
❌ FAILview
download
logs
|
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
|
CAEECombineArchiveExecutionError
| view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
| -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
| 201 | https://api.biosimulations.org/runs/671f7f6bf9c43d155d4184c2 | https://api.biosimulations.org/results/671f7f6bf9c43d155d4184c2/download | https://api.biosimulations.org/logs/671f7f6bf9c43d155d4184c2?includeOutput=true |
⚠ XFAILview
download
logs
|
DetailsThe COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).
|
CAEECombineArchiveExecutionError
| view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
| -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
| 201 | https://api.biosimulations.org/runs/671f7f6db741155bbe286dcb | https://api.biosimulations.org/results/671f7f6db741155bbe286dcb/download | https://api.biosimulations.org/logs/671f7f6db741155bbe286dcb?includeOutput=true |
⚠ XFAILview
download
logs
|
DetailsNo module named 'libsbml'
|
MNFEModuleNotFoundError
| view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
| -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
| 201 | https://api.biosimulations.org/runs/671f7f6f953bc3bf105eab39 | https://api.biosimulations.org/results/671f7f6f953bc3bf105eab39/download | https://api.biosimulations.org/logs/671f7f6f953bc3bf105eab39?includeOutput=true |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| -| 19 |
vcellhttps://github.com/virtualcell/vcell
| 201 | https://api.biosimulations.org/runs/671f7f75b741155bbe286de6 | https://api.biosimulations.org/results/671f7f75b741155bbe286de6/download | https://api.biosimulations.org/logs/671f7f75b741155bbe286de6?includeOutput=true |
Noneview
download
logs
| | | view
download
logs | |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
| -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
| 201 | https://api.biosimulations.org/runs/671f7f77953bc3bf105eab72 | https://api.biosimulations.org/results/671f7f77953bc3bf105eab72/download | https://api.biosimulations.org/logs/671f7f77953bc3bf105eab72?includeOutput=true |
⚠ XFAILview
download
logs
|
DetailsNo module named 'libsbml'
|
MNFEModuleNotFoundError
| view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
| \ No newline at end of file +| | Engine | response | view | download | logs | pass / FAIL | Error | Type | links | d1 | Compatibility | links_error | +|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|-----------:|:-------------------------------------------------------------|:-------------------------------------------------------------------------|:--------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
| 201 | https://api.biosimulations.org/runs/671f7f46f9c43d155d41845a | https://api.biosimulations.org/results/671f7f46f9c43d155d41845a/download | https://api.biosimulations.org/logs/671f7f46f9c43d155d41845a?includeOutput=true | ✅ PASS | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
| nan | +| 1 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/671f7f48f9c43d155d41845d | https://api.biosimulations.org/results/671f7f48f9c43d155d41845d/download | https://api.biosimulations.org/logs/671f7f48f9c43d155d41845d?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 2 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
| 201 | https://api.biosimulations.org/runs/671f7f4a953bc3bf105eaace | https://api.biosimulations.org/results/671f7f4a953bc3bf105eaace/download | https://api.biosimulations.org/logs/671f7f4a953bc3bf105eaace?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`). | CombineArchiveExecutionError | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError | +| 3 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
| 201 | https://api.biosimulations.org/runs/671f7f4db741155bbe286d4d | https://api.biosimulations.org/results/671f7f4db741155bbe286d4d/download | https://api.biosimulations.org/logs/671f7f4db741155bbe286d4d?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0). | CombineArchiveExecutionError | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
| 201 | https://api.biosimulations.org/runs/671f7f4f953bc3bf105eaad2 | https://api.biosimulations.org/results/671f7f4f953bc3bf105eaad2/download | https://api.biosimulations.org/logs/671f7f4f953bc3bf105eaad2?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | CombineArchiveExecutionError | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
| 201 | https://api.biosimulations.org/runs/671f7f51f9c43d155d418465 | https://api.biosimulations.org/results/671f7f51f9c43d155d418465/download | https://api.biosimulations.org/logs/671f7f51f9c43d155d418465?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | CombineArchiveExecutionError | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
| 201 | https://api.biosimulations.org/runs/671f7f53b741155bbe286d56 | https://api.biosimulations.org/results/671f7f53b741155bbe286d56/download | https://api.biosimulations.org/logs/671f7f53b741155bbe286d56?includeOutput=true | ✅ PASS | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| nan | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
| 201 | https://api.biosimulations.org/runs/671f7f56b741155bbe286d59 | https://api.biosimulations.org/results/671f7f56b741155bbe286d59/download | https://api.biosimulations.org/logs/671f7f56b741155bbe286d59?includeOutput=true | ✅ PASS | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| nan | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
| 201 | https://api.biosimulations.org/runs/671f7f59b741155bbe286d5c | https://api.biosimulations.org/results/671f7f59b741155bbe286d5c/download | https://api.biosimulations.org/logs/671f7f59b741155bbe286d5c?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000 | CombineArchiveExecutionError | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
| 201 | https://api.biosimulations.org/runs/671f7f5b953bc3bf105eaaeb | https://api.biosimulations.org/results/671f7f5b953bc3bf105eaaeb/download | https://api.biosimulations.org/logs/671f7f5b953bc3bf105eaaeb?includeOutput=true | ✅ PASS | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| nan | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
| 201 | https://api.biosimulations.org/runs/671f7f5e953bc3bf105eaaf4 | https://api.biosimulations.org/results/671f7f5e953bc3bf105eaaf4/download | https://api.biosimulations.org/logs/671f7f5e953bc3bf105eaaf4?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues . | CombineArchiveExecutionError | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/671f7f60f9c43d155d41848c | https://api.biosimulations.org/results/671f7f60f9c43d155d41848c/download | https://api.biosimulations.org/logs/671f7f60f9c43d155d41848c?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/671f7f62b741155bbe286d88 | https://api.biosimulations.org/results/671f7f62b741155bbe286d88/download | https://api.biosimulations.org/logs/671f7f62b741155bbe286d88?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
| 201 | https://api.biosimulations.org/runs/671f7f64f9c43d155d4184a0 | https://api.biosimulations.org/results/671f7f64f9c43d155d4184a0/download | https://api.biosimulations.org/logs/671f7f64f9c43d155d4184a0?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/671f7f66b741155bbe286da5 | https://api.biosimulations.org/results/671f7f66b741155bbe286da5/download | https://api.biosimulations.org/logs/671f7f66b741155bbe286da5?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
| 201 | https://api.biosimulations.org/runs/671f7f69b741155bbe286db8 | https://api.biosimulations.org/results/671f7f69b741155bbe286db8/download | https://api.biosimulations.org/logs/671f7f69b741155bbe286db8?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
| CombineArchiveExecutionError | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError | +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
| 201 | https://api.biosimulations.org/runs/671f7f6bf9c43d155d4184c2 | https://api.biosimulations.org/results/671f7f6bf9c43d155d4184c2/download | https://api.biosimulations.org/logs/671f7f6bf9c43d155d4184c2?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`). | CombineArchiveExecutionError | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
| 201 | https://api.biosimulations.org/runs/671f7f6db741155bbe286dcb | https://api.biosimulations.org/results/671f7f6db741155bbe286dcb/download | https://api.biosimulations.org/logs/671f7f6db741155bbe286dcb?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
| 201 | https://api.biosimulations.org/runs/671f7f6f953bc3bf105eab39 | https://api.biosimulations.org/results/671f7f6f953bc3bf105eab39/download | https://api.biosimulations.org/logs/671f7f6f953bc3bf105eab39?includeOutput=true | ✅ PASS | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| nan | +| 19 |
vcellhttps://github.com/virtualcell/vcell
| 201 | https://api.biosimulations.org/runs/671f7f75b741155bbe286de6 | https://api.biosimulations.org/results/671f7f75b741155bbe286de6/download | https://api.biosimulations.org/logs/671f7f75b741155bbe286de6?includeOutput=true |
Noneview
download
logs

ERROR TYPE:
| | | view
download
logs | |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
| view
download
logs

ERROR TYPE:
| +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
| 201 | https://api.biosimulations.org/runs/671f7f77953bc3bf105eab72 | https://api.biosimulations.org/results/671f7f77953bc3bf105eab72/download | https://api.biosimulations.org/logs/671f7f77953bc3bf105eab72?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | \ No newline at end of file diff --git a/utils/__init__.py b/utils/__init__.py index d9f1f2f6..5eacb5df 100644 --- a/utils/__init__.py +++ b/utils/__init__.py @@ -1094,6 +1094,14 @@ def create_results_table(results, sbml_filepath, sedml_filepath, output_dir): if any([l in results[e].keys() for l in links]): results[e]['links'] = '
'.join([f'{create_hyperlink(results[e][k], title=k)}' for k in results[e].keys() if k in links]) + # # add error_message amd exception_type (if it exists) to underneath the links html on new lines + # error_info = ['error_message', 'exception_type'] + # for e in results.keys(): + # if any([l in results[e].keys() for l in links]): + # results[e]['links'] += '
' + '
'.join([f'{results[e][k]}' for k in results[e].keys() if k in error_info]) + # else: + # results[e]['links'] = '
'.join([f'{results[e][k]}' for k in results[e].keys() if k in error_info]) + # results_table = pd.DataFrame.from_dict(results).T results_table.rename(columns={"status": PASS_FAIL, "error_message": ERROR, "exception_type": TYPE}, inplace=True) @@ -1102,9 +1110,9 @@ def create_results_table(results, sbml_filepath, sedml_filepath, output_dir): # Error results_table[ERROR] = results_table.apply(lambda x: None if x[PASS_FAIL] == x[ERROR] else x[ERROR], axis=1) - results_table[ERROR] = results_table[ERROR].apply(lambda x: ansi_to_html(x)) - results_table[ERROR] = results_table[ERROR].apply(lambda x: collapsible_content(x)) + + # results_table[ERROR] = results_table[ERROR].apply(lambda x: collapsible_content(x)) results_table[PASS_FAIL] = results_table[PASS_FAIL].apply(lambda x: f'{fail_html}' if x == 'FAIL' \ else f'{pass_html}' if x == 'pass' else x) @@ -1113,9 +1121,6 @@ def create_results_table(results, sbml_filepath, sedml_filepath, output_dir): results_table[D1] = results_table[ENGINE].apply(lambda x: d1_plots_dict(output_dir).get(x, None)) results_table[D1] = results_table[D1].apply(lambda x: create_hyperlink(x,title='plot')) - if TYPE in results_table.columns: - results_table[TYPE] = results_table[TYPE].apply(lambda x: collapsible_content(x,"".join(re.findall(r'[A-Z]', x)))) - for e in ENGINES.keys(): compatibility_content = check_file_compatibility_test(e, sbml_filepath, sedml_filepath) if compatibility_content[0] == 'pass': @@ -1132,9 +1137,32 @@ def create_results_table(results, sbml_filepath, sedml_filepath, output_dir): results_table.loc[results_table[ENGINE] == e, COMPAT] = collapsible_content(compatibility_content[1], title=f'{xfail_html}') results_table.loc[results_table[ENGINE] == e, PASS_FAIL] = f'{xfail_html}' - # if links column exists add collapsible content to PASS_FAIL column - if 'links' in results_table.columns: - results_table[PASS_FAIL] = results_table.apply(lambda x: collapsible_content(x['links'], x[PASS_FAIL]), axis=1) + for e in results_table[ENGINE]: + # only if no 'pass' in pass / fail column + if results_table.loc[results_table[ENGINE] == e, PASS_FAIL].values[0] != pass_html: + if len(results_table.loc[results_table[ENGINE] == e, ERROR].values[0]) > 1: + error_message = f'

ERROR MESSAGE:
{results_table.loc[results_table[ENGINE] == e, ERROR].values[0]}' + else: + error_message = "" + if "links" in results_table.columns: + links = results_table.loc[results_table[ENGINE] == e, "links"].values[0] + else: + links = "" + if TYPE in results_table.columns: + error_type = f'

ERROR TYPE:
{results_table.loc[results_table[ENGINE] == e, TYPE].values[0]}' + else: + error_type ="" + + links_error = f'{links}{error_message}{error_type}' + results_table.loc[results_table[ENGINE] == e, "links_error"] = links_error + + # add links as collapsible content to pass fail col only if pass fail is not pass + for e in results_table[ENGINE]: + if results_table.loc[results_table[ENGINE] == e, PASS_FAIL].values[0] != pass_html: + # add collapsible content links_error to PASS_FAIL column + results_table.loc[results_table[ENGINE] == e, PASS_FAIL] = collapsible_content(results_table.loc[results_table[ENGINE] == e, "links_error"].values[0], results_table.loc[results_table[ENGINE] == e, PASS_FAIL].values[0]) + + # results_table[PASS_FAIL] = results_table.apply(lambda x: collapsible_content(x['links_error'], x[PASS_FAIL]), axis=1) # add status message defined in ENGINES results_table[ENGINE] = results_table[ENGINE].apply(lambda x: collapsible_content(f'{ENGINES[x]["url"]}
{ENGINES[x]["status"]}', x)) @@ -1266,8 +1294,6 @@ def create_combined_results_table(results_remote, ENGINE, COMPAT, f"{PASS_FAIL}{suffix_remote}", f"{PASS_FAIL}{suffix_local}", - f"{ERROR}{suffix_remote}", f"{ERROR}{suffix_local}", - f"{TYPE}{suffix_remote}", f"{D1}{suffix_remote}", f"{D1}{suffix_local}" ] From 08da4003470a4184041079bd1d02bc0cfe881b10 Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Wed, 30 Oct 2024 08:20:01 +0000 Subject: [PATCH 05/24] remove outcommented code and a few of the comments --- utils/__init__.py | 17 ++--------------- 1 file changed, 2 insertions(+), 15 deletions(-) diff --git a/utils/__init__.py b/utils/__init__.py index 5eacb5df..6f9598b6 100644 --- a/utils/__init__.py +++ b/utils/__init__.py @@ -1094,14 +1094,6 @@ def create_results_table(results, sbml_filepath, sedml_filepath, output_dir): if any([l in results[e].keys() for l in links]): results[e]['links'] = '
'.join([f'{create_hyperlink(results[e][k], title=k)}' for k in results[e].keys() if k in links]) - # # add error_message amd exception_type (if it exists) to underneath the links html on new lines - # error_info = ['error_message', 'exception_type'] - # for e in results.keys(): - # if any([l in results[e].keys() for l in links]): - # results[e]['links'] += '
' + '
'.join([f'{results[e][k]}' for k in results[e].keys() if k in error_info]) - # else: - # results[e]['links'] = '
'.join([f'{results[e][k]}' for k in results[e].keys() if k in error_info]) - # results_table = pd.DataFrame.from_dict(results).T results_table.rename(columns={"status": PASS_FAIL, "error_message": ERROR, "exception_type": TYPE}, inplace=True) @@ -1112,8 +1104,6 @@ def create_results_table(results, sbml_filepath, sedml_filepath, output_dir): results_table[ERROR] = results_table.apply(lambda x: None if x[PASS_FAIL] == x[ERROR] else x[ERROR], axis=1) results_table[ERROR] = results_table[ERROR].apply(lambda x: ansi_to_html(x)) - # results_table[ERROR] = results_table[ERROR].apply(lambda x: collapsible_content(x)) - results_table[PASS_FAIL] = results_table[PASS_FAIL].apply(lambda x: f'{fail_html}' if x == 'FAIL' \ else f'{pass_html}' if x == 'pass' else x) @@ -1138,7 +1128,7 @@ def create_results_table(results, sbml_filepath, sedml_filepath, output_dir): results_table.loc[results_table[ENGINE] == e, PASS_FAIL] = f'{xfail_html}' for e in results_table[ENGINE]: - # only if no 'pass' in pass / fail column + # only if no 'pass' in pass / fail column add error messages to links_error if results_table.loc[results_table[ENGINE] == e, PASS_FAIL].values[0] != pass_html: if len(results_table.loc[results_table[ENGINE] == e, ERROR].values[0]) > 1: error_message = f'

ERROR MESSAGE:
{results_table.loc[results_table[ENGINE] == e, ERROR].values[0]}' @@ -1156,14 +1146,11 @@ def create_results_table(results, sbml_filepath, sedml_filepath, output_dir): links_error = f'{links}{error_message}{error_type}' results_table.loc[results_table[ENGINE] == e, "links_error"] = links_error - # add links as collapsible content to pass fail col only if pass fail is not pass + # add links as collapsible content to pass / fail column for e in results_table[ENGINE]: if results_table.loc[results_table[ENGINE] == e, PASS_FAIL].values[0] != pass_html: - # add collapsible content links_error to PASS_FAIL column results_table.loc[results_table[ENGINE] == e, PASS_FAIL] = collapsible_content(results_table.loc[results_table[ENGINE] == e, "links_error"].values[0], results_table.loc[results_table[ENGINE] == e, PASS_FAIL].values[0]) - # results_table[PASS_FAIL] = results_table.apply(lambda x: collapsible_content(x['links_error'], x[PASS_FAIL]), axis=1) - # add status message defined in ENGINES results_table[ENGINE] = results_table[ENGINE].apply(lambda x: collapsible_content(f'{ENGINES[x]["url"]}
{ENGINES[x]["status"]}', x)) From 30f36a2b4a8e4fad2ceb756ad00a86978f66fb7d Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Wed, 30 Oct 2024 09:40:26 +0000 Subject: [PATCH 06/24] update biosimulator functions to accept engine keys and add handling of max steps reached cases (eg amici) --- .../results_compatibility_biosimulators.md | 46 ++--- SBML/tests/results_remote.json | 195 ++++++++++-------- SBML/tests/results_remote.md | 46 ++--- SBML/tests/test_biosimulators_remote.py | 5 +- .../tests/test_compatibility_biosimulators.py | 5 +- utils/__init__.py | 37 +++- 6 files changed, 190 insertions(+), 144 deletions(-) diff --git a/SBML/tests/results_compatibility_biosimulators.md b/SBML/tests/results_compatibility_biosimulators.md index 1e24c0ba..11b85548 100644 --- a/SBML/tests/results_compatibility_biosimulators.md +++ b/SBML/tests/results_compatibility_biosimulators.md @@ -1,23 +1,23 @@ -| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | -|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
| ✅ PASS | ✅ PASS | plot | plot | -| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1```
| plot | plot | -| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1```
| plot | plot | -| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1```
| | | -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1```
| plot | plot | -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1```
| plot | plot | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| ✅ PASS | ✅ PASS | plot | plot | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| ✅ PASS | ✅ PASS | plot | plot | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1```
| plot | plot | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| ✅ PASS | ✅ PASS | plot | plot | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1```
| plot | plot | -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1```
| | | -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1```
| | | -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1```
| | | -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1```
| | | -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1```
| plot | plot | -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1```
| plot | plot | -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1```
| | | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| ✅ PASS | ✅ PASS | plot | plot | -| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
Noneview
download
logs

ERROR TYPE:
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1```
| | | -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1```
| | | \ No newline at end of file +| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | +|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------| +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
|
⚠ WARNINGview
download
logs

ERROR MESSAGE:
Reached maximum number of steps

ERROR TYPE:
| ✅ PASS | plot | plot | +| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1```
| plot | plot | +| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1```
| plot | plot | +| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1```
| | | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1```
| plot | plot | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1```
| plot | plot | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| ✅ PASS | ✅ PASS | plot | plot | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| ✅ PASS | ✅ PASS | plot | plot | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1```
| plot | plot | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| ✅ PASS | ✅ PASS | plot | plot | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W

ERROR TYPE:
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1```
| plot | plot | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1```
| | | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1```
| | | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1```
| | | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1```
| | | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1```
| plot | plot | +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1```
| plot | plot | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1```
| | | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| ✅ PASS | ✅ PASS | plot | plot | +| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
Noneview
download
logs

ERROR TYPE:
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1```
| | | +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1```
| | | \ No newline at end of file diff --git a/SBML/tests/results_remote.json b/SBML/tests/results_remote.json index 46d63e11..f110b8ed 100644 --- a/SBML/tests/results_remote.json +++ b/SBML/tests/results_remote.json @@ -1,191 +1,212 @@ { "amici": { "response": 201, - "view": "https://api.biosimulations.org/runs/671f7f46f9c43d155d41845a", - "download": "https://api.biosimulations.org/results/671f7f46f9c43d155d41845a/download", - "logs": "https://api.biosimulations.org/logs/671f7f46f9c43d155d41845a?includeOutput=true", - "status": "pass", - "error_message": "", - "exception_type": "" + "view": "https://api.biosimulations.org/runs/6721fb8f953bc3bf105ed9d4", + "download": "https://api.biosimulations.org/results/6721fb8f953bc3bf105ed9d4/download", + "logs": "https://api.biosimulations.org/logs/6721fb8f953bc3bf105ed9d4?includeOutput=true", + "status": "WARNING", + "error_message": "Reached maximum number of steps", + "exception_type": "", + "tasks_output": "" }, "brian2": { "response": 201, - "view": "https://api.biosimulations.org/runs/671f7f48f9c43d155d41845d", - "download": "https://api.biosimulations.org/results/671f7f48f9c43d155d41845d/download", - "logs": "https://api.biosimulations.org/logs/671f7f48f9c43d155d41845d?includeOutput=true", + "view": "https://api.biosimulations.org/runs/6721fb90f9c43d155d41b539", + "download": "https://api.biosimulations.org/results/6721fb90f9c43d155d41b539/download", + "logs": "https://api.biosimulations.org/logs/6721fb90f9c43d155d41b539?includeOutput=true", "status": "FAIL", "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError" + "exception_type": "", + "tasks_output": "" }, "bionetgen": { "response": 201, - "view": "https://api.biosimulations.org/runs/671f7f4a953bc3bf105eaace", - "download": "https://api.biosimulations.org/results/671f7f4a953bc3bf105eaace/download", - "logs": "https://api.biosimulations.org/logs/671f7f4a953bc3bf105eaace?includeOutput=true", + "view": "https://api.biosimulations.org/runs/6721fb92953bc3bf105ed9da", + "download": "https://api.biosimulations.org/results/6721fb92953bc3bf105ed9da/download", + "logs": "https://api.biosimulations.org/logs/6721fb92953bc3bf105ed9da?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).", - "exception_type": "CombineArchiveExecutionError" + "exception_type": "", + "tasks_output": "" }, "boolnet": { "response": 201, - "view": "https://api.biosimulations.org/runs/671f7f4db741155bbe286d4d", - "download": "https://api.biosimulations.org/results/671f7f4db741155bbe286d4d/download", - "logs": "https://api.biosimulations.org/logs/671f7f4db741155bbe286d4d?includeOutput=true", + "view": "https://api.biosimulations.org/runs/6721fb94953bc3bf105ed9de", + "download": "https://api.biosimulations.org/results/6721fb94953bc3bf105ed9de/download", + "logs": "https://api.biosimulations.org/logs/6721fb94953bc3bf105ed9de?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).", - "exception_type": "CombineArchiveExecutionError" + "exception_type": "", + "tasks_output": "" }, "cbmpy": { "response": 201, - "view": "https://api.biosimulations.org/runs/671f7f4f953bc3bf105eaad2", - "download": "https://api.biosimulations.org/results/671f7f4f953bc3bf105eaad2/download", - "logs": "https://api.biosimulations.org/logs/671f7f4f953bc3bf105eaad2?includeOutput=true", + "view": "https://api.biosimulations.org/runs/6721fb96953bc3bf105ed9e1", + "download": "https://api.biosimulations.org/results/6721fb96953bc3bf105ed9e1/download", + "logs": "https://api.biosimulations.org/logs/6721fb96953bc3bf105ed9e1?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", - "exception_type": "CombineArchiveExecutionError" + "exception_type": "", + "tasks_output": "" }, "cobrapy": { "response": 201, - "view": "https://api.biosimulations.org/runs/671f7f51f9c43d155d418465", - "download": "https://api.biosimulations.org/results/671f7f51f9c43d155d418465/download", - "logs": "https://api.biosimulations.org/logs/671f7f51f9c43d155d418465?includeOutput=true", + "view": "https://api.biosimulations.org/runs/6721fb982e0c0591a7c87a07", + "download": "https://api.biosimulations.org/results/6721fb982e0c0591a7c87a07/download", + "logs": "https://api.biosimulations.org/logs/6721fb982e0c0591a7c87a07?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", - "exception_type": "CombineArchiveExecutionError" + "exception_type": "", + "tasks_output": "" }, "copasi": { "response": 201, - "view": "https://api.biosimulations.org/runs/671f7f53b741155bbe286d56", - "download": "https://api.biosimulations.org/results/671f7f53b741155bbe286d56/download", - "logs": "https://api.biosimulations.org/logs/671f7f53b741155bbe286d56?includeOutput=true", + "view": "https://api.biosimulations.org/runs/6721fb9a2e0c0591a7c87a0a", + "download": "https://api.biosimulations.org/results/6721fb9a2e0c0591a7c87a0a/download", + "logs": "https://api.biosimulations.org/logs/6721fb9a2e0c0591a7c87a0a?includeOutput=true", "status": "pass", "error_message": "", - "exception_type": "" + "exception_type": "", + "tasks_output": "" }, "gillespy2": { "response": 201, - "view": "https://api.biosimulations.org/runs/671f7f56b741155bbe286d59", - "download": "https://api.biosimulations.org/results/671f7f56b741155bbe286d59/download", - "logs": "https://api.biosimulations.org/logs/671f7f56b741155bbe286d59?includeOutput=true", + "view": "https://api.biosimulations.org/runs/6721fb9c2e0c0591a7c87a11", + "download": "https://api.biosimulations.org/results/6721fb9c2e0c0591a7c87a11/download", + "logs": "https://api.biosimulations.org/logs/6721fb9c2e0c0591a7c87a11?includeOutput=true", "status": "pass", "error_message": "", - "exception_type": "" + "exception_type": "", + "tasks_output": "" }, "ginsim": { "response": 201, - "view": "https://api.biosimulations.org/runs/671f7f59b741155bbe286d5c", - "download": "https://api.biosimulations.org/results/671f7f59b741155bbe286d5c/download", - "logs": "https://api.biosimulations.org/logs/671f7f59b741155bbe286d5c?includeOutput=true", + "view": "https://api.biosimulations.org/runs/6721fb9ef9c43d155d41b544", + "download": "https://api.biosimulations.org/results/6721fb9ef9c43d155d41b544/download", + "logs": "https://api.biosimulations.org/logs/6721fb9ef9c43d155d41b544?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000", - "exception_type": "CombineArchiveExecutionError" + "exception_type": "", + "tasks_output": "" }, "libsbmlsim": { "response": 201, - "view": "https://api.biosimulations.org/runs/671f7f5b953bc3bf105eaaeb", - "download": "https://api.biosimulations.org/results/671f7f5b953bc3bf105eaaeb/download", - "logs": "https://api.biosimulations.org/logs/671f7f5b953bc3bf105eaaeb?includeOutput=true", + "view": "https://api.biosimulations.org/runs/6721fba0f9c43d155d41b548", + "download": "https://api.biosimulations.org/results/6721fba0f9c43d155d41b548/download", + "logs": "https://api.biosimulations.org/logs/6721fba0f9c43d155d41b548?includeOutput=true", "status": "pass", "error_message": "", - "exception_type": "" + "exception_type": "", + "tasks_output": "" }, "masspy": { "response": 201, - "view": "https://api.biosimulations.org/runs/671f7f5e953bc3bf105eaaf4", - "download": "https://api.biosimulations.org/results/671f7f5e953bc3bf105eaaf4/download", - "logs": "https://api.biosimulations.org/logs/671f7f5e953bc3bf105eaaf4?includeOutput=true", + "view": "https://api.biosimulations.org/runs/6721fba2953bc3bf105ed9f2", + "download": "https://api.biosimulations.org/results/6721fba2953bc3bf105ed9f2/download", + "logs": "https://api.biosimulations.org/logs/6721fba2953bc3bf105ed9f2?includeOutput=true", "status": "FAIL", - "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .\n \t`(model, errors) = validate_sbml_model(filename)`\n If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .", - "exception_type": "CombineArchiveExecutionError" + "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n The following targets are not supported:\n - /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']\n - /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']\n - /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']\n - /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']\n \n Only following targets are supported:\n - I\n - SEC\n - V\n - W", + "exception_type": "", + "tasks_output": "" }, "netpyne": { "response": 201, - "view": "https://api.biosimulations.org/runs/671f7f60f9c43d155d41848c", - "download": "https://api.biosimulations.org/results/671f7f60f9c43d155d41848c/download", - "logs": "https://api.biosimulations.org/logs/671f7f60f9c43d155d41848c?includeOutput=true", + "view": "https://api.biosimulations.org/runs/6721fba4953bc3bf105ed9fc", + "download": "https://api.biosimulations.org/results/6721fba4953bc3bf105ed9fc/download", + "logs": "https://api.biosimulations.org/logs/6721fba4953bc3bf105ed9fc?includeOutput=true", "status": "FAIL", "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError" + "exception_type": "", + "tasks_output": "" }, "neuron": { "response": 201, - "view": "https://api.biosimulations.org/runs/671f7f62b741155bbe286d88", - "download": "https://api.biosimulations.org/results/671f7f62b741155bbe286d88/download", - "logs": "https://api.biosimulations.org/logs/671f7f62b741155bbe286d88?includeOutput=true", + "view": "https://api.biosimulations.org/runs/6721fba5f9c43d155d41b55e", + "download": "https://api.biosimulations.org/results/6721fba5f9c43d155d41b55e/download", + "logs": "https://api.biosimulations.org/logs/6721fba5f9c43d155d41b55e?includeOutput=true", "status": "FAIL", "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError" + "exception_type": "", + "tasks_output": "" }, "opencor": { "response": 201, - "view": "https://api.biosimulations.org/runs/671f7f64f9c43d155d4184a0", - "download": "https://api.biosimulations.org/results/671f7f64f9c43d155d4184a0/download", - "logs": "https://api.biosimulations.org/logs/671f7f64f9c43d155d4184a0?includeOutput=true", + "view": "https://api.biosimulations.org/runs/6721fba7f9c43d155d41b56b", + "download": "https://api.biosimulations.org/results/6721fba7f9c43d155d41b56b/download", + "logs": "https://api.biosimulations.org/logs/6721fba7f9c43d155d41b56b?includeOutput=true", "status": "FAIL", "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError" + "exception_type": "", + "tasks_output": "" }, "pyneuroml": { "response": 201, - "view": "https://api.biosimulations.org/runs/671f7f66b741155bbe286da5", - "download": "https://api.biosimulations.org/results/671f7f66b741155bbe286da5/download", - "logs": "https://api.biosimulations.org/logs/671f7f66b741155bbe286da5?includeOutput=true", + "view": "https://api.biosimulations.org/runs/6721fba92e0c0591a7c87a43", + "download": "https://api.biosimulations.org/results/6721fba92e0c0591a7c87a43/download", + "logs": "https://api.biosimulations.org/logs/6721fba92e0c0591a7c87a43?includeOutput=true", "status": "FAIL", "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError" + "exception_type": "", + "tasks_output": "" }, "pysces": { "response": 201, - "view": "https://api.biosimulations.org/runs/671f7f69b741155bbe286db8", - "download": "https://api.biosimulations.org/results/671f7f69b741155bbe286db8/download", - "logs": "https://api.biosimulations.org/logs/671f7f69b741155bbe286db8?includeOutput=true", + "view": "https://api.biosimulations.org/runs/6721fbaa2e0c0591a7c87a51", + "download": "https://api.biosimulations.org/results/6721fbaa2e0c0591a7c87a51/download", + "logs": "https://api.biosimulations.org/logs/6721fbaa2e0c0591a7c87a51?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", - "exception_type": "CombineArchiveExecutionError" + "exception_type": "", + "tasks_output": "" }, "rbapy": { "response": 201, - "view": "https://api.biosimulations.org/runs/671f7f6bf9c43d155d4184c2", - "download": "https://api.biosimulations.org/results/671f7f6bf9c43d155d4184c2/download", - "logs": "https://api.biosimulations.org/logs/671f7f6bf9c43d155d4184c2?includeOutput=true", + "view": "https://api.biosimulations.org/runs/6721fbac953bc3bf105eda20", + "download": "https://api.biosimulations.org/results/6721fbac953bc3bf105eda20/download", + "logs": "https://api.biosimulations.org/logs/6721fbac953bc3bf105eda20?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).", - "exception_type": "CombineArchiveExecutionError" + "exception_type": "", + "tasks_output": "" }, "smoldyn": { "response": 201, - "view": "https://api.biosimulations.org/runs/671f7f6db741155bbe286dcb", - "download": "https://api.biosimulations.org/results/671f7f6db741155bbe286dcb/download", - "logs": "https://api.biosimulations.org/logs/671f7f6db741155bbe286dcb?includeOutput=true", + "view": "https://api.biosimulations.org/runs/6721fbae2e0c0591a7c87a5a", + "download": "https://api.biosimulations.org/results/6721fbae2e0c0591a7c87a5a/download", + "logs": "https://api.biosimulations.org/logs/6721fbae2e0c0591a7c87a5a?includeOutput=true", "status": "FAIL", "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError" + "exception_type": "", + "tasks_output": "" }, "tellurium": { "response": 201, - "view": "https://api.biosimulations.org/runs/671f7f6f953bc3bf105eab39", - "download": "https://api.biosimulations.org/results/671f7f6f953bc3bf105eab39/download", - "logs": "https://api.biosimulations.org/logs/671f7f6f953bc3bf105eab39?includeOutput=true", + "view": "https://api.biosimulations.org/runs/6721fbaf953bc3bf105eda33", + "download": "https://api.biosimulations.org/results/6721fbaf953bc3bf105eda33/download", + "logs": "https://api.biosimulations.org/logs/6721fbaf953bc3bf105eda33?includeOutput=true", "status": "pass", "error_message": "", - "exception_type": "" + "exception_type": "", + "tasks_output": "" }, "vcell": { "response": 201, - "view": "https://api.biosimulations.org/runs/671f7f75b741155bbe286de6", - "download": "https://api.biosimulations.org/results/671f7f75b741155bbe286de6/download", - "logs": "https://api.biosimulations.org/logs/671f7f75b741155bbe286de6?includeOutput=true", + "view": "https://api.biosimulations.org/runs/6721fbb2f9c43d155d41b5a6", + "download": "https://api.biosimulations.org/results/6721fbb2f9c43d155d41b5a6/download", + "logs": "https://api.biosimulations.org/logs/6721fbb2f9c43d155d41b5a6?includeOutput=true", "status": null, "error_message": "", - "exception_type": "" + "exception_type": "", + "tasks_output": "" }, "xpp": { "response": 201, - "view": "https://api.biosimulations.org/runs/671f7f77953bc3bf105eab72", - "download": "https://api.biosimulations.org/results/671f7f77953bc3bf105eab72/download", - "logs": "https://api.biosimulations.org/logs/671f7f77953bc3bf105eab72?includeOutput=true", + "view": "https://api.biosimulations.org/runs/6721fbb4953bc3bf105eda4c", + "download": "https://api.biosimulations.org/results/6721fbb4953bc3bf105eda4c/download", + "logs": "https://api.biosimulations.org/logs/6721fbb4953bc3bf105eda4c?includeOutput=true", "status": "FAIL", "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError" + "exception_type": "", + "tasks_output": "" } } \ No newline at end of file diff --git a/SBML/tests/results_remote.md b/SBML/tests/results_remote.md index 2a00fe53..2ff68d00 100644 --- a/SBML/tests/results_remote.md +++ b/SBML/tests/results_remote.md @@ -1,23 +1,23 @@ -| | Engine | response | view | download | logs | pass / FAIL | Error | Type | links | d1 | Compatibility | links_error | -|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|-----------:|:-------------------------------------------------------------|:-------------------------------------------------------------------------|:--------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
| 201 | https://api.biosimulations.org/runs/671f7f46f9c43d155d41845a | https://api.biosimulations.org/results/671f7f46f9c43d155d41845a/download | https://api.biosimulations.org/logs/671f7f46f9c43d155d41845a?includeOutput=true | ✅ PASS | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
| nan | -| 1 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/671f7f48f9c43d155d41845d | https://api.biosimulations.org/results/671f7f48f9c43d155d41845d/download | https://api.biosimulations.org/logs/671f7f48f9c43d155d41845d?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 2 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
| 201 | https://api.biosimulations.org/runs/671f7f4a953bc3bf105eaace | https://api.biosimulations.org/results/671f7f4a953bc3bf105eaace/download | https://api.biosimulations.org/logs/671f7f4a953bc3bf105eaace?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`). | CombineArchiveExecutionError | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError | -| 3 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
| 201 | https://api.biosimulations.org/runs/671f7f4db741155bbe286d4d | https://api.biosimulations.org/results/671f7f4db741155bbe286d4d/download | https://api.biosimulations.org/logs/671f7f4db741155bbe286d4d?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0). | CombineArchiveExecutionError | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError | -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
| 201 | https://api.biosimulations.org/runs/671f7f4f953bc3bf105eaad2 | https://api.biosimulations.org/results/671f7f4f953bc3bf105eaad2/download | https://api.biosimulations.org/logs/671f7f4f953bc3bf105eaad2?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | CombineArchiveExecutionError | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
| 201 | https://api.biosimulations.org/runs/671f7f51f9c43d155d418465 | https://api.biosimulations.org/results/671f7f51f9c43d155d418465/download | https://api.biosimulations.org/logs/671f7f51f9c43d155d418465?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | CombineArchiveExecutionError | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
| 201 | https://api.biosimulations.org/runs/671f7f53b741155bbe286d56 | https://api.biosimulations.org/results/671f7f53b741155bbe286d56/download | https://api.biosimulations.org/logs/671f7f53b741155bbe286d56?includeOutput=true | ✅ PASS | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| nan | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
| 201 | https://api.biosimulations.org/runs/671f7f56b741155bbe286d59 | https://api.biosimulations.org/results/671f7f56b741155bbe286d59/download | https://api.biosimulations.org/logs/671f7f56b741155bbe286d59?includeOutput=true | ✅ PASS | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| nan | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
| 201 | https://api.biosimulations.org/runs/671f7f59b741155bbe286d5c | https://api.biosimulations.org/results/671f7f59b741155bbe286d5c/download | https://api.biosimulations.org/logs/671f7f59b741155bbe286d5c?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000 | CombineArchiveExecutionError | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
| 201 | https://api.biosimulations.org/runs/671f7f5b953bc3bf105eaaeb | https://api.biosimulations.org/results/671f7f5b953bc3bf105eaaeb/download | https://api.biosimulations.org/logs/671f7f5b953bc3bf105eaaeb?includeOutput=true | ✅ PASS | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| nan | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
| 201 | https://api.biosimulations.org/runs/671f7f5e953bc3bf105eaaf4 | https://api.biosimulations.org/results/671f7f5e953bc3bf105eaaf4/download | https://api.biosimulations.org/logs/671f7f5e953bc3bf105eaaf4?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues . | CombineArchiveExecutionError | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError | -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/671f7f60f9c43d155d41848c | https://api.biosimulations.org/results/671f7f60f9c43d155d41848c/download | https://api.biosimulations.org/logs/671f7f60f9c43d155d41848c?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/671f7f62b741155bbe286d88 | https://api.biosimulations.org/results/671f7f62b741155bbe286d88/download | https://api.biosimulations.org/logs/671f7f62b741155bbe286d88?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
| 201 | https://api.biosimulations.org/runs/671f7f64f9c43d155d4184a0 | https://api.biosimulations.org/results/671f7f64f9c43d155d4184a0/download | https://api.biosimulations.org/logs/671f7f64f9c43d155d4184a0?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/671f7f66b741155bbe286da5 | https://api.biosimulations.org/results/671f7f66b741155bbe286da5/download | https://api.biosimulations.org/logs/671f7f66b741155bbe286da5?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
| 201 | https://api.biosimulations.org/runs/671f7f69b741155bbe286db8 | https://api.biosimulations.org/results/671f7f69b741155bbe286db8/download | https://api.biosimulations.org/logs/671f7f69b741155bbe286db8?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
| CombineArchiveExecutionError | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError | -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
| 201 | https://api.biosimulations.org/runs/671f7f6bf9c43d155d4184c2 | https://api.biosimulations.org/results/671f7f6bf9c43d155d4184c2/download | https://api.biosimulations.org/logs/671f7f6bf9c43d155d4184c2?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`). | CombineArchiveExecutionError | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError | -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
| 201 | https://api.biosimulations.org/runs/671f7f6db741155bbe286dcb | https://api.biosimulations.org/results/671f7f6db741155bbe286dcb/download | https://api.biosimulations.org/logs/671f7f6db741155bbe286dcb?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
| 201 | https://api.biosimulations.org/runs/671f7f6f953bc3bf105eab39 | https://api.biosimulations.org/results/671f7f6f953bc3bf105eab39/download | https://api.biosimulations.org/logs/671f7f6f953bc3bf105eab39?includeOutput=true | ✅ PASS | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| nan | -| 19 |
vcellhttps://github.com/virtualcell/vcell
| 201 | https://api.biosimulations.org/runs/671f7f75b741155bbe286de6 | https://api.biosimulations.org/results/671f7f75b741155bbe286de6/download | https://api.biosimulations.org/logs/671f7f75b741155bbe286de6?includeOutput=true |
Noneview
download
logs

ERROR TYPE:
| | | view
download
logs | |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
| view
download
logs

ERROR TYPE:
| -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
| 201 | https://api.biosimulations.org/runs/671f7f77953bc3bf105eab72 | https://api.biosimulations.org/results/671f7f77953bc3bf105eab72/download | https://api.biosimulations.org/logs/671f7f77953bc3bf105eab72?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | \ No newline at end of file +| | Engine | response | view | download | logs | pass / FAIL | Error | Type | tasks_output | links | d1 | Compatibility | links_error | +|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|-----------:|:-------------------------------------------------------------|:-------------------------------------------------------------------------|:--------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------|:---------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
| 201 | https://api.biosimulations.org/runs/6721fb8f953bc3bf105ed9d4 | https://api.biosimulations.org/results/6721fb8f953bc3bf105ed9d4/download | https://api.biosimulations.org/logs/6721fb8f953bc3bf105ed9d4?includeOutput=true |
⚠ WARNINGview
download
logs

ERROR MESSAGE:
Reached maximum number of steps

ERROR TYPE:
| Reached maximum number of steps | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
| view
download
logs

ERROR MESSAGE:
Reached maximum number of steps

ERROR TYPE:
| +| 1 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/6721fb90f9c43d155d41b539 | https://api.biosimulations.org/results/6721fb90f9c43d155d41b539/download | https://api.biosimulations.org/logs/6721fb90f9c43d155d41b539?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
| +| 2 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
| 201 | https://api.biosimulations.org/runs/6721fb92953bc3bf105ed9da | https://api.biosimulations.org/results/6721fb92953bc3bf105ed9da/download | https://api.biosimulations.org/logs/6721fb92953bc3bf105ed9da?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`). | | | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
| +| 3 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
| 201 | https://api.biosimulations.org/runs/6721fb94953bc3bf105ed9de | https://api.biosimulations.org/results/6721fb94953bc3bf105ed9de/download | https://api.biosimulations.org/logs/6721fb94953bc3bf105ed9de?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0). | | | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
| +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
| 201 | https://api.biosimulations.org/runs/6721fb96953bc3bf105ed9e1 | https://api.biosimulations.org/results/6721fb96953bc3bf105ed9e1/download | https://api.biosimulations.org/logs/6721fb96953bc3bf105ed9e1?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
| +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
| 201 | https://api.biosimulations.org/runs/6721fb982e0c0591a7c87a07 | https://api.biosimulations.org/results/6721fb982e0c0591a7c87a07/download | https://api.biosimulations.org/logs/6721fb982e0c0591a7c87a07?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
| +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
| 201 | https://api.biosimulations.org/runs/6721fb9a2e0c0591a7c87a0a | https://api.biosimulations.org/results/6721fb9a2e0c0591a7c87a0a/download | https://api.biosimulations.org/logs/6721fb9a2e0c0591a7c87a0a?includeOutput=true | ✅ PASS | | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| nan | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
| 201 | https://api.biosimulations.org/runs/6721fb9c2e0c0591a7c87a11 | https://api.biosimulations.org/results/6721fb9c2e0c0591a7c87a11/download | https://api.biosimulations.org/logs/6721fb9c2e0c0591a7c87a11?includeOutput=true | ✅ PASS | | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| nan | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
| 201 | https://api.biosimulations.org/runs/6721fb9ef9c43d155d41b544 | https://api.biosimulations.org/results/6721fb9ef9c43d155d41b544/download | https://api.biosimulations.org/logs/6721fb9ef9c43d155d41b544?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000 | | | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
| +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
| 201 | https://api.biosimulations.org/runs/6721fba0f9c43d155d41b548 | https://api.biosimulations.org/results/6721fba0f9c43d155d41b548/download | https://api.biosimulations.org/logs/6721fba0f9c43d155d41b548?includeOutput=true | ✅ PASS | | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| nan | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
| 201 | https://api.biosimulations.org/runs/6721fba2953bc3bf105ed9f2 | https://api.biosimulations.org/results/6721fba2953bc3bf105ed9f2/download | https://api.biosimulations.org/logs/6721fba2953bc3bf105ed9f2?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W

ERROR TYPE:
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W

ERROR TYPE:
| +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/6721fba4953bc3bf105ed9fc | https://api.biosimulations.org/results/6721fba4953bc3bf105ed9fc/download | https://api.biosimulations.org/logs/6721fba4953bc3bf105ed9fc?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
| +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/6721fba5f9c43d155d41b55e | https://api.biosimulations.org/results/6721fba5f9c43d155d41b55e/download | https://api.biosimulations.org/logs/6721fba5f9c43d155d41b55e?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
| +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
| 201 | https://api.biosimulations.org/runs/6721fba7f9c43d155d41b56b | https://api.biosimulations.org/results/6721fba7f9c43d155d41b56b/download | https://api.biosimulations.org/logs/6721fba7f9c43d155d41b56b?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
| +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/6721fba92e0c0591a7c87a43 | https://api.biosimulations.org/results/6721fba92e0c0591a7c87a43/download | https://api.biosimulations.org/logs/6721fba92e0c0591a7c87a43?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
| +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
| 201 | https://api.biosimulations.org/runs/6721fbaa2e0c0591a7c87a51 | https://api.biosimulations.org/results/6721fbaa2e0c0591a7c87a51/download | https://api.biosimulations.org/logs/6721fbaa2e0c0591a7c87a51?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
| +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
| 201 | https://api.biosimulations.org/runs/6721fbac953bc3bf105eda20 | https://api.biosimulations.org/results/6721fbac953bc3bf105eda20/download | https://api.biosimulations.org/logs/6721fbac953bc3bf105eda20?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`). | | | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
| +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
| 201 | https://api.biosimulations.org/runs/6721fbae2e0c0591a7c87a5a | https://api.biosimulations.org/results/6721fbae2e0c0591a7c87a5a/download | https://api.biosimulations.org/logs/6721fbae2e0c0591a7c87a5a?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
| +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
| 201 | https://api.biosimulations.org/runs/6721fbaf953bc3bf105eda33 | https://api.biosimulations.org/results/6721fbaf953bc3bf105eda33/download | https://api.biosimulations.org/logs/6721fbaf953bc3bf105eda33?includeOutput=true | ✅ PASS | | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| nan | +| 19 |
vcellhttps://github.com/virtualcell/vcell
| 201 | https://api.biosimulations.org/runs/6721fbb2f9c43d155d41b5a6 | https://api.biosimulations.org/results/6721fbb2f9c43d155d41b5a6/download | https://api.biosimulations.org/logs/6721fbb2f9c43d155d41b5a6?includeOutput=true |
Noneview
download
logs

ERROR TYPE:
| | | | view
download
logs | |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
| view
download
logs

ERROR TYPE:
| +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
| 201 | https://api.biosimulations.org/runs/6721fbb4953bc3bf105eda4c | https://api.biosimulations.org/results/6721fbb4953bc3bf105eda4c/download | https://api.biosimulations.org/logs/6721fbb4953bc3bf105eda4c?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
| \ No newline at end of file diff --git a/SBML/tests/test_biosimulators_remote.py b/SBML/tests/test_biosimulators_remote.py index a4971edb..b494bf0b 100644 --- a/SBML/tests/test_biosimulators_remote.py +++ b/SBML/tests/test_biosimulators_remote.py @@ -13,6 +13,7 @@ import argparse import json + # Save the current working directory cwd = os.getcwd() print('Current working directory:', cwd) @@ -39,7 +40,9 @@ print('d1 plots will be saved in:', d1_plots_remote_dir) -results_remote = utils.run_biosimulators_remotely(sedml_file_name=sedml_file_name, +engine_keys = list(utils.ENGINES.keys()) + +results_remote = utils.run_biosimulators_remotely(engine_keys, sedml_file_name=sedml_file_name, sbml_file_name=sbml_file_name, d1_plots_remote_dir=d1_plots_remote_dir, test_folder=test_folder) diff --git a/SBML/tests/test_compatibility_biosimulators.py b/SBML/tests/test_compatibility_biosimulators.py index 07bafd33..e712c0b8 100644 --- a/SBML/tests/test_compatibility_biosimulators.py +++ b/SBML/tests/test_compatibility_biosimulators.py @@ -42,7 +42,10 @@ print('d1 plots will be saved in:', d1_plots_remote_dir, 'and', d1_plots_local_dir) -utils.run_biosimulators_remotely_and_locally(sedml_file_name, +engine_keys = list(utils.ENGINES.keys()) + +utils.run_biosimulators_remotely_and_locally(engine_keys, + sedml_file_name, sbml_file_name, d1_plots_remote_dir, d1_plots_local_dir, diff --git a/utils/__init__.py b/utils/__init__.py index 6f9598b6..86c8956f 100644 --- a/utils/__init__.py +++ b/utils/__init__.py @@ -1105,7 +1105,9 @@ def create_results_table(results, sbml_filepath, sedml_filepath, output_dir): results_table[ERROR] = results_table[ERROR].apply(lambda x: ansi_to_html(x)) results_table[PASS_FAIL] = results_table[PASS_FAIL].apply(lambda x: f'{fail_html}' if x == 'FAIL' \ - else f'{pass_html}' if x == 'pass' else x) + else f'{pass_html}' if x == 'pass' + else f'{warning_html}' if x == 'WARNING' + else x) # d1 plot clickable link results_table[D1] = results_table[ENGINE].apply(lambda x: d1_plots_dict(output_dir).get(x, None)) @@ -1157,18 +1159,21 @@ def create_results_table(results, sbml_filepath, sedml_filepath, output_dir): return results_table -def run_biosimulators_remotely(sedml_file_name, +def run_biosimulators_remotely(engine_keys, + sedml_file_name, sbml_file_name, d1_plots_remote_dir, test_folder='tests'): """ run with directory pointing towards the location of the sedml and sbml files""" + engines = {k: v for k, v in ENGINES.items() if k in engine_keys} + remote_output_dir = 'remote_results' remote_output_dir = os.path.join(test_folder, remote_output_dir) results_remote = dict() - for e in ENGINES.keys(): + for e in engines.keys(): results_remote[e] = run_biosimulators_remote(e, sedml_file_name, sbml_file_name) results_remote[e]['response'] = results_remote[e]['response'].status_code @@ -1185,6 +1190,7 @@ def run_biosimulators_remotely(sedml_file_name, status = "" error_message = "" exception_type = "" + task_output = "" log_yml_path = find_file_in_dir('log.yml', extract_dir)[0] if not log_yml_path: @@ -1193,18 +1199,25 @@ def run_biosimulators_remotely(sedml_file_name, continue with open(log_yml_path) as f: log_yml_dict = yaml.safe_load(f) + log_yml_str = str(log_yml_dict) if log_yml_dict['status'] == 'SUCCEEDED': status = 'pass' + # to deal with cases like amici where the d1 plot max x is half the expected value + pattern_max_number_of_steps = "simulation failed: Reached maximum number of steps" + pattern_match = re.search(pattern_max_number_of_steps, log_yml_str) + if pattern_match: + status = 'WARNING' + error_message = 'Reached maximum number of steps' elif log_yml_dict['status'] == 'FAILED': status = 'FAIL' exception = log_yml_dict['exception'] error_message = exception['message'] - exception_type = exception['type'] else: status = None results_remote[e]["status"] = status results_remote[e]["error_message"] = error_message results_remote[e]["exception_type"] = exception_type + results_remote[e]["tasks_output"] = task_output file_paths = find_files(remote_output_dir, '.pdf') move_d1_files(file_paths, d1_plots_remote_dir) @@ -1216,16 +1229,19 @@ def run_biosimulators_remotely(sedml_file_name, return results_remote -def run_biosimulators_locally(sedml_file_name, +def run_biosimulators_locally(engine_keys, + sedml_file_name, sbml_file_name, d1_plots_local_dir, test_folder='tests'): + + engines = {k: v for k, v in ENGINES.items() if k in engine_keys} results_local = {} output_folder = 'local_results' local_output_dir = os.path.join(test_folder, output_folder) - for e in ENGINES.keys(): + for e in engines.keys(): print('Running ' + e) local_output_dir_e = os.path.abspath(os.path.join(local_output_dir, e)) print(local_output_dir_e) @@ -1299,18 +1315,21 @@ def create_combined_results_table(results_remote, return combined_results -def run_biosimulators_remotely_and_locally(sedml_file_name, +def run_biosimulators_remotely_and_locally(engine_keys, + sedml_file_name, sbml_file_name, d1_plots_remote_dir, d1_plots_local_dir, test_folder='tests'): - results_remote = run_biosimulators_remotely(sedml_file_name=sedml_file_name, + results_remote = run_biosimulators_remotely(engine_keys, + sedml_file_name=sedml_file_name, sbml_file_name=sbml_file_name, d1_plots_remote_dir=d1_plots_remote_dir, test_folder=test_folder) - results_local = run_biosimulators_locally(sedml_file_name=sedml_file_name, + results_local = run_biosimulators_locally(engine_keys, + sedml_file_name=sedml_file_name, sbml_file_name=sbml_file_name, d1_plots_local_dir=d1_plots_local_dir, test_folder=test_folder) From d70cd8a93df4d4f225dcffe2f03daff7a118e3bb Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Wed, 30 Oct 2024 10:25:15 +0000 Subject: [PATCH 07/24] add links for pass cases in pass fail column --- .../results_compatibility_biosimulators.md | 46 +++++++++---------- SBML/tests/results_local.md | 10 ++-- SBML/tests/results_remote.md | 46 +++++++++---------- utils/__init__.py | 32 ++++++------- 4 files changed, 66 insertions(+), 68 deletions(-) diff --git a/SBML/tests/results_compatibility_biosimulators.md b/SBML/tests/results_compatibility_biosimulators.md index 11b85548..d146d4a2 100644 --- a/SBML/tests/results_compatibility_biosimulators.md +++ b/SBML/tests/results_compatibility_biosimulators.md @@ -1,23 +1,23 @@ -| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | -|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
|
⚠ WARNINGview
download
logs

ERROR MESSAGE:
Reached maximum number of steps

ERROR TYPE:
| ✅ PASS | plot | plot | -| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1```
| plot | plot | -| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1```
| plot | plot | -| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1```
| | | -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1```
| plot | plot | -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1```
| plot | plot | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| ✅ PASS | ✅ PASS | plot | plot | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| ✅ PASS | ✅ PASS | plot | plot | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1```
| plot | plot | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| ✅ PASS | ✅ PASS | plot | plot | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W

ERROR TYPE:
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1```
| plot | plot | -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1```
| | | -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1```
| | | -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1```
| | | -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1```
| | | -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1```
| plot | plot | -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1```
| plot | plot | -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1```
| | | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| ✅ PASS | ✅ PASS | plot | plot | -| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
Noneview
download
logs

ERROR TYPE:
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1```
| | | -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1```
| | | \ No newline at end of file +| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | +|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------| +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
|
⚠ WARNINGview
download
logs

ERROR MESSAGE:
Reached maximum number of steps
| | plot | plot | +| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1```
| plot | plot | +| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1```
| plot | plot | +| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1```
| | | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1```
| plot | plot | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1```
| plot | plot | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
|
✅ PASSview
download
logs
| | plot | plot | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
|
✅ PASSview
download
logs
| | plot | plot | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1```
| plot | plot | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
|
✅ PASSview
download
logs
| | plot | plot | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1```
| plot | plot | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1```
| | | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1```
| | | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1```
| | | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1```
| | | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1```
| plot | plot | +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1```
| plot | plot | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1```
| | | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
|
✅ PASSview
download
logs
| | plot | plot | +| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
Noneview
download
logs
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1```
| | | +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1```
| | | \ No newline at end of file diff --git a/SBML/tests/results_local.md b/SBML/tests/results_local.md index 370fd2a7..e2d1a4c8 100644 --- a/SBML/tests/results_local.md +++ b/SBML/tests/results_local.md @@ -1,15 +1,15 @@ | | Engine | pass / FAIL | Error | d1 | Compatibility | links_error | |---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
| ✅ PASS | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
| nan | +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
| | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
| | | 1 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1``` | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1``` | | 2 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1``` | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1``` | | 3 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1``` | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1``` | | 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1``` | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1``` | | 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1``` | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1``` | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
| ✅ PASS | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| nan | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
| ✅ PASS | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| nan | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
| | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
| | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| | | 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1``` | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1``` | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
| ✅ PASS | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| nan | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
| | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| | | 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1``` | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1``` | | 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1``` | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1``` | | 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1``` | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1``` | @@ -18,6 +18,6 @@ | 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1``` | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1``` | | 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1``` | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1``` | | 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1``` | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1``` | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
| ✅ PASS | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| nan | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
| | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| | | 19 |
vcellhttps://github.com/virtualcell/vcell
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1``` | |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1``` | | 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1``` | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1``` | \ No newline at end of file diff --git a/SBML/tests/results_remote.md b/SBML/tests/results_remote.md index 2ff68d00..d349ca4b 100644 --- a/SBML/tests/results_remote.md +++ b/SBML/tests/results_remote.md @@ -1,23 +1,23 @@ -| | Engine | response | view | download | logs | pass / FAIL | Error | Type | tasks_output | links | d1 | Compatibility | links_error | -|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|-----------:|:-------------------------------------------------------------|:-------------------------------------------------------------------------|:--------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------|:---------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
| 201 | https://api.biosimulations.org/runs/6721fb8f953bc3bf105ed9d4 | https://api.biosimulations.org/results/6721fb8f953bc3bf105ed9d4/download | https://api.biosimulations.org/logs/6721fb8f953bc3bf105ed9d4?includeOutput=true |
⚠ WARNINGview
download
logs

ERROR MESSAGE:
Reached maximum number of steps

ERROR TYPE:
| Reached maximum number of steps | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
| view
download
logs

ERROR MESSAGE:
Reached maximum number of steps

ERROR TYPE:
| -| 1 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/6721fb90f9c43d155d41b539 | https://api.biosimulations.org/results/6721fb90f9c43d155d41b539/download | https://api.biosimulations.org/logs/6721fb90f9c43d155d41b539?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
| -| 2 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
| 201 | https://api.biosimulations.org/runs/6721fb92953bc3bf105ed9da | https://api.biosimulations.org/results/6721fb92953bc3bf105ed9da/download | https://api.biosimulations.org/logs/6721fb92953bc3bf105ed9da?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`). | | | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
| -| 3 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
| 201 | https://api.biosimulations.org/runs/6721fb94953bc3bf105ed9de | https://api.biosimulations.org/results/6721fb94953bc3bf105ed9de/download | https://api.biosimulations.org/logs/6721fb94953bc3bf105ed9de?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0). | | | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
| -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
| 201 | https://api.biosimulations.org/runs/6721fb96953bc3bf105ed9e1 | https://api.biosimulations.org/results/6721fb96953bc3bf105ed9e1/download | https://api.biosimulations.org/logs/6721fb96953bc3bf105ed9e1?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
| -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
| 201 | https://api.biosimulations.org/runs/6721fb982e0c0591a7c87a07 | https://api.biosimulations.org/results/6721fb982e0c0591a7c87a07/download | https://api.biosimulations.org/logs/6721fb982e0c0591a7c87a07?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
| -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
| 201 | https://api.biosimulations.org/runs/6721fb9a2e0c0591a7c87a0a | https://api.biosimulations.org/results/6721fb9a2e0c0591a7c87a0a/download | https://api.biosimulations.org/logs/6721fb9a2e0c0591a7c87a0a?includeOutput=true | ✅ PASS | | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| nan | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
| 201 | https://api.biosimulations.org/runs/6721fb9c2e0c0591a7c87a11 | https://api.biosimulations.org/results/6721fb9c2e0c0591a7c87a11/download | https://api.biosimulations.org/logs/6721fb9c2e0c0591a7c87a11?includeOutput=true | ✅ PASS | | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| nan | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
| 201 | https://api.biosimulations.org/runs/6721fb9ef9c43d155d41b544 | https://api.biosimulations.org/results/6721fb9ef9c43d155d41b544/download | https://api.biosimulations.org/logs/6721fb9ef9c43d155d41b544?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000 | | | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
| -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
| 201 | https://api.biosimulations.org/runs/6721fba0f9c43d155d41b548 | https://api.biosimulations.org/results/6721fba0f9c43d155d41b548/download | https://api.biosimulations.org/logs/6721fba0f9c43d155d41b548?includeOutput=true | ✅ PASS | | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| nan | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
| 201 | https://api.biosimulations.org/runs/6721fba2953bc3bf105ed9f2 | https://api.biosimulations.org/results/6721fba2953bc3bf105ed9f2/download | https://api.biosimulations.org/logs/6721fba2953bc3bf105ed9f2?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W

ERROR TYPE:
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W

ERROR TYPE:
| -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/6721fba4953bc3bf105ed9fc | https://api.biosimulations.org/results/6721fba4953bc3bf105ed9fc/download | https://api.biosimulations.org/logs/6721fba4953bc3bf105ed9fc?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
| -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/6721fba5f9c43d155d41b55e | https://api.biosimulations.org/results/6721fba5f9c43d155d41b55e/download | https://api.biosimulations.org/logs/6721fba5f9c43d155d41b55e?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
| -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
| 201 | https://api.biosimulations.org/runs/6721fba7f9c43d155d41b56b | https://api.biosimulations.org/results/6721fba7f9c43d155d41b56b/download | https://api.biosimulations.org/logs/6721fba7f9c43d155d41b56b?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
| -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/6721fba92e0c0591a7c87a43 | https://api.biosimulations.org/results/6721fba92e0c0591a7c87a43/download | https://api.biosimulations.org/logs/6721fba92e0c0591a7c87a43?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
| -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
| 201 | https://api.biosimulations.org/runs/6721fbaa2e0c0591a7c87a51 | https://api.biosimulations.org/results/6721fbaa2e0c0591a7c87a51/download | https://api.biosimulations.org/logs/6721fbaa2e0c0591a7c87a51?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
| -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
| 201 | https://api.biosimulations.org/runs/6721fbac953bc3bf105eda20 | https://api.biosimulations.org/results/6721fbac953bc3bf105eda20/download | https://api.biosimulations.org/logs/6721fbac953bc3bf105eda20?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`). | | | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
| -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
| 201 | https://api.biosimulations.org/runs/6721fbae2e0c0591a7c87a5a | https://api.biosimulations.org/results/6721fbae2e0c0591a7c87a5a/download | https://api.biosimulations.org/logs/6721fbae2e0c0591a7c87a5a?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
| -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
| 201 | https://api.biosimulations.org/runs/6721fbaf953bc3bf105eda33 | https://api.biosimulations.org/results/6721fbaf953bc3bf105eda33/download | https://api.biosimulations.org/logs/6721fbaf953bc3bf105eda33?includeOutput=true | ✅ PASS | | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| nan | -| 19 |
vcellhttps://github.com/virtualcell/vcell
| 201 | https://api.biosimulations.org/runs/6721fbb2f9c43d155d41b5a6 | https://api.biosimulations.org/results/6721fbb2f9c43d155d41b5a6/download | https://api.biosimulations.org/logs/6721fbb2f9c43d155d41b5a6?includeOutput=true |
Noneview
download
logs

ERROR TYPE:
| | | | view
download
logs | |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
| view
download
logs

ERROR TYPE:
| -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
| 201 | https://api.biosimulations.org/runs/6721fbb4953bc3bf105eda4c | https://api.biosimulations.org/results/6721fbb4953bc3bf105eda4c/download | https://api.biosimulations.org/logs/6721fbb4953bc3bf105eda4c?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
| \ No newline at end of file +| | Engine | response | view | download | logs | pass / FAIL | Error | Type | tasks_output | links | d1 | Compatibility | links_error | +|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|-----------:|:-------------------------------------------------------------|:-------------------------------------------------------------------------|:--------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------|:---------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
| 201 | https://api.biosimulations.org/runs/6721fb8f953bc3bf105ed9d4 | https://api.biosimulations.org/results/6721fb8f953bc3bf105ed9d4/download | https://api.biosimulations.org/logs/6721fb8f953bc3bf105ed9d4?includeOutput=true |
⚠ WARNINGview
download
logs

ERROR MESSAGE:
Reached maximum number of steps
| Reached maximum number of steps | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
| view
download
logs

ERROR MESSAGE:
Reached maximum number of steps | +| 1 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/6721fb90f9c43d155d41b539 | https://api.biosimulations.org/results/6721fb90f9c43d155d41b539/download | https://api.biosimulations.org/logs/6721fb90f9c43d155d41b539?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml' | +| 2 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
| 201 | https://api.biosimulations.org/runs/6721fb92953bc3bf105ed9da | https://api.biosimulations.org/results/6721fb92953bc3bf105ed9da/download | https://api.biosimulations.org/logs/6721fb92953bc3bf105ed9da?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`). | | | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`). | +| 3 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
| 201 | https://api.biosimulations.org/runs/6721fb94953bc3bf105ed9de | https://api.biosimulations.org/results/6721fb94953bc3bf105ed9de/download | https://api.biosimulations.org/logs/6721fb94953bc3bf105ed9de?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0). | | | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0). | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
| 201 | https://api.biosimulations.org/runs/6721fb96953bc3bf105ed9e1 | https://api.biosimulations.org/results/6721fb96953bc3bf105ed9e1/download | https://api.biosimulations.org/logs/6721fb96953bc3bf105ed9e1?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
| 201 | https://api.biosimulations.org/runs/6721fb982e0c0591a7c87a07 | https://api.biosimulations.org/results/6721fb982e0c0591a7c87a07/download | https://api.biosimulations.org/logs/6721fb982e0c0591a7c87a07?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
| 201 | https://api.biosimulations.org/runs/6721fb9a2e0c0591a7c87a0a | https://api.biosimulations.org/results/6721fb9a2e0c0591a7c87a0a/download | https://api.biosimulations.org/logs/6721fb9a2e0c0591a7c87a0a?includeOutput=true |
✅ PASSview
download
logs
| | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| view
download
logs | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
| 201 | https://api.biosimulations.org/runs/6721fb9c2e0c0591a7c87a11 | https://api.biosimulations.org/results/6721fb9c2e0c0591a7c87a11/download | https://api.biosimulations.org/logs/6721fb9c2e0c0591a7c87a11?includeOutput=true |
✅ PASSview
download
logs
| | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| view
download
logs | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
| 201 | https://api.biosimulations.org/runs/6721fb9ef9c43d155d41b544 | https://api.biosimulations.org/results/6721fb9ef9c43d155d41b544/download | https://api.biosimulations.org/logs/6721fb9ef9c43d155d41b544?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000 | | | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000 | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
| 201 | https://api.biosimulations.org/runs/6721fba0f9c43d155d41b548 | https://api.biosimulations.org/results/6721fba0f9c43d155d41b548/download | https://api.biosimulations.org/logs/6721fba0f9c43d155d41b548?includeOutput=true |
✅ PASSview
download
logs
| | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| view
download
logs | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
| 201 | https://api.biosimulations.org/runs/6721fba2953bc3bf105ed9f2 | https://api.biosimulations.org/results/6721fba2953bc3bf105ed9f2/download | https://api.biosimulations.org/logs/6721fba2953bc3bf105ed9f2?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/6721fba4953bc3bf105ed9fc | https://api.biosimulations.org/results/6721fba4953bc3bf105ed9fc/download | https://api.biosimulations.org/logs/6721fba4953bc3bf105ed9fc?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml' | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/6721fba5f9c43d155d41b55e | https://api.biosimulations.org/results/6721fba5f9c43d155d41b55e/download | https://api.biosimulations.org/logs/6721fba5f9c43d155d41b55e?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml' | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
| 201 | https://api.biosimulations.org/runs/6721fba7f9c43d155d41b56b | https://api.biosimulations.org/results/6721fba7f9c43d155d41b56b/download | https://api.biosimulations.org/logs/6721fba7f9c43d155d41b56b?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml' | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/6721fba92e0c0591a7c87a43 | https://api.biosimulations.org/results/6721fba92e0c0591a7c87a43/download | https://api.biosimulations.org/logs/6721fba92e0c0591a7c87a43?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml' | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
| 201 | https://api.biosimulations.org/runs/6721fbaa2e0c0591a7c87a51 | https://api.biosimulations.org/results/6721fbaa2e0c0591a7c87a51/download | https://api.biosimulations.org/logs/6721fbaa2e0c0591a7c87a51?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
| +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
| 201 | https://api.biosimulations.org/runs/6721fbac953bc3bf105eda20 | https://api.biosimulations.org/results/6721fbac953bc3bf105eda20/download | https://api.biosimulations.org/logs/6721fbac953bc3bf105eda20?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`). | | | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`). | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
| 201 | https://api.biosimulations.org/runs/6721fbae2e0c0591a7c87a5a | https://api.biosimulations.org/results/6721fbae2e0c0591a7c87a5a/download | https://api.biosimulations.org/logs/6721fbae2e0c0591a7c87a5a?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml' | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
| 201 | https://api.biosimulations.org/runs/6721fbaf953bc3bf105eda33 | https://api.biosimulations.org/results/6721fbaf953bc3bf105eda33/download | https://api.biosimulations.org/logs/6721fbaf953bc3bf105eda33?includeOutput=true |
✅ PASSview
download
logs
| | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| view
download
logs | +| 19 |
vcellhttps://github.com/virtualcell/vcell
| 201 | https://api.biosimulations.org/runs/6721fbb2f9c43d155d41b5a6 | https://api.biosimulations.org/results/6721fbb2f9c43d155d41b5a6/download | https://api.biosimulations.org/logs/6721fbb2f9c43d155d41b5a6?includeOutput=true |
Noneview
download
logs
| | | | view
download
logs | |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
| view
download
logs | +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
| 201 | https://api.biosimulations.org/runs/6721fbb4953bc3bf105eda4c | https://api.biosimulations.org/results/6721fbb4953bc3bf105eda4c/download | https://api.biosimulations.org/logs/6721fbb4953bc3bf105eda4c?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml' | \ No newline at end of file diff --git a/utils/__init__.py b/utils/__init__.py index 86c8956f..46470e27 100644 --- a/utils/__init__.py +++ b/utils/__init__.py @@ -1130,28 +1130,26 @@ def create_results_table(results, sbml_filepath, sedml_filepath, output_dir): results_table.loc[results_table[ENGINE] == e, PASS_FAIL] = f'{xfail_html}' for e in results_table[ENGINE]: - # only if no 'pass' in pass / fail column add error messages to links_error - if results_table.loc[results_table[ENGINE] == e, PASS_FAIL].values[0] != pass_html: - if len(results_table.loc[results_table[ENGINE] == e, ERROR].values[0]) > 1: - error_message = f'

ERROR MESSAGE:
{results_table.loc[results_table[ENGINE] == e, ERROR].values[0]}' - else: - error_message = "" - if "links" in results_table.columns: - links = results_table.loc[results_table[ENGINE] == e, "links"].values[0] - else: - links = "" - if TYPE in results_table.columns: + links = "" + error_message = "" + error_type = "" + + if len(results_table.loc[results_table[ENGINE] == e, ERROR].values[0]) > 1: + error_message = f'

ERROR MESSAGE:
{results_table.loc[results_table[ENGINE] == e, ERROR].values[0]}' + if "links" in results_table.columns: + links = results_table.loc[results_table[ENGINE] == e, "links"].values[0] + if TYPE in results_table.columns: + if len(results_table.loc[results_table[ENGINE] == e, TYPE].values[0])>1: error_type = f'

ERROR TYPE:
{results_table.loc[results_table[ENGINE] == e, TYPE].values[0]}' - else: - error_type ="" - links_error = f'{links}{error_message}{error_type}' - results_table.loc[results_table[ENGINE] == e, "links_error"] = links_error + links_error = f'{links}{error_message}{error_type}' + results_table.loc[results_table[ENGINE] == e, "links_error"] = links_error # add links as collapsible content to pass / fail column for e in results_table[ENGINE]: - if results_table.loc[results_table[ENGINE] == e, PASS_FAIL].values[0] != pass_html: - results_table.loc[results_table[ENGINE] == e, PASS_FAIL] = collapsible_content(results_table.loc[results_table[ENGINE] == e, "links_error"].values[0], results_table.loc[results_table[ENGINE] == e, PASS_FAIL].values[0]) + title = results_table.loc[results_table[ENGINE] == e, PASS_FAIL].values[0] + content = results_table.loc[results_table[ENGINE] == e, "links_error"].values[0] + results_table.loc[results_table[ENGINE] == e, PASS_FAIL] = collapsible_content(content, title) # add status message defined in ENGINES results_table[ENGINE] = results_table[ENGINE].apply(lambda x: collapsible_content(f'{ENGINES[x]["url"]}
{ENGINES[x]["status"]}', x)) From 52f139c9baff112d755fa9286cec4f999f2ca3a6 Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Wed, 30 Oct 2024 10:39:59 +0000 Subject: [PATCH 08/24] modify collapsible content function to handle no content cases --- SBML/tests/results_compatibility_biosimulators.md | 10 +++++----- SBML/tests/results_local.md | 10 +++++----- utils/__init__.py | 2 +- 3 files changed, 11 insertions(+), 11 deletions(-) diff --git a/SBML/tests/results_compatibility_biosimulators.md b/SBML/tests/results_compatibility_biosimulators.md index d146d4a2..0e53e32b 100644 --- a/SBML/tests/results_compatibility_biosimulators.md +++ b/SBML/tests/results_compatibility_biosimulators.md @@ -1,15 +1,15 @@ | | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | |---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
|
⚠ WARNINGview
download
logs

ERROR MESSAGE:
Reached maximum number of steps
| | plot | plot | +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
|
⚠ WARNINGview
download
logs

ERROR MESSAGE:
Reached maximum number of steps
| ✅ PASS | plot | plot | | 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1```
| plot | plot | | 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1```
| plot | plot | | 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1```
| | | | 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1```
| plot | plot | | 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1```
| plot | plot | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
|
✅ PASSview
download
logs
| | plot | plot | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
|
✅ PASSview
download
logs
| | plot | plot | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | | 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1```
| plot | plot | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
|
✅ PASSview
download
logs
| | plot | plot | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | | 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1```
| plot | plot | | 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1```
| | | | 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1```
| | | @@ -18,6 +18,6 @@ | 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1```
| plot | plot | | 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1```
| plot | plot | | 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1```
| | | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
|
✅ PASSview
download
logs
| | plot | plot | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | | 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
Noneview
download
logs
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1```
| | | | 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1```
| | | \ No newline at end of file diff --git a/SBML/tests/results_local.md b/SBML/tests/results_local.md index e2d1a4c8..b9b06f2e 100644 --- a/SBML/tests/results_local.md +++ b/SBML/tests/results_local.md @@ -1,15 +1,15 @@ | | Engine | pass / FAIL | Error | d1 | Compatibility | links_error | |---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
| | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
| | +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
| ✅ PASS | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
| | | 1 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1``` | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1``` | | 2 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1``` | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1``` | | 3 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1``` | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1``` | | 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1``` | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1``` | | 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1``` | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1``` | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
| | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
| | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
| ✅ PASS | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
| ✅ PASS | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| | | 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1``` | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1``` | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
| | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
| ✅ PASS | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| | | 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1``` | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1``` | | 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1``` | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1``` | | 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1``` | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1``` | @@ -18,6 +18,6 @@ | 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1``` | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1``` | | 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1``` | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1``` | | 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1``` | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1``` | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
| | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
| ✅ PASS | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| | | 19 |
vcellhttps://github.com/virtualcell/vcell
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1``` | |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1``` | | 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1``` | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1``` | \ No newline at end of file diff --git a/utils/__init__.py b/utils/__init__.py index 46470e27..9a1f487a 100644 --- a/utils/__init__.py +++ b/utils/__init__.py @@ -469,7 +469,7 @@ def collapsible_content(content, title='Details'): if content: return f'
{title}{content}
' else: - return None + return f'{title}' def get_filetypes(model_filepath, simulation_filepath): """ From 091ccfb30100b0410581fc7c1096fe5a57ba8039 Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Wed, 30 Oct 2024 14:20:19 +0000 Subject: [PATCH 09/24] change "warning" label for max steps reached error (amici) to "fail" --- .../results_compatibility_biosimulators.md | 42 +++--- SBML/tests/results_remote.json | 128 +++++++++--------- SBML/tests/results_remote.md | 42 +++--- utils/__init__.py | 2 +- 4 files changed, 107 insertions(+), 107 deletions(-) diff --git a/SBML/tests/results_compatibility_biosimulators.md b/SBML/tests/results_compatibility_biosimulators.md index 0e53e32b..fda86f64 100644 --- a/SBML/tests/results_compatibility_biosimulators.md +++ b/SBML/tests/results_compatibility_biosimulators.md @@ -1,23 +1,23 @@ | | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | |---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
|
⚠ WARNINGview
download
logs

ERROR MESSAGE:
Reached maximum number of steps
| ✅ PASS | plot | plot | -| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1```
| plot | plot | -| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1```
| plot | plot | -| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1```
| | | -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1```
| plot | plot | -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1```
| plot | plot | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1```
| plot | plot | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1```
| plot | plot | -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1```
| | | -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1```
| | | -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1```
| | | -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1```
| | | -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1```
| plot | plot | -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1```
| plot | plot | -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1```
| | | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | -| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
Noneview
download
logs
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1```
| | | -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1```
| | | \ No newline at end of file +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
|
❌ FAILview
download
logs

ERROR MESSAGE:
Reached maximum number of steps
| ✅ PASS | plot | plot | +| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1```
| plot | plot | +| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1```
| plot | plot | +| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1```
| | | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1```
| plot | plot | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1```
| plot | plot | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1```
| plot | plot | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1```
| plot | plot | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1```
| | | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1```
| | | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1```
| | | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1```
| | | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1```
| plot | plot | +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1```
| plot | plot | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1```
| | | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | +| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
Noneview
download
logs
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1```
| | | +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1```
| | | \ No newline at end of file diff --git a/SBML/tests/results_remote.json b/SBML/tests/results_remote.json index f110b8ed..3209a555 100644 --- a/SBML/tests/results_remote.json +++ b/SBML/tests/results_remote.json @@ -1,19 +1,19 @@ { "amici": { "response": 201, - "view": "https://api.biosimulations.org/runs/6721fb8f953bc3bf105ed9d4", - "download": "https://api.biosimulations.org/results/6721fb8f953bc3bf105ed9d4/download", - "logs": "https://api.biosimulations.org/logs/6721fb8f953bc3bf105ed9d4?includeOutput=true", - "status": "WARNING", + "view": "https://api.biosimulations.org/runs/67223f6e953bc3bf105ee9b2", + "download": "https://api.biosimulations.org/results/67223f6e953bc3bf105ee9b2/download", + "logs": "https://api.biosimulations.org/logs/67223f6e953bc3bf105ee9b2?includeOutput=true", + "status": "FAIL", "error_message": "Reached maximum number of steps", "exception_type": "", "tasks_output": "" }, "brian2": { "response": 201, - "view": "https://api.biosimulations.org/runs/6721fb90f9c43d155d41b539", - "download": "https://api.biosimulations.org/results/6721fb90f9c43d155d41b539/download", - "logs": "https://api.biosimulations.org/logs/6721fb90f9c43d155d41b539?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67223f70953bc3bf105ee9b5", + "download": "https://api.biosimulations.org/results/67223f70953bc3bf105ee9b5/download", + "logs": "https://api.biosimulations.org/logs/67223f70953bc3bf105ee9b5?includeOutput=true", "status": "FAIL", "error_message": "No module named 'libsbml'", "exception_type": "", @@ -21,9 +21,9 @@ }, "bionetgen": { "response": 201, - "view": "https://api.biosimulations.org/runs/6721fb92953bc3bf105ed9da", - "download": "https://api.biosimulations.org/results/6721fb92953bc3bf105ed9da/download", - "logs": "https://api.biosimulations.org/logs/6721fb92953bc3bf105ed9da?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67223f72953bc3bf105ee9b8", + "download": "https://api.biosimulations.org/results/67223f72953bc3bf105ee9b8/download", + "logs": "https://api.biosimulations.org/logs/67223f72953bc3bf105ee9b8?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).", "exception_type": "", @@ -31,9 +31,9 @@ }, "boolnet": { "response": 201, - "view": "https://api.biosimulations.org/runs/6721fb94953bc3bf105ed9de", - "download": "https://api.biosimulations.org/results/6721fb94953bc3bf105ed9de/download", - "logs": "https://api.biosimulations.org/logs/6721fb94953bc3bf105ed9de?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67223f74953bc3bf105ee9bd", + "download": "https://api.biosimulations.org/results/67223f74953bc3bf105ee9bd/download", + "logs": "https://api.biosimulations.org/logs/67223f74953bc3bf105ee9bd?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).", "exception_type": "", @@ -41,9 +41,9 @@ }, "cbmpy": { "response": 201, - "view": "https://api.biosimulations.org/runs/6721fb96953bc3bf105ed9e1", - "download": "https://api.biosimulations.org/results/6721fb96953bc3bf105ed9e1/download", - "logs": "https://api.biosimulations.org/logs/6721fb96953bc3bf105ed9e1?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67223f762e0c0591a7c88929", + "download": "https://api.biosimulations.org/results/67223f762e0c0591a7c88929/download", + "logs": "https://api.biosimulations.org/logs/67223f762e0c0591a7c88929?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", "exception_type": "", @@ -51,9 +51,9 @@ }, "cobrapy": { "response": 201, - "view": "https://api.biosimulations.org/runs/6721fb982e0c0591a7c87a07", - "download": "https://api.biosimulations.org/results/6721fb982e0c0591a7c87a07/download", - "logs": "https://api.biosimulations.org/logs/6721fb982e0c0591a7c87a07?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67223f792e0c0591a7c8892e", + "download": "https://api.biosimulations.org/results/67223f792e0c0591a7c8892e/download", + "logs": "https://api.biosimulations.org/logs/67223f792e0c0591a7c8892e?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", "exception_type": "", @@ -61,9 +61,9 @@ }, "copasi": { "response": 201, - "view": "https://api.biosimulations.org/runs/6721fb9a2e0c0591a7c87a0a", - "download": "https://api.biosimulations.org/results/6721fb9a2e0c0591a7c87a0a/download", - "logs": "https://api.biosimulations.org/logs/6721fb9a2e0c0591a7c87a0a?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67223f7b953bc3bf105ee9c4", + "download": "https://api.biosimulations.org/results/67223f7b953bc3bf105ee9c4/download", + "logs": "https://api.biosimulations.org/logs/67223f7b953bc3bf105ee9c4?includeOutput=true", "status": "pass", "error_message": "", "exception_type": "", @@ -71,9 +71,9 @@ }, "gillespy2": { "response": 201, - "view": "https://api.biosimulations.org/runs/6721fb9c2e0c0591a7c87a11", - "download": "https://api.biosimulations.org/results/6721fb9c2e0c0591a7c87a11/download", - "logs": "https://api.biosimulations.org/logs/6721fb9c2e0c0591a7c87a11?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67223f7df9c43d155d41c52b", + "download": "https://api.biosimulations.org/results/67223f7df9c43d155d41c52b/download", + "logs": "https://api.biosimulations.org/logs/67223f7df9c43d155d41c52b?includeOutput=true", "status": "pass", "error_message": "", "exception_type": "", @@ -81,9 +81,9 @@ }, "ginsim": { "response": 201, - "view": "https://api.biosimulations.org/runs/6721fb9ef9c43d155d41b544", - "download": "https://api.biosimulations.org/results/6721fb9ef9c43d155d41b544/download", - "logs": "https://api.biosimulations.org/logs/6721fb9ef9c43d155d41b544?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67223f80953bc3bf105ee9cb", + "download": "https://api.biosimulations.org/results/67223f80953bc3bf105ee9cb/download", + "logs": "https://api.biosimulations.org/logs/67223f80953bc3bf105ee9cb?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000", "exception_type": "", @@ -91,9 +91,9 @@ }, "libsbmlsim": { "response": 201, - "view": "https://api.biosimulations.org/runs/6721fba0f9c43d155d41b548", - "download": "https://api.biosimulations.org/results/6721fba0f9c43d155d41b548/download", - "logs": "https://api.biosimulations.org/logs/6721fba0f9c43d155d41b548?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67223f82953bc3bf105ee9d0", + "download": "https://api.biosimulations.org/results/67223f82953bc3bf105ee9d0/download", + "logs": "https://api.biosimulations.org/logs/67223f82953bc3bf105ee9d0?includeOutput=true", "status": "pass", "error_message": "", "exception_type": "", @@ -101,9 +101,9 @@ }, "masspy": { "response": 201, - "view": "https://api.biosimulations.org/runs/6721fba2953bc3bf105ed9f2", - "download": "https://api.biosimulations.org/results/6721fba2953bc3bf105ed9f2/download", - "logs": "https://api.biosimulations.org/logs/6721fba2953bc3bf105ed9f2?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67223f84953bc3bf105ee9dd", + "download": "https://api.biosimulations.org/results/67223f84953bc3bf105ee9dd/download", + "logs": "https://api.biosimulations.org/logs/67223f84953bc3bf105ee9dd?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n The following targets are not supported:\n - /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']\n - /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']\n - /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']\n - /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']\n \n Only following targets are supported:\n - I\n - SEC\n - V\n - W", "exception_type": "", @@ -111,9 +111,9 @@ }, "netpyne": { "response": 201, - "view": "https://api.biosimulations.org/runs/6721fba4953bc3bf105ed9fc", - "download": "https://api.biosimulations.org/results/6721fba4953bc3bf105ed9fc/download", - "logs": "https://api.biosimulations.org/logs/6721fba4953bc3bf105ed9fc?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67223f87f9c43d155d41c547", + "download": "https://api.biosimulations.org/results/67223f87f9c43d155d41c547/download", + "logs": "https://api.biosimulations.org/logs/67223f87f9c43d155d41c547?includeOutput=true", "status": "FAIL", "error_message": "No module named 'libsbml'", "exception_type": "", @@ -121,9 +121,9 @@ }, "neuron": { "response": 201, - "view": "https://api.biosimulations.org/runs/6721fba5f9c43d155d41b55e", - "download": "https://api.biosimulations.org/results/6721fba5f9c43d155d41b55e/download", - "logs": "https://api.biosimulations.org/logs/6721fba5f9c43d155d41b55e?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67223f89f9c43d155d41c54b", + "download": "https://api.biosimulations.org/results/67223f89f9c43d155d41c54b/download", + "logs": "https://api.biosimulations.org/logs/67223f89f9c43d155d41c54b?includeOutput=true", "status": "FAIL", "error_message": "No module named 'libsbml'", "exception_type": "", @@ -131,9 +131,9 @@ }, "opencor": { "response": 201, - "view": "https://api.biosimulations.org/runs/6721fba7f9c43d155d41b56b", - "download": "https://api.biosimulations.org/results/6721fba7f9c43d155d41b56b/download", - "logs": "https://api.biosimulations.org/logs/6721fba7f9c43d155d41b56b?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67223f8b953bc3bf105ee9ff", + "download": "https://api.biosimulations.org/results/67223f8b953bc3bf105ee9ff/download", + "logs": "https://api.biosimulations.org/logs/67223f8b953bc3bf105ee9ff?includeOutput=true", "status": "FAIL", "error_message": "No module named 'libsbml'", "exception_type": "", @@ -141,9 +141,9 @@ }, "pyneuroml": { "response": 201, - "view": "https://api.biosimulations.org/runs/6721fba92e0c0591a7c87a43", - "download": "https://api.biosimulations.org/results/6721fba92e0c0591a7c87a43/download", - "logs": "https://api.biosimulations.org/logs/6721fba92e0c0591a7c87a43?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67223f8df9c43d155d41c569", + "download": "https://api.biosimulations.org/results/67223f8df9c43d155d41c569/download", + "logs": "https://api.biosimulations.org/logs/67223f8df9c43d155d41c569?includeOutput=true", "status": "FAIL", "error_message": "No module named 'libsbml'", "exception_type": "", @@ -151,9 +151,9 @@ }, "pysces": { "response": 201, - "view": "https://api.biosimulations.org/runs/6721fbaa2e0c0591a7c87a51", - "download": "https://api.biosimulations.org/results/6721fbaa2e0c0591a7c87a51/download", - "logs": "https://api.biosimulations.org/logs/6721fbaa2e0c0591a7c87a51?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67223f8ff9c43d155d41c570", + "download": "https://api.biosimulations.org/results/67223f8ff9c43d155d41c570/download", + "logs": "https://api.biosimulations.org/logs/67223f8ff9c43d155d41c570?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", "exception_type": "", @@ -161,9 +161,9 @@ }, "rbapy": { "response": 201, - "view": "https://api.biosimulations.org/runs/6721fbac953bc3bf105eda20", - "download": "https://api.biosimulations.org/results/6721fbac953bc3bf105eda20/download", - "logs": "https://api.biosimulations.org/logs/6721fbac953bc3bf105eda20?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67223f91953bc3bf105eea14", + "download": "https://api.biosimulations.org/results/67223f91953bc3bf105eea14/download", + "logs": "https://api.biosimulations.org/logs/67223f91953bc3bf105eea14?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).", "exception_type": "", @@ -171,9 +171,9 @@ }, "smoldyn": { "response": 201, - "view": "https://api.biosimulations.org/runs/6721fbae2e0c0591a7c87a5a", - "download": "https://api.biosimulations.org/results/6721fbae2e0c0591a7c87a5a/download", - "logs": "https://api.biosimulations.org/logs/6721fbae2e0c0591a7c87a5a?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67223f932e0c0591a7c8897a", + "download": "https://api.biosimulations.org/results/67223f932e0c0591a7c8897a/download", + "logs": "https://api.biosimulations.org/logs/67223f932e0c0591a7c8897a?includeOutput=true", "status": "FAIL", "error_message": "No module named 'libsbml'", "exception_type": "", @@ -181,9 +181,9 @@ }, "tellurium": { "response": 201, - "view": "https://api.biosimulations.org/runs/6721fbaf953bc3bf105eda33", - "download": "https://api.biosimulations.org/results/6721fbaf953bc3bf105eda33/download", - "logs": "https://api.biosimulations.org/logs/6721fbaf953bc3bf105eda33?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67223f95f9c43d155d41c576", + "download": "https://api.biosimulations.org/results/67223f95f9c43d155d41c576/download", + "logs": "https://api.biosimulations.org/logs/67223f95f9c43d155d41c576?includeOutput=true", "status": "pass", "error_message": "", "exception_type": "", @@ -191,9 +191,9 @@ }, "vcell": { "response": 201, - "view": "https://api.biosimulations.org/runs/6721fbb2f9c43d155d41b5a6", - "download": "https://api.biosimulations.org/results/6721fbb2f9c43d155d41b5a6/download", - "logs": "https://api.biosimulations.org/logs/6721fbb2f9c43d155d41b5a6?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67223f99f9c43d155d41c58e", + "download": "https://api.biosimulations.org/results/67223f99f9c43d155d41c58e/download", + "logs": "https://api.biosimulations.org/logs/67223f99f9c43d155d41c58e?includeOutput=true", "status": null, "error_message": "", "exception_type": "", @@ -201,9 +201,9 @@ }, "xpp": { "response": 201, - "view": "https://api.biosimulations.org/runs/6721fbb4953bc3bf105eda4c", - "download": "https://api.biosimulations.org/results/6721fbb4953bc3bf105eda4c/download", - "logs": "https://api.biosimulations.org/logs/6721fbb4953bc3bf105eda4c?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67223f9bf9c43d155d41c599", + "download": "https://api.biosimulations.org/results/67223f9bf9c43d155d41c599/download", + "logs": "https://api.biosimulations.org/logs/67223f9bf9c43d155d41c599?includeOutput=true", "status": "FAIL", "error_message": "No module named 'libsbml'", "exception_type": "", diff --git a/SBML/tests/results_remote.md b/SBML/tests/results_remote.md index d349ca4b..7c106cfe 100644 --- a/SBML/tests/results_remote.md +++ b/SBML/tests/results_remote.md @@ -1,23 +1,23 @@ | | Engine | response | view | download | logs | pass / FAIL | Error | Type | tasks_output | links | d1 | Compatibility | links_error | |---:|:-------------------------------------------------------------------------------------------------------------------------------------------|-----------:|:-------------------------------------------------------------|:-------------------------------------------------------------------------|:--------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------|:---------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
| 201 | https://api.biosimulations.org/runs/6721fb8f953bc3bf105ed9d4 | https://api.biosimulations.org/results/6721fb8f953bc3bf105ed9d4/download | https://api.biosimulations.org/logs/6721fb8f953bc3bf105ed9d4?includeOutput=true |
⚠ WARNINGview
download
logs

ERROR MESSAGE:
Reached maximum number of steps
| Reached maximum number of steps | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
| view
download
logs

ERROR MESSAGE:
Reached maximum number of steps | -| 1 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/6721fb90f9c43d155d41b539 | https://api.biosimulations.org/results/6721fb90f9c43d155d41b539/download | https://api.biosimulations.org/logs/6721fb90f9c43d155d41b539?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml' | -| 2 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
| 201 | https://api.biosimulations.org/runs/6721fb92953bc3bf105ed9da | https://api.biosimulations.org/results/6721fb92953bc3bf105ed9da/download | https://api.biosimulations.org/logs/6721fb92953bc3bf105ed9da?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`). | | | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`). | -| 3 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
| 201 | https://api.biosimulations.org/runs/6721fb94953bc3bf105ed9de | https://api.biosimulations.org/results/6721fb94953bc3bf105ed9de/download | https://api.biosimulations.org/logs/6721fb94953bc3bf105ed9de?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0). | | | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0). | -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
| 201 | https://api.biosimulations.org/runs/6721fb96953bc3bf105ed9e1 | https://api.biosimulations.org/results/6721fb96953bc3bf105ed9e1/download | https://api.biosimulations.org/logs/6721fb96953bc3bf105ed9e1?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
| 201 | https://api.biosimulations.org/runs/6721fb982e0c0591a7c87a07 | https://api.biosimulations.org/results/6721fb982e0c0591a7c87a07/download | https://api.biosimulations.org/logs/6721fb982e0c0591a7c87a07?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
| 201 | https://api.biosimulations.org/runs/6721fb9a2e0c0591a7c87a0a | https://api.biosimulations.org/results/6721fb9a2e0c0591a7c87a0a/download | https://api.biosimulations.org/logs/6721fb9a2e0c0591a7c87a0a?includeOutput=true |
✅ PASSview
download
logs
| | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| view
download
logs | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
| 201 | https://api.biosimulations.org/runs/6721fb9c2e0c0591a7c87a11 | https://api.biosimulations.org/results/6721fb9c2e0c0591a7c87a11/download | https://api.biosimulations.org/logs/6721fb9c2e0c0591a7c87a11?includeOutput=true |
✅ PASSview
download
logs
| | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| view
download
logs | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
| 201 | https://api.biosimulations.org/runs/6721fb9ef9c43d155d41b544 | https://api.biosimulations.org/results/6721fb9ef9c43d155d41b544/download | https://api.biosimulations.org/logs/6721fb9ef9c43d155d41b544?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000 | | | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000 | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
| 201 | https://api.biosimulations.org/runs/6721fba0f9c43d155d41b548 | https://api.biosimulations.org/results/6721fba0f9c43d155d41b548/download | https://api.biosimulations.org/logs/6721fba0f9c43d155d41b548?includeOutput=true |
✅ PASSview
download
logs
| | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| view
download
logs | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
| 201 | https://api.biosimulations.org/runs/6721fba2953bc3bf105ed9f2 | https://api.biosimulations.org/results/6721fba2953bc3bf105ed9f2/download | https://api.biosimulations.org/logs/6721fba2953bc3bf105ed9f2?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W | -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/6721fba4953bc3bf105ed9fc | https://api.biosimulations.org/results/6721fba4953bc3bf105ed9fc/download | https://api.biosimulations.org/logs/6721fba4953bc3bf105ed9fc?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml' | -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/6721fba5f9c43d155d41b55e | https://api.biosimulations.org/results/6721fba5f9c43d155d41b55e/download | https://api.biosimulations.org/logs/6721fba5f9c43d155d41b55e?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml' | -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
| 201 | https://api.biosimulations.org/runs/6721fba7f9c43d155d41b56b | https://api.biosimulations.org/results/6721fba7f9c43d155d41b56b/download | https://api.biosimulations.org/logs/6721fba7f9c43d155d41b56b?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml' | -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/6721fba92e0c0591a7c87a43 | https://api.biosimulations.org/results/6721fba92e0c0591a7c87a43/download | https://api.biosimulations.org/logs/6721fba92e0c0591a7c87a43?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml' | -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
| 201 | https://api.biosimulations.org/runs/6721fbaa2e0c0591a7c87a51 | https://api.biosimulations.org/results/6721fbaa2e0c0591a7c87a51/download | https://api.biosimulations.org/logs/6721fbaa2e0c0591a7c87a51?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
| -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
| 201 | https://api.biosimulations.org/runs/6721fbac953bc3bf105eda20 | https://api.biosimulations.org/results/6721fbac953bc3bf105eda20/download | https://api.biosimulations.org/logs/6721fbac953bc3bf105eda20?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`). | | | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`). | -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
| 201 | https://api.biosimulations.org/runs/6721fbae2e0c0591a7c87a5a | https://api.biosimulations.org/results/6721fbae2e0c0591a7c87a5a/download | https://api.biosimulations.org/logs/6721fbae2e0c0591a7c87a5a?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml' | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
| 201 | https://api.biosimulations.org/runs/6721fbaf953bc3bf105eda33 | https://api.biosimulations.org/results/6721fbaf953bc3bf105eda33/download | https://api.biosimulations.org/logs/6721fbaf953bc3bf105eda33?includeOutput=true |
✅ PASSview
download
logs
| | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| view
download
logs | -| 19 |
vcellhttps://github.com/virtualcell/vcell
| 201 | https://api.biosimulations.org/runs/6721fbb2f9c43d155d41b5a6 | https://api.biosimulations.org/results/6721fbb2f9c43d155d41b5a6/download | https://api.biosimulations.org/logs/6721fbb2f9c43d155d41b5a6?includeOutput=true |
Noneview
download
logs
| | | | view
download
logs | |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
| view
download
logs | -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
| 201 | https://api.biosimulations.org/runs/6721fbb4953bc3bf105eda4c | https://api.biosimulations.org/results/6721fbb4953bc3bf105eda4c/download | https://api.biosimulations.org/logs/6721fbb4953bc3bf105eda4c?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml' | \ No newline at end of file +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
| 201 | https://api.biosimulations.org/runs/67223e492e0c0591a7c88848 | https://api.biosimulations.org/results/67223e492e0c0591a7c88848/download | https://api.biosimulations.org/logs/67223e492e0c0591a7c88848?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
Reached maximum number of steps
| Reached maximum number of steps | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
| view
download
logs

ERROR MESSAGE:
Reached maximum number of steps | +| 1 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/67223e4b2e0c0591a7c8884b | https://api.biosimulations.org/results/67223e4b2e0c0591a7c8884b/download | https://api.biosimulations.org/logs/67223e4b2e0c0591a7c8884b?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml' | +| 2 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
| 201 | https://api.biosimulations.org/runs/67223e4df9c43d155d41c438 | https://api.biosimulations.org/results/67223e4df9c43d155d41c438/download | https://api.biosimulations.org/logs/67223e4df9c43d155d41c438?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`). | | | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`). | +| 3 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
| 201 | https://api.biosimulations.org/runs/67223e4ff9c43d155d41c43b | https://api.biosimulations.org/results/67223e4ff9c43d155d41c43b/download | https://api.biosimulations.org/logs/67223e4ff9c43d155d41c43b?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0). | | | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0). | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
| 201 | https://api.biosimulations.org/runs/67223e512e0c0591a7c88850 | https://api.biosimulations.org/results/67223e512e0c0591a7c88850/download | https://api.biosimulations.org/logs/67223e512e0c0591a7c88850?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
| 201 | https://api.biosimulations.org/runs/67223e542e0c0591a7c88853 | https://api.biosimulations.org/results/67223e542e0c0591a7c88853/download | https://api.biosimulations.org/logs/67223e542e0c0591a7c88853?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
| 201 | https://api.biosimulations.org/runs/67223e562e0c0591a7c88856 | https://api.biosimulations.org/results/67223e562e0c0591a7c88856/download | https://api.biosimulations.org/logs/67223e562e0c0591a7c88856?includeOutput=true |
✅ PASSview
download
logs
| | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| view
download
logs | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
| 201 | https://api.biosimulations.org/runs/67223e58f9c43d155d41c442 | https://api.biosimulations.org/results/67223e58f9c43d155d41c442/download | https://api.biosimulations.org/logs/67223e58f9c43d155d41c442?includeOutput=true |
✅ PASSview
download
logs
| | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| view
download
logs | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
| 201 | https://api.biosimulations.org/runs/67223e5b953bc3bf105ee8e8 | https://api.biosimulations.org/results/67223e5b953bc3bf105ee8e8/download | https://api.biosimulations.org/logs/67223e5b953bc3bf105ee8e8?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000 | | | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000 | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
| 201 | https://api.biosimulations.org/runs/67223e5d2e0c0591a7c8885a | https://api.biosimulations.org/results/67223e5d2e0c0591a7c8885a/download | https://api.biosimulations.org/logs/67223e5d2e0c0591a7c8885a?includeOutput=true |
✅ PASSview
download
logs
| | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| view
download
logs | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
| 201 | https://api.biosimulations.org/runs/67223e5f953bc3bf105ee8f3 | https://api.biosimulations.org/results/67223e5f953bc3bf105ee8f3/download | https://api.biosimulations.org/logs/67223e5f953bc3bf105ee8f3?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/67223e61953bc3bf105ee8f9 | https://api.biosimulations.org/results/67223e61953bc3bf105ee8f9/download | https://api.biosimulations.org/logs/67223e61953bc3bf105ee8f9?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml' | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/67223e63f9c43d155d41c45e | https://api.biosimulations.org/results/67223e63f9c43d155d41c45e/download | https://api.biosimulations.org/logs/67223e63f9c43d155d41c45e?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml' | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
| 201 | https://api.biosimulations.org/runs/67223e652e0c0591a7c88870 | https://api.biosimulations.org/results/67223e652e0c0591a7c88870/download | https://api.biosimulations.org/logs/67223e652e0c0591a7c88870?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml' | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/67223e67953bc3bf105ee90b | https://api.biosimulations.org/results/67223e67953bc3bf105ee90b/download | https://api.biosimulations.org/logs/67223e67953bc3bf105ee90b?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml' | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
| 201 | https://api.biosimulations.org/runs/67223e69953bc3bf105ee910 | https://api.biosimulations.org/results/67223e69953bc3bf105ee910/download | https://api.biosimulations.org/logs/67223e69953bc3bf105ee910?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
| +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
| 201 | https://api.biosimulations.org/runs/67223e6b953bc3bf105ee917 | https://api.biosimulations.org/results/67223e6b953bc3bf105ee917/download | https://api.biosimulations.org/logs/67223e6b953bc3bf105ee917?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`). | | | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`). | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
| 201 | https://api.biosimulations.org/runs/67223e6d953bc3bf105ee91f | https://api.biosimulations.org/results/67223e6d953bc3bf105ee91f/download | https://api.biosimulations.org/logs/67223e6d953bc3bf105ee91f?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml' | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
| 201 | https://api.biosimulations.org/runs/67223e6f953bc3bf105ee929 | https://api.biosimulations.org/results/67223e6f953bc3bf105ee929/download | https://api.biosimulations.org/logs/67223e6f953bc3bf105ee929?includeOutput=true |
✅ PASSview
download
logs
| | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| view
download
logs | +| 19 |
vcellhttps://github.com/virtualcell/vcell
| 201 | https://api.biosimulations.org/runs/67223e722e0c0591a7c888b9 | https://api.biosimulations.org/results/67223e722e0c0591a7c888b9/download | https://api.biosimulations.org/logs/67223e722e0c0591a7c888b9?includeOutput=true |
Noneview
download
logs
| | | | view
download
logs | |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
| view
download
logs | +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
| 201 | https://api.biosimulations.org/runs/67223e752e0c0591a7c888d4 | https://api.biosimulations.org/results/67223e752e0c0591a7c888d4/download | https://api.biosimulations.org/logs/67223e752e0c0591a7c888d4?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml' | \ No newline at end of file diff --git a/utils/__init__.py b/utils/__init__.py index 9a1f487a..ab1041b7 100644 --- a/utils/__init__.py +++ b/utils/__init__.py @@ -1204,7 +1204,7 @@ def run_biosimulators_remotely(engine_keys, pattern_max_number_of_steps = "simulation failed: Reached maximum number of steps" pattern_match = re.search(pattern_max_number_of_steps, log_yml_str) if pattern_match: - status = 'WARNING' + status = 'FAIL' error_message = 'Reached maximum number of steps' elif log_yml_dict['status'] == 'FAILED': status = 'FAIL' From 4842812b67903ce1ad52f7fad3fcf3efa2691b95 Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Wed, 30 Oct 2024 14:23:48 +0000 Subject: [PATCH 10/24] add engine_keys input to run_biosimulators_locally function --- SBML/tests/test_biosimulators_local.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/SBML/tests/test_biosimulators_local.py b/SBML/tests/test_biosimulators_local.py index 8fb2eb22..e206d92a 100644 --- a/SBML/tests/test_biosimulators_local.py +++ b/SBML/tests/test_biosimulators_local.py @@ -39,7 +39,10 @@ print('d1 plots will be saved in:', d1_plots_local_dir) -results_local = utils.run_biosimulators_locally(sedml_file_name=sedml_file_name, +engine_keys = list(utils.ENGINES.keys()) + +results_local = utils.run_biosimulators_locally(engine_keys, + sedml_file_name=sedml_file_name, sbml_file_name=sbml_file_name, d1_plots_local_dir=d1_plots_local_dir, test_folder=test_folder) From a9681bcfed8b8b7189d6c7ffa5651f6122e3aa0d Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Wed, 30 Oct 2024 14:56:56 +0000 Subject: [PATCH 11/24] add draft process_log_yml and fetch exeption_type from log yml --- .../results_compatibility_biosimulators.md | 46 +++--- SBML/tests/results_remote.json | 156 +++++++++--------- SBML/tests/results_remote.md | 46 +++--- utils/__init__.py | 27 +++ 4 files changed, 151 insertions(+), 124 deletions(-) diff --git a/SBML/tests/results_compatibility_biosimulators.md b/SBML/tests/results_compatibility_biosimulators.md index fda86f64..fb969c89 100644 --- a/SBML/tests/results_compatibility_biosimulators.md +++ b/SBML/tests/results_compatibility_biosimulators.md @@ -1,23 +1,23 @@ -| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | -|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
|
❌ FAILview
download
logs

ERROR MESSAGE:
Reached maximum number of steps
| ✅ PASS | plot | plot | -| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1```
| plot | plot | -| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1```
| plot | plot | -| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1```
| | | -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1```
| plot | plot | -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1```
| plot | plot | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1```
| plot | plot | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1```
| plot | plot | -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1```
| | | -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1```
| | | -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1```
| | | -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1```
| | | -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1```
| plot | plot | -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1```
| plot | plot | -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1```
| | | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | -| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
Noneview
download
logs
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1```
| | | -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1```
| | | \ No newline at end of file +| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | +|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------| +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
|
❌ FAILview
download
logs

ERROR MESSAGE:
Reached maximum number of steps
| ✅ PASS | plot | plot | +| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1```
| plot | plot | +| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1```
| plot | plot | +| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1```
| | | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1```
| plot | plot | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1```
| plot | plot | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1```
| plot | plot | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1```
| plot | plot | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1```
| | | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1```
| | | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1```
| | | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1```
| | | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1```
| plot | plot | +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1```
| plot | plot | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1```
| | | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | +| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
Noneview
download
logs
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1```
| | | +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1```
| | | \ No newline at end of file diff --git a/SBML/tests/results_remote.json b/SBML/tests/results_remote.json index 3209a555..b737227a 100644 --- a/SBML/tests/results_remote.json +++ b/SBML/tests/results_remote.json @@ -1,9 +1,9 @@ { "amici": { "response": 201, - "view": "https://api.biosimulations.org/runs/67223f6e953bc3bf105ee9b2", - "download": "https://api.biosimulations.org/results/67223f6e953bc3bf105ee9b2/download", - "logs": "https://api.biosimulations.org/logs/67223f6e953bc3bf105ee9b2?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67224854953bc3bf105ef4f7", + "download": "https://api.biosimulations.org/results/67224854953bc3bf105ef4f7/download", + "logs": "https://api.biosimulations.org/logs/67224854953bc3bf105ef4f7?includeOutput=true", "status": "FAIL", "error_message": "Reached maximum number of steps", "exception_type": "", @@ -11,59 +11,59 @@ }, "brian2": { "response": 201, - "view": "https://api.biosimulations.org/runs/67223f70953bc3bf105ee9b5", - "download": "https://api.biosimulations.org/results/67223f70953bc3bf105ee9b5/download", - "logs": "https://api.biosimulations.org/logs/67223f70953bc3bf105ee9b5?includeOutput=true", + "view": "https://api.biosimulations.org/runs/672248562e0c0591a7c893ea", + "download": "https://api.biosimulations.org/results/672248562e0c0591a7c893ea/download", + "logs": "https://api.biosimulations.org/logs/672248562e0c0591a7c893ea?includeOutput=true", "status": "FAIL", "error_message": "No module named 'libsbml'", - "exception_type": "", + "exception_type": "ModuleNotFoundError", "tasks_output": "" }, "bionetgen": { "response": 201, - "view": "https://api.biosimulations.org/runs/67223f72953bc3bf105ee9b8", - "download": "https://api.biosimulations.org/results/67223f72953bc3bf105ee9b8/download", - "logs": "https://api.biosimulations.org/logs/67223f72953bc3bf105ee9b8?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67224858f9c43d155d41cf8f", + "download": "https://api.biosimulations.org/results/67224858f9c43d155d41cf8f/download", + "logs": "https://api.biosimulations.org/logs/67224858f9c43d155d41cf8f?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).", - "exception_type": "", + "exception_type": "CombineArchiveExecutionError", "tasks_output": "" }, "boolnet": { "response": 201, - "view": "https://api.biosimulations.org/runs/67223f74953bc3bf105ee9bd", - "download": "https://api.biosimulations.org/results/67223f74953bc3bf105ee9bd/download", - "logs": "https://api.biosimulations.org/logs/67223f74953bc3bf105ee9bd?includeOutput=true", + "view": "https://api.biosimulations.org/runs/6722485a953bc3bf105ef500", + "download": "https://api.biosimulations.org/results/6722485a953bc3bf105ef500/download", + "logs": "https://api.biosimulations.org/logs/6722485a953bc3bf105ef500?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).", - "exception_type": "", + "exception_type": "CombineArchiveExecutionError", "tasks_output": "" }, "cbmpy": { "response": 201, - "view": "https://api.biosimulations.org/runs/67223f762e0c0591a7c88929", - "download": "https://api.biosimulations.org/results/67223f762e0c0591a7c88929/download", - "logs": "https://api.biosimulations.org/logs/67223f762e0c0591a7c88929?includeOutput=true", + "view": "https://api.biosimulations.org/runs/6722485cf9c43d155d41cf93", + "download": "https://api.biosimulations.org/results/6722485cf9c43d155d41cf93/download", + "logs": "https://api.biosimulations.org/logs/6722485cf9c43d155d41cf93?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", - "exception_type": "", + "exception_type": "CombineArchiveExecutionError", "tasks_output": "" }, "cobrapy": { "response": 201, - "view": "https://api.biosimulations.org/runs/67223f792e0c0591a7c8892e", - "download": "https://api.biosimulations.org/results/67223f792e0c0591a7c8892e/download", - "logs": "https://api.biosimulations.org/logs/67223f792e0c0591a7c8892e?includeOutput=true", + "view": "https://api.biosimulations.org/runs/6722485ef9c43d155d41cf96", + "download": "https://api.biosimulations.org/results/6722485ef9c43d155d41cf96/download", + "logs": "https://api.biosimulations.org/logs/6722485ef9c43d155d41cf96?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", - "exception_type": "", + "exception_type": "CombineArchiveExecutionError", "tasks_output": "" }, "copasi": { "response": 201, - "view": "https://api.biosimulations.org/runs/67223f7b953bc3bf105ee9c4", - "download": "https://api.biosimulations.org/results/67223f7b953bc3bf105ee9c4/download", - "logs": "https://api.biosimulations.org/logs/67223f7b953bc3bf105ee9c4?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67224861f9c43d155d41cf9c", + "download": "https://api.biosimulations.org/results/67224861f9c43d155d41cf9c/download", + "logs": "https://api.biosimulations.org/logs/67224861f9c43d155d41cf9c?includeOutput=true", "status": "pass", "error_message": "", "exception_type": "", @@ -71,9 +71,9 @@ }, "gillespy2": { "response": 201, - "view": "https://api.biosimulations.org/runs/67223f7df9c43d155d41c52b", - "download": "https://api.biosimulations.org/results/67223f7df9c43d155d41c52b/download", - "logs": "https://api.biosimulations.org/logs/67223f7df9c43d155d41c52b?includeOutput=true", + "view": "https://api.biosimulations.org/runs/672248632e0c0591a7c893fb", + "download": "https://api.biosimulations.org/results/672248632e0c0591a7c893fb/download", + "logs": "https://api.biosimulations.org/logs/672248632e0c0591a7c893fb?includeOutput=true", "status": "pass", "error_message": "", "exception_type": "", @@ -81,19 +81,19 @@ }, "ginsim": { "response": 201, - "view": "https://api.biosimulations.org/runs/67223f80953bc3bf105ee9cb", - "download": "https://api.biosimulations.org/results/67223f80953bc3bf105ee9cb/download", - "logs": "https://api.biosimulations.org/logs/67223f80953bc3bf105ee9cb?includeOutput=true", + "view": "https://api.biosimulations.org/runs/672248652e0c0591a7c89402", + "download": "https://api.biosimulations.org/results/672248652e0c0591a7c89402/download", + "logs": "https://api.biosimulations.org/logs/672248652e0c0591a7c89402?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000", - "exception_type": "", + "exception_type": "CombineArchiveExecutionError", "tasks_output": "" }, "libsbmlsim": { "response": 201, - "view": "https://api.biosimulations.org/runs/67223f82953bc3bf105ee9d0", - "download": "https://api.biosimulations.org/results/67223f82953bc3bf105ee9d0/download", - "logs": "https://api.biosimulations.org/logs/67223f82953bc3bf105ee9d0?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67224867f9c43d155d41cfa3", + "download": "https://api.biosimulations.org/results/67224867f9c43d155d41cfa3/download", + "logs": "https://api.biosimulations.org/logs/67224867f9c43d155d41cfa3?includeOutput=true", "status": "pass", "error_message": "", "exception_type": "", @@ -101,89 +101,89 @@ }, "masspy": { "response": 201, - "view": "https://api.biosimulations.org/runs/67223f84953bc3bf105ee9dd", - "download": "https://api.biosimulations.org/results/67223f84953bc3bf105ee9dd/download", - "logs": "https://api.biosimulations.org/logs/67223f84953bc3bf105ee9dd?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67224869f9c43d155d41cfb3", + "download": "https://api.biosimulations.org/results/67224869f9c43d155d41cfb3/download", + "logs": "https://api.biosimulations.org/logs/67224869f9c43d155d41cfb3?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n The following targets are not supported:\n - /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']\n - /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']\n - /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']\n - /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']\n \n Only following targets are supported:\n - I\n - SEC\n - V\n - W", - "exception_type": "", + "exception_type": "CombineArchiveExecutionError", "tasks_output": "" }, "netpyne": { "response": 201, - "view": "https://api.biosimulations.org/runs/67223f87f9c43d155d41c547", - "download": "https://api.biosimulations.org/results/67223f87f9c43d155d41c547/download", - "logs": "https://api.biosimulations.org/logs/67223f87f9c43d155d41c547?includeOutput=true", + "view": "https://api.biosimulations.org/runs/6722486bf9c43d155d41cfb8", + "download": "https://api.biosimulations.org/results/6722486bf9c43d155d41cfb8/download", + "logs": "https://api.biosimulations.org/logs/6722486bf9c43d155d41cfb8?includeOutput=true", "status": "FAIL", "error_message": "No module named 'libsbml'", - "exception_type": "", + "exception_type": "ModuleNotFoundError", "tasks_output": "" }, "neuron": { "response": 201, - "view": "https://api.biosimulations.org/runs/67223f89f9c43d155d41c54b", - "download": "https://api.biosimulations.org/results/67223f89f9c43d155d41c54b/download", - "logs": "https://api.biosimulations.org/logs/67223f89f9c43d155d41c54b?includeOutput=true", + "view": "https://api.biosimulations.org/runs/6722486c2e0c0591a7c8941c", + "download": "https://api.biosimulations.org/results/6722486c2e0c0591a7c8941c/download", + "logs": "https://api.biosimulations.org/logs/6722486c2e0c0591a7c8941c?includeOutput=true", "status": "FAIL", "error_message": "No module named 'libsbml'", - "exception_type": "", + "exception_type": "ModuleNotFoundError", "tasks_output": "" }, "opencor": { "response": 201, - "view": "https://api.biosimulations.org/runs/67223f8b953bc3bf105ee9ff", - "download": "https://api.biosimulations.org/results/67223f8b953bc3bf105ee9ff/download", - "logs": "https://api.biosimulations.org/logs/67223f8b953bc3bf105ee9ff?includeOutput=true", + "view": "https://api.biosimulations.org/runs/6722486e2e0c0591a7c89429", + "download": "https://api.biosimulations.org/results/6722486e2e0c0591a7c89429/download", + "logs": "https://api.biosimulations.org/logs/6722486e2e0c0591a7c89429?includeOutput=true", "status": "FAIL", "error_message": "No module named 'libsbml'", - "exception_type": "", + "exception_type": "ModuleNotFoundError", "tasks_output": "" }, "pyneuroml": { "response": 201, - "view": "https://api.biosimulations.org/runs/67223f8df9c43d155d41c569", - "download": "https://api.biosimulations.org/results/67223f8df9c43d155d41c569/download", - "logs": "https://api.biosimulations.org/logs/67223f8df9c43d155d41c569?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67224870f9c43d155d41cfcf", + "download": "https://api.biosimulations.org/results/67224870f9c43d155d41cfcf/download", + "logs": "https://api.biosimulations.org/logs/67224870f9c43d155d41cfcf?includeOutput=true", "status": "FAIL", "error_message": "No module named 'libsbml'", - "exception_type": "", + "exception_type": "ModuleNotFoundError", "tasks_output": "" }, "pysces": { "response": 201, - "view": "https://api.biosimulations.org/runs/67223f8ff9c43d155d41c570", - "download": "https://api.biosimulations.org/results/67223f8ff9c43d155d41c570/download", - "logs": "https://api.biosimulations.org/logs/67223f8ff9c43d155d41c570?includeOutput=true", + "view": "https://api.biosimulations.org/runs/672248722e0c0591a7c89434", + "download": "https://api.biosimulations.org/results/672248722e0c0591a7c89434/download", + "logs": "https://api.biosimulations.org/logs/672248722e0c0591a7c89434?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", - "exception_type": "", + "exception_type": "CombineArchiveExecutionError", "tasks_output": "" }, "rbapy": { "response": 201, - "view": "https://api.biosimulations.org/runs/67223f91953bc3bf105eea14", - "download": "https://api.biosimulations.org/results/67223f91953bc3bf105eea14/download", - "logs": "https://api.biosimulations.org/logs/67223f91953bc3bf105eea14?includeOutput=true", + "view": "https://api.biosimulations.org/runs/672248742e0c0591a7c89440", + "download": "https://api.biosimulations.org/results/672248742e0c0591a7c89440/download", + "logs": "https://api.biosimulations.org/logs/672248742e0c0591a7c89440?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).", - "exception_type": "", + "exception_type": "CombineArchiveExecutionError", "tasks_output": "" }, "smoldyn": { "response": 201, - "view": "https://api.biosimulations.org/runs/67223f932e0c0591a7c8897a", - "download": "https://api.biosimulations.org/results/67223f932e0c0591a7c8897a/download", - "logs": "https://api.biosimulations.org/logs/67223f932e0c0591a7c8897a?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67224876953bc3bf105ef568", + "download": "https://api.biosimulations.org/results/67224876953bc3bf105ef568/download", + "logs": "https://api.biosimulations.org/logs/67224876953bc3bf105ef568?includeOutput=true", "status": "FAIL", "error_message": "No module named 'libsbml'", - "exception_type": "", + "exception_type": "ModuleNotFoundError", "tasks_output": "" }, "tellurium": { "response": 201, - "view": "https://api.biosimulations.org/runs/67223f95f9c43d155d41c576", - "download": "https://api.biosimulations.org/results/67223f95f9c43d155d41c576/download", - "logs": "https://api.biosimulations.org/logs/67223f95f9c43d155d41c576?includeOutput=true", + "view": "https://api.biosimulations.org/runs/672248782e0c0591a7c89457", + "download": "https://api.biosimulations.org/results/672248782e0c0591a7c89457/download", + "logs": "https://api.biosimulations.org/logs/672248782e0c0591a7c89457?includeOutput=true", "status": "pass", "error_message": "", "exception_type": "", @@ -191,9 +191,9 @@ }, "vcell": { "response": 201, - "view": "https://api.biosimulations.org/runs/67223f99f9c43d155d41c58e", - "download": "https://api.biosimulations.org/results/67223f99f9c43d155d41c58e/download", - "logs": "https://api.biosimulations.org/logs/67223f99f9c43d155d41c58e?includeOutput=true", + "view": "https://api.biosimulations.org/runs/6722487c953bc3bf105ef57e", + "download": "https://api.biosimulations.org/results/6722487c953bc3bf105ef57e/download", + "logs": "https://api.biosimulations.org/logs/6722487c953bc3bf105ef57e?includeOutput=true", "status": null, "error_message": "", "exception_type": "", @@ -201,12 +201,12 @@ }, "xpp": { "response": 201, - "view": "https://api.biosimulations.org/runs/67223f9bf9c43d155d41c599", - "download": "https://api.biosimulations.org/results/67223f9bf9c43d155d41c599/download", - "logs": "https://api.biosimulations.org/logs/67223f9bf9c43d155d41c599?includeOutput=true", + "view": "https://api.biosimulations.org/runs/6722487e953bc3bf105ef59c", + "download": "https://api.biosimulations.org/results/6722487e953bc3bf105ef59c/download", + "logs": "https://api.biosimulations.org/logs/6722487e953bc3bf105ef59c?includeOutput=true", "status": "FAIL", "error_message": "No module named 'libsbml'", - "exception_type": "", + "exception_type": "ModuleNotFoundError", "tasks_output": "" } } \ No newline at end of file diff --git a/SBML/tests/results_remote.md b/SBML/tests/results_remote.md index 7c106cfe..64791b4d 100644 --- a/SBML/tests/results_remote.md +++ b/SBML/tests/results_remote.md @@ -1,23 +1,23 @@ -| | Engine | response | view | download | logs | pass / FAIL | Error | Type | tasks_output | links | d1 | Compatibility | links_error | -|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|-----------:|:-------------------------------------------------------------|:-------------------------------------------------------------------------|:--------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------|:---------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
| 201 | https://api.biosimulations.org/runs/67223e492e0c0591a7c88848 | https://api.biosimulations.org/results/67223e492e0c0591a7c88848/download | https://api.biosimulations.org/logs/67223e492e0c0591a7c88848?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
Reached maximum number of steps
| Reached maximum number of steps | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
| view
download
logs

ERROR MESSAGE:
Reached maximum number of steps | -| 1 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/67223e4b2e0c0591a7c8884b | https://api.biosimulations.org/results/67223e4b2e0c0591a7c8884b/download | https://api.biosimulations.org/logs/67223e4b2e0c0591a7c8884b?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml' | -| 2 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
| 201 | https://api.biosimulations.org/runs/67223e4df9c43d155d41c438 | https://api.biosimulations.org/results/67223e4df9c43d155d41c438/download | https://api.biosimulations.org/logs/67223e4df9c43d155d41c438?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`). | | | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`). | -| 3 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
| 201 | https://api.biosimulations.org/runs/67223e4ff9c43d155d41c43b | https://api.biosimulations.org/results/67223e4ff9c43d155d41c43b/download | https://api.biosimulations.org/logs/67223e4ff9c43d155d41c43b?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0). | | | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0). | -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
| 201 | https://api.biosimulations.org/runs/67223e512e0c0591a7c88850 | https://api.biosimulations.org/results/67223e512e0c0591a7c88850/download | https://api.biosimulations.org/logs/67223e512e0c0591a7c88850?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
| 201 | https://api.biosimulations.org/runs/67223e542e0c0591a7c88853 | https://api.biosimulations.org/results/67223e542e0c0591a7c88853/download | https://api.biosimulations.org/logs/67223e542e0c0591a7c88853?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
| 201 | https://api.biosimulations.org/runs/67223e562e0c0591a7c88856 | https://api.biosimulations.org/results/67223e562e0c0591a7c88856/download | https://api.biosimulations.org/logs/67223e562e0c0591a7c88856?includeOutput=true |
✅ PASSview
download
logs
| | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| view
download
logs | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
| 201 | https://api.biosimulations.org/runs/67223e58f9c43d155d41c442 | https://api.biosimulations.org/results/67223e58f9c43d155d41c442/download | https://api.biosimulations.org/logs/67223e58f9c43d155d41c442?includeOutput=true |
✅ PASSview
download
logs
| | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| view
download
logs | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
| 201 | https://api.biosimulations.org/runs/67223e5b953bc3bf105ee8e8 | https://api.biosimulations.org/results/67223e5b953bc3bf105ee8e8/download | https://api.biosimulations.org/logs/67223e5b953bc3bf105ee8e8?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000 | | | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000 | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
| 201 | https://api.biosimulations.org/runs/67223e5d2e0c0591a7c8885a | https://api.biosimulations.org/results/67223e5d2e0c0591a7c8885a/download | https://api.biosimulations.org/logs/67223e5d2e0c0591a7c8885a?includeOutput=true |
✅ PASSview
download
logs
| | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| view
download
logs | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
| 201 | https://api.biosimulations.org/runs/67223e5f953bc3bf105ee8f3 | https://api.biosimulations.org/results/67223e5f953bc3bf105ee8f3/download | https://api.biosimulations.org/logs/67223e5f953bc3bf105ee8f3?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W | -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/67223e61953bc3bf105ee8f9 | https://api.biosimulations.org/results/67223e61953bc3bf105ee8f9/download | https://api.biosimulations.org/logs/67223e61953bc3bf105ee8f9?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml' | -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/67223e63f9c43d155d41c45e | https://api.biosimulations.org/results/67223e63f9c43d155d41c45e/download | https://api.biosimulations.org/logs/67223e63f9c43d155d41c45e?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml' | -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
| 201 | https://api.biosimulations.org/runs/67223e652e0c0591a7c88870 | https://api.biosimulations.org/results/67223e652e0c0591a7c88870/download | https://api.biosimulations.org/logs/67223e652e0c0591a7c88870?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml' | -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/67223e67953bc3bf105ee90b | https://api.biosimulations.org/results/67223e67953bc3bf105ee90b/download | https://api.biosimulations.org/logs/67223e67953bc3bf105ee90b?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml' | -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
| 201 | https://api.biosimulations.org/runs/67223e69953bc3bf105ee910 | https://api.biosimulations.org/results/67223e69953bc3bf105ee910/download | https://api.biosimulations.org/logs/67223e69953bc3bf105ee910?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
| -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
| 201 | https://api.biosimulations.org/runs/67223e6b953bc3bf105ee917 | https://api.biosimulations.org/results/67223e6b953bc3bf105ee917/download | https://api.biosimulations.org/logs/67223e6b953bc3bf105ee917?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`). | | | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`). | -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
| 201 | https://api.biosimulations.org/runs/67223e6d953bc3bf105ee91f | https://api.biosimulations.org/results/67223e6d953bc3bf105ee91f/download | https://api.biosimulations.org/logs/67223e6d953bc3bf105ee91f?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml' | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
| 201 | https://api.biosimulations.org/runs/67223e6f953bc3bf105ee929 | https://api.biosimulations.org/results/67223e6f953bc3bf105ee929/download | https://api.biosimulations.org/logs/67223e6f953bc3bf105ee929?includeOutput=true |
✅ PASSview
download
logs
| | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| view
download
logs | -| 19 |
vcellhttps://github.com/virtualcell/vcell
| 201 | https://api.biosimulations.org/runs/67223e722e0c0591a7c888b9 | https://api.biosimulations.org/results/67223e722e0c0591a7c888b9/download | https://api.biosimulations.org/logs/67223e722e0c0591a7c888b9?includeOutput=true |
Noneview
download
logs
| | | | view
download
logs | |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
| view
download
logs | -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
| 201 | https://api.biosimulations.org/runs/67223e752e0c0591a7c888d4 | https://api.biosimulations.org/results/67223e752e0c0591a7c888d4/download | https://api.biosimulations.org/logs/67223e752e0c0591a7c888d4?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'
| No module named 'libsbml' | | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml' | \ No newline at end of file +| | Engine | response | view | download | logs | pass / FAIL | Error | Type | tasks_output | links | d1 | Compatibility | links_error | +|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|-----------:|:-------------------------------------------------------------|:-------------------------------------------------------------------------|:--------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------|:---------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
| 201 | https://api.biosimulations.org/runs/67224854953bc3bf105ef4f7 | https://api.biosimulations.org/results/67224854953bc3bf105ef4f7/download | https://api.biosimulations.org/logs/67224854953bc3bf105ef4f7?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
Reached maximum number of steps
| Reached maximum number of steps | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
| view
download
logs

ERROR MESSAGE:
Reached maximum number of steps | +| 1 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/672248562e0c0591a7c893ea | https://api.biosimulations.org/results/672248562e0c0591a7c893ea/download | https://api.biosimulations.org/logs/672248562e0c0591a7c893ea?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 2 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
| 201 | https://api.biosimulations.org/runs/67224858f9c43d155d41cf8f | https://api.biosimulations.org/results/67224858f9c43d155d41cf8f/download | https://api.biosimulations.org/logs/67224858f9c43d155d41cf8f?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`). | CombineArchiveExecutionError | | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError | +| 3 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
| 201 | https://api.biosimulations.org/runs/6722485a953bc3bf105ef500 | https://api.biosimulations.org/results/6722485a953bc3bf105ef500/download | https://api.biosimulations.org/logs/6722485a953bc3bf105ef500?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0). | CombineArchiveExecutionError | | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
| 201 | https://api.biosimulations.org/runs/6722485cf9c43d155d41cf93 | https://api.biosimulations.org/results/6722485cf9c43d155d41cf93/download | https://api.biosimulations.org/logs/6722485cf9c43d155d41cf93?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | CombineArchiveExecutionError | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
| 201 | https://api.biosimulations.org/runs/6722485ef9c43d155d41cf96 | https://api.biosimulations.org/results/6722485ef9c43d155d41cf96/download | https://api.biosimulations.org/logs/6722485ef9c43d155d41cf96?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | CombineArchiveExecutionError | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
| 201 | https://api.biosimulations.org/runs/67224861f9c43d155d41cf9c | https://api.biosimulations.org/results/67224861f9c43d155d41cf9c/download | https://api.biosimulations.org/logs/67224861f9c43d155d41cf9c?includeOutput=true |
✅ PASSview
download
logs
| | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| view
download
logs | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
| 201 | https://api.biosimulations.org/runs/672248632e0c0591a7c893fb | https://api.biosimulations.org/results/672248632e0c0591a7c893fb/download | https://api.biosimulations.org/logs/672248632e0c0591a7c893fb?includeOutput=true |
✅ PASSview
download
logs
| | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| view
download
logs | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
| 201 | https://api.biosimulations.org/runs/672248652e0c0591a7c89402 | https://api.biosimulations.org/results/672248652e0c0591a7c89402/download | https://api.biosimulations.org/logs/672248652e0c0591a7c89402?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000 | CombineArchiveExecutionError | | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
| 201 | https://api.biosimulations.org/runs/67224867f9c43d155d41cfa3 | https://api.biosimulations.org/results/67224867f9c43d155d41cfa3/download | https://api.biosimulations.org/logs/67224867f9c43d155d41cfa3?includeOutput=true |
✅ PASSview
download
logs
| | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| view
download
logs | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
| 201 | https://api.biosimulations.org/runs/67224869f9c43d155d41cfb3 | https://api.biosimulations.org/results/67224869f9c43d155d41cfb3/download | https://api.biosimulations.org/logs/67224869f9c43d155d41cfb3?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W | CombineArchiveExecutionError | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W

ERROR TYPE:
CombineArchiveExecutionError | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/6722486bf9c43d155d41cfb8 | https://api.biosimulations.org/results/6722486bf9c43d155d41cfb8/download | https://api.biosimulations.org/logs/6722486bf9c43d155d41cfb8?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/6722486c2e0c0591a7c8941c | https://api.biosimulations.org/results/6722486c2e0c0591a7c8941c/download | https://api.biosimulations.org/logs/6722486c2e0c0591a7c8941c?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
| 201 | https://api.biosimulations.org/runs/6722486e2e0c0591a7c89429 | https://api.biosimulations.org/results/6722486e2e0c0591a7c89429/download | https://api.biosimulations.org/logs/6722486e2e0c0591a7c89429?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/67224870f9c43d155d41cfcf | https://api.biosimulations.org/results/67224870f9c43d155d41cfcf/download | https://api.biosimulations.org/logs/67224870f9c43d155d41cfcf?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
| 201 | https://api.biosimulations.org/runs/672248722e0c0591a7c89434 | https://api.biosimulations.org/results/672248722e0c0591a7c89434/download | https://api.biosimulations.org/logs/672248722e0c0591a7c89434?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
| CombineArchiveExecutionError | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError | +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
| 201 | https://api.biosimulations.org/runs/672248742e0c0591a7c89440 | https://api.biosimulations.org/results/672248742e0c0591a7c89440/download | https://api.biosimulations.org/logs/672248742e0c0591a7c89440?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`). | CombineArchiveExecutionError | | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
| 201 | https://api.biosimulations.org/runs/67224876953bc3bf105ef568 | https://api.biosimulations.org/results/67224876953bc3bf105ef568/download | https://api.biosimulations.org/logs/67224876953bc3bf105ef568?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
| 201 | https://api.biosimulations.org/runs/672248782e0c0591a7c89457 | https://api.biosimulations.org/results/672248782e0c0591a7c89457/download | https://api.biosimulations.org/logs/672248782e0c0591a7c89457?includeOutput=true |
✅ PASSview
download
logs
| | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| view
download
logs | +| 19 |
vcellhttps://github.com/virtualcell/vcell
| 201 | https://api.biosimulations.org/runs/6722487c953bc3bf105ef57e | https://api.biosimulations.org/results/6722487c953bc3bf105ef57e/download | https://api.biosimulations.org/logs/6722487c953bc3bf105ef57e?includeOutput=true |
Noneview
download
logs
| | | | view
download
logs | |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
| view
download
logs | +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
| 201 | https://api.biosimulations.org/runs/6722487e953bc3bf105ef59c | https://api.biosimulations.org/results/6722487e953bc3bf105ef59c/download | https://api.biosimulations.org/logs/6722487e953bc3bf105ef59c?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | \ No newline at end of file diff --git a/utils/__init__.py b/utils/__init__.py index ab1041b7..df235bfa 100644 --- a/utils/__init__.py +++ b/utils/__init__.py @@ -1156,6 +1156,32 @@ def create_results_table(results, sbml_filepath, sedml_filepath, output_dir): return results_table +def process_log_yml(log_yml_path): + status = "" + error_message = "" + exception_type = "" + + with open(log_yml_path) as f: + log_yml_dict = yaml.safe_load(f) + log_yml_str = str(log_yml_dict) + if log_yml_dict['status'] == 'SUCCEEDED': + status = 'pass' + # to deal with cases like amici where the d1 plot max x is half the expected value + pattern_max_number_of_steps = "simulation failed: Reached maximum number of steps" + pattern_match = re.search(pattern_max_number_of_steps, log_yml_str) + if pattern_match: + status = 'FAIL' + error_message = 'Reached maximum number of steps' + elif log_yml_dict['status'] == 'FAILED': + status = 'FAIL' + exception = log_yml_dict['exception'] + error_message = exception['message'] + exception_type = exception['type'] + else: + status = None + + return status, error_message, exception_type + def run_biosimulators_remotely(engine_keys, sedml_file_name, @@ -1210,6 +1236,7 @@ def run_biosimulators_remotely(engine_keys, status = 'FAIL' exception = log_yml_dict['exception'] error_message = exception['message'] + exception_type = exception['type'] else: status = None results_remote[e]["status"] = status From f99697f4ca4e128760e9831be48fe2a211d9583f Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Wed, 30 Oct 2024 16:59:28 +0000 Subject: [PATCH 12/24] Add same error handling to local results and update table. Also remove tasks_output from results output. --- .../results_compatibility_biosimulators.md | 46 ++--- SBML/tests/results_local.json | 67 ++++--- SBML/tests/results_local.md | 46 ++--- SBML/tests/results_remote.json | 189 ++++++++---------- SBML/tests/results_remote.md | 46 ++--- utils/__init__.py | 118 +++++------ 6 files changed, 245 insertions(+), 267 deletions(-) diff --git a/SBML/tests/results_compatibility_biosimulators.md b/SBML/tests/results_compatibility_biosimulators.md index fb969c89..1b4c96dd 100644 --- a/SBML/tests/results_compatibility_biosimulators.md +++ b/SBML/tests/results_compatibility_biosimulators.md @@ -1,23 +1,23 @@ -| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | -|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
|
❌ FAILview
download
logs

ERROR MESSAGE:
Reached maximum number of steps
| ✅ PASS | plot | plot | -| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1```
| plot | plot | -| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1```
| plot | plot | -| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1```
| | | -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1```
| plot | plot | -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1```
| plot | plot | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1```
| plot | plot | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1```
| plot | plot | -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1```
| | | -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1```
| | | -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1```
| | | -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1```
| | | -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1```
| plot | plot | -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1```
| plot | plot | -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1```
| | | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | -| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
Noneview
download
logs
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1```
| | | -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1```
| | | \ No newline at end of file +| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | +|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------| +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
|
❌ FAILview
download
logs

ERROR MESSAGE:
Reached maximum number of steps
|
❌ FAIL

ERROR MESSAGE:
Reached maximum number of steps
| plot | plot | +| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
did not run
| | | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | +| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
Noneview
download
logs
| ✅ PASS | | | +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file diff --git a/SBML/tests/results_local.json b/SBML/tests/results_local.json index 215ebce5..50dc2696 100644 --- a/SBML/tests/results_local.json +++ b/SBML/tests/results_local.json @@ -1,86 +1,107 @@ { "amici": { - "status": "pass", - "error_message": "" + "status": "FAIL", + "error_message": "Reached maximum number of steps", + "exception_type": "" }, "brian2": { "status": "FAIL", - "error_message": "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1```" + "error_message": "No module named 'libsbml'", + "exception_type": "ModuleNotFoundError" }, "bionetgen": { "status": "FAIL", - "error_message": "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1```" + "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).", + "exception_type": "CombineArchiveExecutionError" }, "boolnet": { "status": "FAIL", - "error_message": "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1```" + "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).", + "exception_type": "CombineArchiveExecutionError" }, "cbmpy": { "status": "FAIL", - "error_message": "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1```" + "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", + "exception_type": "CombineArchiveExecutionError" }, "cobrapy": { "status": "FAIL", - "error_message": "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1```" + "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", + "exception_type": "CombineArchiveExecutionError" }, "copasi": { "status": "pass", - "error_message": "" + "error_message": "", + "exception_type": "" }, "gillespy2": { "status": "pass", - "error_message": "" + "error_message": "", + "exception_type": "" }, "ginsim": { "status": "FAIL", - "error_message": "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1```" + "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000", + "exception_type": "CombineArchiveExecutionError" }, "libsbmlsim": { "status": "pass", - "error_message": "" + "error_message": "", + "exception_type": "" }, "masspy": { "status": "FAIL", - "error_message": "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1```" + "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .\n \t`(model, errors) = validate_sbml_model(filename)`\n If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .", + "exception_type": "CombineArchiveExecutionError" }, "netpyne": { "status": "FAIL", - "error_message": "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1```" + "error_message": "No module named 'libsbml'", + "exception_type": "ModuleNotFoundError" }, "neuron": { "status": "FAIL", - "error_message": "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1```" + "error_message": "No module named 'libsbml'", + "exception_type": "ModuleNotFoundError" }, "opencor": { "status": "FAIL", - "error_message": "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1```" + "error_message": "No module named 'libsbml'", + "exception_type": "ModuleNotFoundError" }, "pyneuroml": { "status": "FAIL", - "error_message": "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1```" + "error_message": "No module named 'libsbml'", + "exception_type": "ModuleNotFoundError" }, "pysces": { "status": "FAIL", - "error_message": "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1```" + "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", + "exception_type": "CombineArchiveExecutionError" }, "rbapy": { "status": "FAIL", - "error_message": "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1```" + "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).", + "exception_type": "CombineArchiveExecutionError" }, "smoldyn": { "status": "FAIL", - "error_message": "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1```" + "error_message": "did not run", + "exception_type": "" }, "tellurium": { "status": "pass", - "error_message": "" + "error_message": "", + "exception_type": "" }, "vcell": { - "status": "FAIL", - "error_message": "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1```" + "status": "pass", + "error_message": "", + "exception_type": "" }, "xpp": { "status": "FAIL", - "error_message": "```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1```" + "error_message": "No module named 'libsbml'", + "exception_type": "ModuleNotFoundError" } } \ No newline at end of file diff --git a/SBML/tests/results_local.md b/SBML/tests/results_local.md index b9b06f2e..7aba4aed 100644 --- a/SBML/tests/results_local.md +++ b/SBML/tests/results_local.md @@ -1,23 +1,23 @@ -| | Engine | pass / FAIL | Error | d1 | Compatibility | links_error | -|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
| ✅ PASS | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
| | -| 1 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1``` | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1``` | -| 2 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1``` | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1``` | -| 3 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1``` | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1``` | -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1``` | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1``` | -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1``` | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1``` | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
| ✅ PASS | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
| ✅ PASS | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1``` | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1``` | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
| ✅ PASS | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1``` | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1``` | -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1``` | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1``` | -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1``` | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1``` | -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1``` | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1``` | -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1``` | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1``` | -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1``` | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1``` | -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1``` | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1``` | -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1``` | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1``` | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
| ✅ PASS | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| | -| 19 |
vcellhttps://github.com/virtualcell/vcell
|
❌ FAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1``` | |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1``` | -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAIL

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1```
| ```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1``` | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|

ERROR MESSAGE:
```Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1``` | \ No newline at end of file +| | Engine | pass / FAIL | Error | Type | d1 | Compatibility | links_error | +|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------|:----------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
❌ FAIL

ERROR MESSAGE:
Reached maximum number of steps
| Reached maximum number of steps | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
|

ERROR MESSAGE:
Reached maximum number of steps | +| 1 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 2 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`). | CombineArchiveExecutionError | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError | +| 3 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0). | CombineArchiveExecutionError | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | CombineArchiveExecutionError | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | CombineArchiveExecutionError | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
| ✅ PASS | | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
| ✅ PASS | | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000 | CombineArchiveExecutionError | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
| ✅ PASS | | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues . | CombineArchiveExecutionError | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
| CombineArchiveExecutionError | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError | +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`). | CombineArchiveExecutionError | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAIL

ERROR MESSAGE:
did not run
| did not run | | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|

ERROR MESSAGE:
did not run | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
| ✅ PASS | | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| | +| 19 |
vcellhttps://github.com/virtualcell/vcell
| ✅ PASS | | | |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
| | +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | \ No newline at end of file diff --git a/SBML/tests/results_remote.json b/SBML/tests/results_remote.json index b737227a..e236559f 100644 --- a/SBML/tests/results_remote.json +++ b/SBML/tests/results_remote.json @@ -1,212 +1,191 @@ { "amici": { "response": 201, - "view": "https://api.biosimulations.org/runs/67224854953bc3bf105ef4f7", - "download": "https://api.biosimulations.org/results/67224854953bc3bf105ef4f7/download", - "logs": "https://api.biosimulations.org/logs/67224854953bc3bf105ef4f7?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67224a98953bc3bf105ef9c7", + "download": "https://api.biosimulations.org/results/67224a98953bc3bf105ef9c7/download", + "logs": "https://api.biosimulations.org/logs/67224a98953bc3bf105ef9c7?includeOutput=true", "status": "FAIL", "error_message": "Reached maximum number of steps", - "exception_type": "", - "tasks_output": "" + "exception_type": "" }, "brian2": { "response": 201, - "view": "https://api.biosimulations.org/runs/672248562e0c0591a7c893ea", - "download": "https://api.biosimulations.org/results/672248562e0c0591a7c893ea/download", - "logs": "https://api.biosimulations.org/logs/672248562e0c0591a7c893ea?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67224a9a953bc3bf105ef9ca", + "download": "https://api.biosimulations.org/results/67224a9a953bc3bf105ef9ca/download", + "logs": "https://api.biosimulations.org/logs/67224a9a953bc3bf105ef9ca?includeOutput=true", "status": "FAIL", "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError", - "tasks_output": "" + "exception_type": "ModuleNotFoundError" }, "bionetgen": { "response": 201, - "view": "https://api.biosimulations.org/runs/67224858f9c43d155d41cf8f", - "download": "https://api.biosimulations.org/results/67224858f9c43d155d41cf8f/download", - "logs": "https://api.biosimulations.org/logs/67224858f9c43d155d41cf8f?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67224a9cf9c43d155d41d432", + "download": "https://api.biosimulations.org/results/67224a9cf9c43d155d41d432/download", + "logs": "https://api.biosimulations.org/logs/67224a9cf9c43d155d41d432?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).", - "exception_type": "CombineArchiveExecutionError", - "tasks_output": "" + "exception_type": "CombineArchiveExecutionError" }, "boolnet": { "response": 201, - "view": "https://api.biosimulations.org/runs/6722485a953bc3bf105ef500", - "download": "https://api.biosimulations.org/results/6722485a953bc3bf105ef500/download", - "logs": "https://api.biosimulations.org/logs/6722485a953bc3bf105ef500?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67224a9ff9c43d155d41d435", + "download": "https://api.biosimulations.org/results/67224a9ff9c43d155d41d435/download", + "logs": "https://api.biosimulations.org/logs/67224a9ff9c43d155d41d435?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).", - "exception_type": "CombineArchiveExecutionError", - "tasks_output": "" + "exception_type": "CombineArchiveExecutionError" }, "cbmpy": { "response": 201, - "view": "https://api.biosimulations.org/runs/6722485cf9c43d155d41cf93", - "download": "https://api.biosimulations.org/results/6722485cf9c43d155d41cf93/download", - "logs": "https://api.biosimulations.org/logs/6722485cf9c43d155d41cf93?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67224aa12e0c0591a7c89863", + "download": "https://api.biosimulations.org/results/67224aa12e0c0591a7c89863/download", + "logs": "https://api.biosimulations.org/logs/67224aa12e0c0591a7c89863?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", - "exception_type": "CombineArchiveExecutionError", - "tasks_output": "" + "exception_type": "CombineArchiveExecutionError" }, "cobrapy": { "response": 201, - "view": "https://api.biosimulations.org/runs/6722485ef9c43d155d41cf96", - "download": "https://api.biosimulations.org/results/6722485ef9c43d155d41cf96/download", - "logs": "https://api.biosimulations.org/logs/6722485ef9c43d155d41cf96?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67224aa32e0c0591a7c89869", + "download": "https://api.biosimulations.org/results/67224aa32e0c0591a7c89869/download", + "logs": "https://api.biosimulations.org/logs/67224aa32e0c0591a7c89869?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", - "exception_type": "CombineArchiveExecutionError", - "tasks_output": "" + "exception_type": "CombineArchiveExecutionError" }, "copasi": { "response": 201, - "view": "https://api.biosimulations.org/runs/67224861f9c43d155d41cf9c", - "download": "https://api.biosimulations.org/results/67224861f9c43d155d41cf9c/download", - "logs": "https://api.biosimulations.org/logs/67224861f9c43d155d41cf9c?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67224aa6f9c43d155d41d43e", + "download": "https://api.biosimulations.org/results/67224aa6f9c43d155d41d43e/download", + "logs": "https://api.biosimulations.org/logs/67224aa6f9c43d155d41d43e?includeOutput=true", "status": "pass", "error_message": "", - "exception_type": "", - "tasks_output": "" + "exception_type": "" }, "gillespy2": { "response": 201, - "view": "https://api.biosimulations.org/runs/672248632e0c0591a7c893fb", - "download": "https://api.biosimulations.org/results/672248632e0c0591a7c893fb/download", - "logs": "https://api.biosimulations.org/logs/672248632e0c0591a7c893fb?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67224aa82e0c0591a7c8986f", + "download": "https://api.biosimulations.org/results/67224aa82e0c0591a7c8986f/download", + "logs": "https://api.biosimulations.org/logs/67224aa82e0c0591a7c8986f?includeOutput=true", "status": "pass", "error_message": "", - "exception_type": "", - "tasks_output": "" + "exception_type": "" }, "ginsim": { "response": 201, - "view": "https://api.biosimulations.org/runs/672248652e0c0591a7c89402", - "download": "https://api.biosimulations.org/results/672248652e0c0591a7c89402/download", - "logs": "https://api.biosimulations.org/logs/672248652e0c0591a7c89402?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67224aaaf9c43d155d41d448", + "download": "https://api.biosimulations.org/results/67224aaaf9c43d155d41d448/download", + "logs": "https://api.biosimulations.org/logs/67224aaaf9c43d155d41d448?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000", - "exception_type": "CombineArchiveExecutionError", - "tasks_output": "" + "exception_type": "CombineArchiveExecutionError" }, "libsbmlsim": { "response": 201, - "view": "https://api.biosimulations.org/runs/67224867f9c43d155d41cfa3", - "download": "https://api.biosimulations.org/results/67224867f9c43d155d41cfa3/download", - "logs": "https://api.biosimulations.org/logs/67224867f9c43d155d41cfa3?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67224aac953bc3bf105ef9ed", + "download": "https://api.biosimulations.org/results/67224aac953bc3bf105ef9ed/download", + "logs": "https://api.biosimulations.org/logs/67224aac953bc3bf105ef9ed?includeOutput=true", "status": "pass", "error_message": "", - "exception_type": "", - "tasks_output": "" + "exception_type": "" }, "masspy": { "response": 201, - "view": "https://api.biosimulations.org/runs/67224869f9c43d155d41cfb3", - "download": "https://api.biosimulations.org/results/67224869f9c43d155d41cfb3/download", - "logs": "https://api.biosimulations.org/logs/67224869f9c43d155d41cfb3?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67224aae2e0c0591a7c8988a", + "download": "https://api.biosimulations.org/results/67224aae2e0c0591a7c8988a/download", + "logs": "https://api.biosimulations.org/logs/67224aae2e0c0591a7c8988a?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n The following targets are not supported:\n - /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']\n - /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']\n - /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']\n - /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']\n \n Only following targets are supported:\n - I\n - SEC\n - V\n - W", - "exception_type": "CombineArchiveExecutionError", - "tasks_output": "" + "exception_type": "CombineArchiveExecutionError" }, "netpyne": { "response": 201, - "view": "https://api.biosimulations.org/runs/6722486bf9c43d155d41cfb8", - "download": "https://api.biosimulations.org/results/6722486bf9c43d155d41cfb8/download", - "logs": "https://api.biosimulations.org/logs/6722486bf9c43d155d41cfb8?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67224ab0953bc3bf105efa03", + "download": "https://api.biosimulations.org/results/67224ab0953bc3bf105efa03/download", + "logs": "https://api.biosimulations.org/logs/67224ab0953bc3bf105efa03?includeOutput=true", "status": "FAIL", "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError", - "tasks_output": "" + "exception_type": "ModuleNotFoundError" }, "neuron": { "response": 201, - "view": "https://api.biosimulations.org/runs/6722486c2e0c0591a7c8941c", - "download": "https://api.biosimulations.org/results/6722486c2e0c0591a7c8941c/download", - "logs": "https://api.biosimulations.org/logs/6722486c2e0c0591a7c8941c?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67224ab22e0c0591a7c89898", + "download": "https://api.biosimulations.org/results/67224ab22e0c0591a7c89898/download", + "logs": "https://api.biosimulations.org/logs/67224ab22e0c0591a7c89898?includeOutput=true", "status": "FAIL", "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError", - "tasks_output": "" + "exception_type": "ModuleNotFoundError" }, "opencor": { "response": 201, - "view": "https://api.biosimulations.org/runs/6722486e2e0c0591a7c89429", - "download": "https://api.biosimulations.org/results/6722486e2e0c0591a7c89429/download", - "logs": "https://api.biosimulations.org/logs/6722486e2e0c0591a7c89429?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67224ab5f9c43d155d41d476", + "download": "https://api.biosimulations.org/results/67224ab5f9c43d155d41d476/download", + "logs": "https://api.biosimulations.org/logs/67224ab5f9c43d155d41d476?includeOutput=true", "status": "FAIL", "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError", - "tasks_output": "" + "exception_type": "ModuleNotFoundError" }, "pyneuroml": { "response": 201, - "view": "https://api.biosimulations.org/runs/67224870f9c43d155d41cfcf", - "download": "https://api.biosimulations.org/results/67224870f9c43d155d41cfcf/download", - "logs": "https://api.biosimulations.org/logs/67224870f9c43d155d41cfcf?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67224ab7f9c43d155d41d47c", + "download": "https://api.biosimulations.org/results/67224ab7f9c43d155d41d47c/download", + "logs": "https://api.biosimulations.org/logs/67224ab7f9c43d155d41d47c?includeOutput=true", "status": "FAIL", "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError", - "tasks_output": "" + "exception_type": "ModuleNotFoundError" }, "pysces": { "response": 201, - "view": "https://api.biosimulations.org/runs/672248722e0c0591a7c89434", - "download": "https://api.biosimulations.org/results/672248722e0c0591a7c89434/download", - "logs": "https://api.biosimulations.org/logs/672248722e0c0591a7c89434?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67224ab9f9c43d155d41d48a", + "download": "https://api.biosimulations.org/results/67224ab9f9c43d155d41d48a/download", + "logs": "https://api.biosimulations.org/logs/67224ab9f9c43d155d41d48a?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", - "exception_type": "CombineArchiveExecutionError", - "tasks_output": "" + "exception_type": "CombineArchiveExecutionError" }, "rbapy": { "response": 201, - "view": "https://api.biosimulations.org/runs/672248742e0c0591a7c89440", - "download": "https://api.biosimulations.org/results/672248742e0c0591a7c89440/download", - "logs": "https://api.biosimulations.org/logs/672248742e0c0591a7c89440?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67224abb2e0c0591a7c898cb", + "download": "https://api.biosimulations.org/results/67224abb2e0c0591a7c898cb/download", + "logs": "https://api.biosimulations.org/logs/67224abb2e0c0591a7c898cb?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).", - "exception_type": "CombineArchiveExecutionError", - "tasks_output": "" + "exception_type": "CombineArchiveExecutionError" }, "smoldyn": { "response": 201, - "view": "https://api.biosimulations.org/runs/67224876953bc3bf105ef568", - "download": "https://api.biosimulations.org/results/67224876953bc3bf105ef568/download", - "logs": "https://api.biosimulations.org/logs/67224876953bc3bf105ef568?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67224abef9c43d155d41d4a1", + "download": "https://api.biosimulations.org/results/67224abef9c43d155d41d4a1/download", + "logs": "https://api.biosimulations.org/logs/67224abef9c43d155d41d4a1?includeOutput=true", "status": "FAIL", "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError", - "tasks_output": "" + "exception_type": "ModuleNotFoundError" }, "tellurium": { "response": 201, - "view": "https://api.biosimulations.org/runs/672248782e0c0591a7c89457", - "download": "https://api.biosimulations.org/results/672248782e0c0591a7c89457/download", - "logs": "https://api.biosimulations.org/logs/672248782e0c0591a7c89457?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67224ac02e0c0591a7c898d7", + "download": "https://api.biosimulations.org/results/67224ac02e0c0591a7c898d7/download", + "logs": "https://api.biosimulations.org/logs/67224ac02e0c0591a7c898d7?includeOutput=true", "status": "pass", "error_message": "", - "exception_type": "", - "tasks_output": "" + "exception_type": "" }, "vcell": { "response": 201, - "view": "https://api.biosimulations.org/runs/6722487c953bc3bf105ef57e", - "download": "https://api.biosimulations.org/results/6722487c953bc3bf105ef57e/download", - "logs": "https://api.biosimulations.org/logs/6722487c953bc3bf105ef57e?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67224ac3f9c43d155d41d4be", + "download": "https://api.biosimulations.org/results/67224ac3f9c43d155d41d4be/download", + "logs": "https://api.biosimulations.org/logs/67224ac3f9c43d155d41d4be?includeOutput=true", "status": null, "error_message": "", - "exception_type": "", - "tasks_output": "" + "exception_type": "" }, "xpp": { "response": 201, - "view": "https://api.biosimulations.org/runs/6722487e953bc3bf105ef59c", - "download": "https://api.biosimulations.org/results/6722487e953bc3bf105ef59c/download", - "logs": "https://api.biosimulations.org/logs/6722487e953bc3bf105ef59c?includeOutput=true", + "view": "https://api.biosimulations.org/runs/67224ac6953bc3bf105efa68", + "download": "https://api.biosimulations.org/results/67224ac6953bc3bf105efa68/download", + "logs": "https://api.biosimulations.org/logs/67224ac6953bc3bf105efa68?includeOutput=true", "status": "FAIL", "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError", - "tasks_output": "" + "exception_type": "ModuleNotFoundError" } } \ No newline at end of file diff --git a/SBML/tests/results_remote.md b/SBML/tests/results_remote.md index 64791b4d..0388c0a8 100644 --- a/SBML/tests/results_remote.md +++ b/SBML/tests/results_remote.md @@ -1,23 +1,23 @@ -| | Engine | response | view | download | logs | pass / FAIL | Error | Type | tasks_output | links | d1 | Compatibility | links_error | -|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|-----------:|:-------------------------------------------------------------|:-------------------------------------------------------------------------|:--------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------|:---------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
| 201 | https://api.biosimulations.org/runs/67224854953bc3bf105ef4f7 | https://api.biosimulations.org/results/67224854953bc3bf105ef4f7/download | https://api.biosimulations.org/logs/67224854953bc3bf105ef4f7?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
Reached maximum number of steps
| Reached maximum number of steps | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
| view
download
logs

ERROR MESSAGE:
Reached maximum number of steps | -| 1 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/672248562e0c0591a7c893ea | https://api.biosimulations.org/results/672248562e0c0591a7c893ea/download | https://api.biosimulations.org/logs/672248562e0c0591a7c893ea?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 2 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
| 201 | https://api.biosimulations.org/runs/67224858f9c43d155d41cf8f | https://api.biosimulations.org/results/67224858f9c43d155d41cf8f/download | https://api.biosimulations.org/logs/67224858f9c43d155d41cf8f?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`). | CombineArchiveExecutionError | | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError | -| 3 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
| 201 | https://api.biosimulations.org/runs/6722485a953bc3bf105ef500 | https://api.biosimulations.org/results/6722485a953bc3bf105ef500/download | https://api.biosimulations.org/logs/6722485a953bc3bf105ef500?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0). | CombineArchiveExecutionError | | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError | -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
| 201 | https://api.biosimulations.org/runs/6722485cf9c43d155d41cf93 | https://api.biosimulations.org/results/6722485cf9c43d155d41cf93/download | https://api.biosimulations.org/logs/6722485cf9c43d155d41cf93?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | CombineArchiveExecutionError | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
| 201 | https://api.biosimulations.org/runs/6722485ef9c43d155d41cf96 | https://api.biosimulations.org/results/6722485ef9c43d155d41cf96/download | https://api.biosimulations.org/logs/6722485ef9c43d155d41cf96?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | CombineArchiveExecutionError | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
| 201 | https://api.biosimulations.org/runs/67224861f9c43d155d41cf9c | https://api.biosimulations.org/results/67224861f9c43d155d41cf9c/download | https://api.biosimulations.org/logs/67224861f9c43d155d41cf9c?includeOutput=true |
✅ PASSview
download
logs
| | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| view
download
logs | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
| 201 | https://api.biosimulations.org/runs/672248632e0c0591a7c893fb | https://api.biosimulations.org/results/672248632e0c0591a7c893fb/download | https://api.biosimulations.org/logs/672248632e0c0591a7c893fb?includeOutput=true |
✅ PASSview
download
logs
| | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| view
download
logs | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
| 201 | https://api.biosimulations.org/runs/672248652e0c0591a7c89402 | https://api.biosimulations.org/results/672248652e0c0591a7c89402/download | https://api.biosimulations.org/logs/672248652e0c0591a7c89402?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000 | CombineArchiveExecutionError | | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
| 201 | https://api.biosimulations.org/runs/67224867f9c43d155d41cfa3 | https://api.biosimulations.org/results/67224867f9c43d155d41cfa3/download | https://api.biosimulations.org/logs/67224867f9c43d155d41cfa3?includeOutput=true |
✅ PASSview
download
logs
| | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| view
download
logs | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
| 201 | https://api.biosimulations.org/runs/67224869f9c43d155d41cfb3 | https://api.biosimulations.org/results/67224869f9c43d155d41cfb3/download | https://api.biosimulations.org/logs/67224869f9c43d155d41cfb3?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W | CombineArchiveExecutionError | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W

ERROR TYPE:
CombineArchiveExecutionError | -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/6722486bf9c43d155d41cfb8 | https://api.biosimulations.org/results/6722486bf9c43d155d41cfb8/download | https://api.biosimulations.org/logs/6722486bf9c43d155d41cfb8?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/6722486c2e0c0591a7c8941c | https://api.biosimulations.org/results/6722486c2e0c0591a7c8941c/download | https://api.biosimulations.org/logs/6722486c2e0c0591a7c8941c?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
| 201 | https://api.biosimulations.org/runs/6722486e2e0c0591a7c89429 | https://api.biosimulations.org/results/6722486e2e0c0591a7c89429/download | https://api.biosimulations.org/logs/6722486e2e0c0591a7c89429?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/67224870f9c43d155d41cfcf | https://api.biosimulations.org/results/67224870f9c43d155d41cfcf/download | https://api.biosimulations.org/logs/67224870f9c43d155d41cfcf?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
| 201 | https://api.biosimulations.org/runs/672248722e0c0591a7c89434 | https://api.biosimulations.org/results/672248722e0c0591a7c89434/download | https://api.biosimulations.org/logs/672248722e0c0591a7c89434?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
| CombineArchiveExecutionError | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError | -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
| 201 | https://api.biosimulations.org/runs/672248742e0c0591a7c89440 | https://api.biosimulations.org/results/672248742e0c0591a7c89440/download | https://api.biosimulations.org/logs/672248742e0c0591a7c89440?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`). | CombineArchiveExecutionError | | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError | -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
| 201 | https://api.biosimulations.org/runs/67224876953bc3bf105ef568 | https://api.biosimulations.org/results/67224876953bc3bf105ef568/download | https://api.biosimulations.org/logs/67224876953bc3bf105ef568?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
| 201 | https://api.biosimulations.org/runs/672248782e0c0591a7c89457 | https://api.biosimulations.org/results/672248782e0c0591a7c89457/download | https://api.biosimulations.org/logs/672248782e0c0591a7c89457?includeOutput=true |
✅ PASSview
download
logs
| | | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| view
download
logs | -| 19 |
vcellhttps://github.com/virtualcell/vcell
| 201 | https://api.biosimulations.org/runs/6722487c953bc3bf105ef57e | https://api.biosimulations.org/results/6722487c953bc3bf105ef57e/download | https://api.biosimulations.org/logs/6722487c953bc3bf105ef57e?includeOutput=true |
Noneview
download
logs
| | | | view
download
logs | |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
| view
download
logs | -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
| 201 | https://api.biosimulations.org/runs/6722487e953bc3bf105ef59c | https://api.biosimulations.org/results/6722487e953bc3bf105ef59c/download | https://api.biosimulations.org/logs/6722487e953bc3bf105ef59c?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | \ No newline at end of file +| | Engine | response | view | download | logs | pass / FAIL | Error | Type | links | d1 | Compatibility | links_error | +|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|-----------:|:-------------------------------------------------------------|:-------------------------------------------------------------------------|:--------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
| 201 | https://api.biosimulations.org/runs/67224a98953bc3bf105ef9c7 | https://api.biosimulations.org/results/67224a98953bc3bf105ef9c7/download | https://api.biosimulations.org/logs/67224a98953bc3bf105ef9c7?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
Reached maximum number of steps
| Reached maximum number of steps | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
| view
download
logs

ERROR MESSAGE:
Reached maximum number of steps | +| 1 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/67224a9a953bc3bf105ef9ca | https://api.biosimulations.org/results/67224a9a953bc3bf105ef9ca/download | https://api.biosimulations.org/logs/67224a9a953bc3bf105ef9ca?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 2 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
| 201 | https://api.biosimulations.org/runs/67224a9cf9c43d155d41d432 | https://api.biosimulations.org/results/67224a9cf9c43d155d41d432/download | https://api.biosimulations.org/logs/67224a9cf9c43d155d41d432?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`). | CombineArchiveExecutionError | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError | +| 3 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
| 201 | https://api.biosimulations.org/runs/67224a9ff9c43d155d41d435 | https://api.biosimulations.org/results/67224a9ff9c43d155d41d435/download | https://api.biosimulations.org/logs/67224a9ff9c43d155d41d435?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0). | CombineArchiveExecutionError | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
| 201 | https://api.biosimulations.org/runs/67224aa12e0c0591a7c89863 | https://api.biosimulations.org/results/67224aa12e0c0591a7c89863/download | https://api.biosimulations.org/logs/67224aa12e0c0591a7c89863?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | CombineArchiveExecutionError | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
| 201 | https://api.biosimulations.org/runs/67224aa32e0c0591a7c89869 | https://api.biosimulations.org/results/67224aa32e0c0591a7c89869/download | https://api.biosimulations.org/logs/67224aa32e0c0591a7c89869?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | CombineArchiveExecutionError | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
| 201 | https://api.biosimulations.org/runs/67224aa6f9c43d155d41d43e | https://api.biosimulations.org/results/67224aa6f9c43d155d41d43e/download | https://api.biosimulations.org/logs/67224aa6f9c43d155d41d43e?includeOutput=true |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| view
download
logs | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
| 201 | https://api.biosimulations.org/runs/67224aa82e0c0591a7c8986f | https://api.biosimulations.org/results/67224aa82e0c0591a7c8986f/download | https://api.biosimulations.org/logs/67224aa82e0c0591a7c8986f?includeOutput=true |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| view
download
logs | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
| 201 | https://api.biosimulations.org/runs/67224aaaf9c43d155d41d448 | https://api.biosimulations.org/results/67224aaaf9c43d155d41d448/download | https://api.biosimulations.org/logs/67224aaaf9c43d155d41d448?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000 | CombineArchiveExecutionError | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
| 201 | https://api.biosimulations.org/runs/67224aac953bc3bf105ef9ed | https://api.biosimulations.org/results/67224aac953bc3bf105ef9ed/download | https://api.biosimulations.org/logs/67224aac953bc3bf105ef9ed?includeOutput=true |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| view
download
logs | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
| 201 | https://api.biosimulations.org/runs/67224aae2e0c0591a7c8988a | https://api.biosimulations.org/results/67224aae2e0c0591a7c8988a/download | https://api.biosimulations.org/logs/67224aae2e0c0591a7c8988a?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W | CombineArchiveExecutionError | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W

ERROR TYPE:
CombineArchiveExecutionError | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/67224ab0953bc3bf105efa03 | https://api.biosimulations.org/results/67224ab0953bc3bf105efa03/download | https://api.biosimulations.org/logs/67224ab0953bc3bf105efa03?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/67224ab22e0c0591a7c89898 | https://api.biosimulations.org/results/67224ab22e0c0591a7c89898/download | https://api.biosimulations.org/logs/67224ab22e0c0591a7c89898?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
| 201 | https://api.biosimulations.org/runs/67224ab5f9c43d155d41d476 | https://api.biosimulations.org/results/67224ab5f9c43d155d41d476/download | https://api.biosimulations.org/logs/67224ab5f9c43d155d41d476?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/67224ab7f9c43d155d41d47c | https://api.biosimulations.org/results/67224ab7f9c43d155d41d47c/download | https://api.biosimulations.org/logs/67224ab7f9c43d155d41d47c?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
| 201 | https://api.biosimulations.org/runs/67224ab9f9c43d155d41d48a | https://api.biosimulations.org/results/67224ab9f9c43d155d41d48a/download | https://api.biosimulations.org/logs/67224ab9f9c43d155d41d48a?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
| CombineArchiveExecutionError | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError | +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
| 201 | https://api.biosimulations.org/runs/67224abb2e0c0591a7c898cb | https://api.biosimulations.org/results/67224abb2e0c0591a7c898cb/download | https://api.biosimulations.org/logs/67224abb2e0c0591a7c898cb?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`). | CombineArchiveExecutionError | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
| 201 | https://api.biosimulations.org/runs/67224abef9c43d155d41d4a1 | https://api.biosimulations.org/results/67224abef9c43d155d41d4a1/download | https://api.biosimulations.org/logs/67224abef9c43d155d41d4a1?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
| 201 | https://api.biosimulations.org/runs/67224ac02e0c0591a7c898d7 | https://api.biosimulations.org/results/67224ac02e0c0591a7c898d7/download | https://api.biosimulations.org/logs/67224ac02e0c0591a7c898d7?includeOutput=true |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| view
download
logs | +| 19 |
vcellhttps://github.com/virtualcell/vcell
| 201 | https://api.biosimulations.org/runs/67224ac3f9c43d155d41d4be | https://api.biosimulations.org/results/67224ac3f9c43d155d41d4be/download | https://api.biosimulations.org/logs/67224ac3f9c43d155d41d4be?includeOutput=true |
Noneview
download
logs
| | | view
download
logs | |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
| view
download
logs | +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
| 201 | https://api.biosimulations.org/runs/67224ac6953bc3bf105efa68 | https://api.biosimulations.org/results/67224ac6953bc3bf105efa68/download | https://api.biosimulations.org/logs/67224ac6953bc3bf105efa68?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | \ No newline at end of file diff --git a/utils/__init__.py b/utils/__init__.py index df235bfa..8180fe7d 100644 --- a/utils/__init__.py +++ b/utils/__init__.py @@ -157,6 +157,7 @@ # (currently only tellurium) # key is the tag/category used to report the category, value is a regex matching the error message # see MarkdownTable.process_engine_outcomes +# TODO: use error categories in process_log_yml error_categories=\ { "tellurium": @@ -559,7 +560,7 @@ def rename_files_in_extract_dir(extract_dir, engine): return extract_dir -def run_biosimulators_docker(engine,sedml_filepath,sbml_filepath,output_dir='output',error_categories=error_categories,chown_outputs=True): +def run_biosimulators_docker(engine,sedml_filepath,sbml_filepath,output_dir='output',chown_outputs=True): ''' put the sedml and sbml file into an omex archive run it locally using a biosimulators docker @@ -568,14 +569,27 @@ def run_biosimulators_docker(engine,sedml_filepath,sbml_filepath,output_dir='out #put the sedml and sbml into a combine archive omex_filepath = create_omex(sedml_filepath,sbml_filepath) - error_str = None + log_yml_path = os.path.join(output_dir,"log.yml") + + status = "" + error_message = "" + exception_type = "" + try: biosimulators_core(engine,omex_filepath,output_dir=output_dir) except Exception as e: #capture the error as a string which won't break markdown tables # error_str = safe_md_string(e) - error_str = str(e) + error_message = str(e) + status = "FAIL" + error_message = "did not run" + + if os.path.exists(log_yml_path): + status, error_message, exception_type = process_log_yml(log_yml_path) + + results_dict = {"status": status, "error_message": error_message, "exception_type": exception_type} + return results_dict #ensure outputs are owned by the user if 'getuid' in dir(os) and chown_outputs: @@ -583,23 +597,11 @@ def run_biosimulators_docker(engine,sedml_filepath,sbml_filepath,output_dir='out gid = os.getgid() os.system(f'sudo chown -R {uid}:{gid} {output_dir}') - if not error_str: return {"status": 'pass', "error_message": ''} - - # #try to load the cleaner error message from the log.yml file - log_str = read_log_yml(os.path.join(os.path.dirname(omex_filepath),"log.yml")) - - if log_str: - error_str = str(log_str) - # if log_str: - # error_str = safe_md_string(log_str) - - #categorise the error string - if engine in error_categories: - for tag in error_categories[engine]: - if re.search(error_categories[engine][tag],error_str): - return [tag,f"```{error_str}```"] - - return {"status":"FAIL", "error_message": f"```{error_str}```"} + if os.path.exists(log_yml_path): + status, error_message, exception_type = process_log_yml(log_yml_path) + + results_dict = {"status": status, "error_message": error_message, "exception_type": exception_type} + return results_dict def biosimulators_core(engine,omex_filepath,output_dir=None): ''' @@ -1160,26 +1162,29 @@ def process_log_yml(log_yml_path): status = "" error_message = "" exception_type = "" - - with open(log_yml_path) as f: - log_yml_dict = yaml.safe_load(f) - log_yml_str = str(log_yml_dict) - if log_yml_dict['status'] == 'SUCCEEDED': - status = 'pass' - # to deal with cases like amici where the d1 plot max x is half the expected value - pattern_max_number_of_steps = "simulation failed: Reached maximum number of steps" - pattern_match = re.search(pattern_max_number_of_steps, log_yml_str) - if pattern_match: - status = 'FAIL' - error_message = 'Reached maximum number of steps' - elif log_yml_dict['status'] == 'FAILED': - status = 'FAIL' - exception = log_yml_dict['exception'] - error_message = exception['message'] - exception_type = exception['type'] - else: - status = None + if not log_yml_path: + status = None + error_message = 'log.yml not found' + else: + with open(log_yml_path) as f: + log_yml_dict = yaml.safe_load(f) + log_yml_str = str(log_yml_dict) + if log_yml_dict['status'] == 'SUCCEEDED': + status = 'pass' + # to deal with cases like amici where the d1 plot max x is half the expected value + pattern_max_number_of_steps = "simulation failed: Reached maximum number of steps" + pattern_match = re.search(pattern_max_number_of_steps, log_yml_str) + if pattern_match: + status = 'FAIL' + error_message = 'Reached maximum number of steps' + elif log_yml_dict['status'] == 'FAILED': + status = 'FAIL' + exception = log_yml_dict['exception'] + error_message = exception['message'] + exception_type = exception['type'] + else: + status = None return status, error_message, exception_type @@ -1211,38 +1216,11 @@ def run_biosimulators_remotely(engine_keys, extract_dir_dict[e] = extract_dir for e, extract_dir in extract_dir_dict.items(): - status = "" - error_message = "" - exception_type = "" - task_output = "" - log_yml_path = find_file_in_dir('log.yml', extract_dir)[0] - if not log_yml_path: - status = None - error_message = 'log.yml not found' - continue - with open(log_yml_path) as f: - log_yml_dict = yaml.safe_load(f) - log_yml_str = str(log_yml_dict) - if log_yml_dict['status'] == 'SUCCEEDED': - status = 'pass' - # to deal with cases like amici where the d1 plot max x is half the expected value - pattern_max_number_of_steps = "simulation failed: Reached maximum number of steps" - pattern_match = re.search(pattern_max_number_of_steps, log_yml_str) - if pattern_match: - status = 'FAIL' - error_message = 'Reached maximum number of steps' - elif log_yml_dict['status'] == 'FAILED': - status = 'FAIL' - exception = log_yml_dict['exception'] - error_message = exception['message'] - exception_type = exception['type'] - else: - status = None - results_remote[e]["status"] = status - results_remote[e]["error_message"] = error_message - results_remote[e]["exception_type"] = exception_type - results_remote[e]["tasks_output"] = task_output + status, error_message, exception_type = process_log_yml(log_yml_path) + results_remote[e]["status"] = status + results_remote[e]["error_message"] = error_message + results_remote[e]["exception_type"] = exception_type file_paths = find_files(remote_output_dir, '.pdf') move_d1_files(file_paths, d1_plots_remote_dir) From 87b640e1c5ceabef5df90569a6bfbfc28eb9baf3 Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Thu, 31 Oct 2024 09:48:48 +0000 Subject: [PATCH 13/24] save log_yml dicts in results dictionary for easier testing --- SBML/tests/results_local.json | 1218 ++++++++++++++++++++++++++- SBML/tests/results_remote.json | 1402 ++++++++++++++++++++++++++++++-- utils/__init__.py | 12 +- 3 files changed, 2523 insertions(+), 109 deletions(-) diff --git a/SBML/tests/results_local.json b/SBML/tests/results_local.json index 50dc2696..e2b84796 100644 --- a/SBML/tests/results_local.json +++ b/SBML/tests/results_local.json @@ -2,106 +2,1282 @@ "amici": { "status": "FAIL", "error_message": "Reached maximum number of steps", - "exception_type": "" + "exception_type": "", + "log": { + "duration": 13.754801, + "exception": null, + "output": "", + "sedDocuments": [ + { + "duration": 13.412763, + "exception": null, + "location": "tmp408321", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp408321:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp408321 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "outputs": [ + { + "curves": [ + { + "id": "curve_V", + "status": "SUCCEEDED" + }, + { + "id": "curve_W", + "status": "SUCCEEDED" + } + ], + "duration": 0.699112, + "exception": null, + "id": "d1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + }, + { + "dataSets": [ + { + "id": "ex9_time", + "status": "SUCCEEDED" + }, + { + "id": "ex9_V", + "status": "SUCCEEDED" + }, + { + "id": "ex9_W", + "status": "SUCCEEDED" + } + ], + "duration": 0.282498, + "exception": null, + "id": "ex9", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + } + ], + "skipReason": null, + "status": "SUCCEEDED", + "tasks": [ + { + "algorithm": "KISAO_0000496", + "duration": 12.334193, + "exception": null, + "id": "sim1_net1", + "output": "2024-10-31 09:43:34.470 - amici.swig_wrappers - ERROR - [OTHER] AMICI simulation failed: Reached maximum number of steps 10000 before reaching tout at t=99.66.\r\n2024-10-31 09:43:34.470 - amici.swig_wrappers - DEBUG - [BACKTRACE] The previous error occurred at:\r\n2 0x7f249c0d7a8b /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0xb5a8b) [0x7f249c0d7a8b]\r\n3 0x7f249c1cb262 amici::Solver::run(double) const + 34\r\n4 0x7f249c2035d0 amici::ForwardProblem::workForwardProblem() + 1728\r\n5 0x7f249c1b7763 amici::runAmiciSimulation(amici::Solver&, amici::ExpData const*, amici::Model&, bool) + 435\r\n6 0x7f249c161280 /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0x13f\r\n", + "simulatorDetails": [ + { + "key": "solver", + "value": "amici.amici.CVodeSolver" + }, + { + "key": "method", + "value": "amici.swig_wrappers.runAmiciSimulation" + }, + { + "key": "arguments", + "value": {} + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + ] + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } }, "brian2": { "status": "FAIL", "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError" + "exception_type": "ModuleNotFoundError", + "log": { + "duration": 0.055724, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } }, "bionetgen": { "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).", - "exception_type": "CombineArchiveExecutionError" + "exception_type": "CombineArchiveExecutionError", + "log": { + "duration": 3.920847, + "exception": { + "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).", + "type": "CombineArchiveExecutionError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp159152` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [ + { + "duration": 3.378159, + "exception": { + "message": "The SED document did not execute successfully:\n\n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).", + "type": "SedmlExecutionError" + }, + "location": "tmp159152", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp159152:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp159152 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "outputs": [ + { + "curves": [ + { + "id": "curve_V", + "status": "SKIPPED" + }, + { + "id": "curve_W", + "status": "SKIPPED" + } + ], + "duration": 2.304324, + "exception": null, + "id": "d1", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "skipReason": null, + "status": "SKIPPED" + }, + { + "dataSets": [ + { + "id": "ex9_time", + "status": "SKIPPED" + }, + { + "id": "ex9_V", + "status": "SKIPPED" + }, + { + "id": "ex9_W", + "status": "SKIPPED" + } + ], + "duration": 0.560961, + "exception": null, + "id": "ex9", + "output": "", + "skipReason": null, + "status": "SKIPPED" + } + ], + "skipReason": null, + "status": "FAILED", + "tasks": [ + { + "algorithm": null, + "duration": 0.025688, + "exception": { + "message": "Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).", + "type": "ValueError" + }, + "id": "sim1_net1", + "output": "", + "simulatorDetails": null, + "skipReason": null, + "status": "FAILED" + } + ] + } + ], + "skipReason": null, + "status": "FAILED" + } }, "boolnet": { "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).", - "exception_type": "CombineArchiveExecutionError" + "exception_type": "CombineArchiveExecutionError", + "log": { + "duration": 0.658376, + "exception": { + "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).", + "type": "CombineArchiveExecutionError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp198978` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [ + { + "duration": 0.388336, + "exception": { + "message": "The SED document did not execute successfully:\n\n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).", + "type": "SedmlExecutionError" + }, + "location": "tmp198978", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp198978:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp198978 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "outputs": [ + { + "curves": [ + { + "id": "curve_V", + "status": "SKIPPED" + }, + { + "id": "curve_W", + "status": "SKIPPED" + } + ], + "duration": 0.216085, + "exception": null, + "id": "d1", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "skipReason": null, + "status": "SKIPPED" + }, + { + "dataSets": [ + { + "id": "ex9_time", + "status": "SKIPPED" + }, + { + "id": "ex9_V", + "status": "SKIPPED" + }, + { + "id": "ex9_W", + "status": "SKIPPED" + } + ], + "duration": 0.061727, + "exception": null, + "id": "ex9", + "output": "", + "skipReason": null, + "status": "SKIPPED" + } + ], + "skipReason": null, + "status": "FAILED", + "tasks": [ + { + "algorithm": null, + "duration": 0.028407, + "exception": { + "message": "Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).", + "type": "ValueError" + }, + "id": "sim1_net1", + "output": "", + "simulatorDetails": null, + "skipReason": null, + "status": "FAILED" + } + ] + } + ], + "skipReason": null, + "status": "FAILED" + } }, "cbmpy": { "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", - "exception_type": "CombineArchiveExecutionError" + "exception_type": "CombineArchiveExecutionError", + "log": { + "duration": 0.862579, + "exception": { + "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", + "type": "CombineArchiveExecutionError" + }, + "output": "\r\nINFO: No xlwt module available, Excel spreadsheet creation disabled\r\n\r\n\r\n\r\nNo module named 'cplex'\r\n\r\n\r\n\r\nCPLEX not available\r\n\r\n*****\r\nUsing GLPK\r\n*****\r\n\r\n\r\nINFO: No xlrd module available, Excel spreadsheet reading disabled\r\n\r\nCBMPy environment\r\n******************\r\nRevision: r689\r\n\r\n\r\n***********************************************************************\r\n* Welcome to CBMPy (0.7.25) - PySCeS Constraint Based Modelling *\r\n* http://cbmpy.sourceforge.net *\r\n* Copyright(C) Brett G. Olivier 2014 - 2019 *\r\n* Dept. of Systems Bioinformatics *\r\n* Vrije Universiteit Amsterdam, Amsterdam, The Netherlands *\r\n* CBMPy is developed as part of the BeBasic MetaToolKit Project *\r\n* Distributed under the GNU GPL v 3.0 licence, see *\r\n* LICENCE (supplied with this release) for details *\r\n***********************************************************************\r\n\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp238716` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [ + { + "duration": 0.475921, + "exception": { + "message": "The SED document did not execute successfully:\n\n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", + "type": "SedmlExecutionError" + }, + "location": "tmp238716", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp238716:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp238716 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "outputs": [ + { + "curves": [ + { + "id": "curve_V", + "status": "SKIPPED" + }, + { + "id": "curve_W", + "status": "SKIPPED" + } + ], + "duration": 0.241532, + "exception": null, + "id": "d1", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "skipReason": null, + "status": "SKIPPED" + }, + { + "dataSets": [ + { + "id": "ex9_time", + "status": "SKIPPED" + }, + { + "id": "ex9_V", + "status": "SKIPPED" + }, + { + "id": "ex9_W", + "status": "SKIPPED" + } + ], + "duration": 0.069291, + "exception": null, + "id": "ex9", + "output": "", + "skipReason": null, + "status": "SKIPPED" + } + ], + "skipReason": null, + "status": "FAILED", + "tasks": [ + { + "algorithm": null, + "duration": 0.03193, + "exception": { + "message": "UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", + "type": "ValueError" + }, + "id": "sim1_net1", + "output": "", + "simulatorDetails": null, + "skipReason": null, + "status": "FAILED" + } + ] + } + ], + "skipReason": null, + "status": "FAILED" + } }, "cobrapy": { "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", - "exception_type": "CombineArchiveExecutionError" + "exception_type": "CombineArchiveExecutionError", + "log": { + "duration": 0.688942, + "exception": { + "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", + "type": "CombineArchiveExecutionError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp827433` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [ + { + "duration": 0.450748, + "exception": { + "message": "The SED document did not execute successfully:\n\n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", + "type": "SedmlExecutionError" + }, + "location": "tmp827433", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp827433:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp827433 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "outputs": [ + { + "curves": [ + { + "id": "curve_V", + "status": "SKIPPED" + }, + { + "id": "curve_W", + "status": "SKIPPED" + } + ], + "duration": 0.239033, + "exception": null, + "id": "d1", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "skipReason": null, + "status": "SKIPPED" + }, + { + "dataSets": [ + { + "id": "ex9_time", + "status": "SKIPPED" + }, + { + "id": "ex9_V", + "status": "SKIPPED" + }, + { + "id": "ex9_W", + "status": "SKIPPED" + } + ], + "duration": 0.068489, + "exception": null, + "id": "ex9", + "output": "", + "skipReason": null, + "status": "SKIPPED" + } + ], + "skipReason": null, + "status": "FAILED", + "tasks": [ + { + "algorithm": null, + "duration": 0.032377, + "exception": { + "message": "UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", + "type": "ValueError" + }, + "id": "sim1_net1", + "output": "", + "simulatorDetails": null, + "skipReason": null, + "status": "FAILED" + } + ] + } + ], + "skipReason": null, + "status": "FAILED" + } }, "copasi": { "status": "pass", "error_message": "", - "exception_type": "" + "exception_type": "", + "log": { + "duration": 1.666169, + "exception": null, + "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp390018` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [ + { + "duration": 1.388789, + "exception": null, + "location": "tmp390018", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp390018:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp390018 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "outputs": [ + { + "curves": [ + { + "id": "curve_V", + "status": "SUCCEEDED" + }, + { + "id": "curve_W", + "status": "SUCCEEDED" + } + ], + "duration": 0.85174, + "exception": null, + "id": "d1", + "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "skipReason": null, + "status": "SUCCEEDED" + }, + { + "dataSets": [ + { + "id": "ex9_time", + "status": "SUCCEEDED" + }, + { + "id": "ex9_V", + "status": "SUCCEEDED" + }, + { + "id": "ex9_W", + "status": "SUCCEEDED" + } + ], + "duration": 0.308694, + "exception": null, + "id": "ex9", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + } + ], + "skipReason": null, + "status": "SUCCEEDED", + "tasks": [ + { + "algorithm": "KISAO_0000560", + "duration": 0.134679, + "exception": null, + "id": "sim1_net1", + "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33m- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmp4lk8wl57/./LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/kisao/utils.py:518: AlgorithmSubstitutedWarning: \u001b[33m'LSODA/LSODAR hybrid method' (KISAO_0000560) will be substituted for 'CVODE' (KISAO_0000019) at substitution policy 'SIMILAR_VARIABLES'.\u001b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", + "simulatorDetails": [ + { + "key": "methodName", + "value": "lsoda" + }, + { + "key": "parameters", + "value": null + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + ] + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } }, "gillespy2": { "status": "pass", "error_message": "", - "exception_type": "" + "exception_type": "", + "log": { + "duration": 1.511815, + "exception": null, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp779307` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [ + { + "duration": 1.237941, + "exception": null, + "location": "tmp779307", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp779307:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp779307 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "outputs": [ + { + "curves": [ + { + "id": "curve_V", + "status": "SUCCEEDED" + }, + { + "id": "curve_W", + "status": "SUCCEEDED" + } + ], + "duration": 0.748946, + "exception": null, + "id": "d1", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "skipReason": null, + "status": "SUCCEEDED" + }, + { + "dataSets": [ + { + "id": "ex9_time", + "status": "SUCCEEDED" + }, + { + "id": "ex9_V", + "status": "SUCCEEDED" + }, + { + "id": "ex9_W", + "status": "SUCCEEDED" + } + ], + "duration": 0.260346, + "exception": null, + "id": "ex9", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + } + ], + "skipReason": null, + "status": "SUCCEEDED", + "tasks": [ + { + "algorithm": "KISAO_0000088", + "duration": 0.127639, + "exception": null, + "id": "sim1_net1", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33m- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/kisao/utils.py:477: AlgorithmSubstitutedWarning: \u001b[33m'LSODA' (KISAO_0000088) will be substituted for 'CVODE'' (KISAO_0000019) at substitution policy 'SIMILAR_VARIABLES'.\u001b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", + "simulatorDetails": [ + { + "key": "method", + "value": "gillespy2.solvers.numpy.ode_solver.ODESolver" + }, + { + "key": "arguments", + "value": { + "integrator": "lsoda" + } + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + ] + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } }, "ginsim": { "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000", - "exception_type": "CombineArchiveExecutionError" + "exception_type": "CombineArchiveExecutionError", + "log": { + "duration": 0.773066, + "exception": { + "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000", + "type": "CombineArchiveExecutionError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp390712` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [ + { + "duration": 0.493601, + "exception": { + "message": "The SED document did not execute successfully:\n\n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000", + "type": "SedmlExecutionError" + }, + "location": "tmp390712", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp390712:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp390712 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "outputs": [ + { + "curves": [ + { + "id": "curve_V", + "status": "SKIPPED" + }, + { + "id": "curve_W", + "status": "SKIPPED" + } + ], + "duration": 0.269022, + "exception": null, + "id": "d1", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "skipReason": null, + "status": "SKIPPED" + }, + { + "dataSets": [ + { + "id": "ex9_time", + "status": "SKIPPED" + }, + { + "id": "ex9_V", + "status": "SKIPPED" + }, + { + "id": "ex9_W", + "status": "SKIPPED" + } + ], + "duration": 0.068795, + "exception": null, + "id": "ex9", + "output": "", + "skipReason": null, + "status": "SKIPPED" + } + ], + "skipReason": null, + "status": "FAILED", + "tasks": [ + { + "algorithm": null, + "duration": 0.034745, + "exception": { + "message": "Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000", + "type": "ValueError" + }, + "id": "sim1_net1", + "output": "", + "simulatorDetails": null, + "skipReason": null, + "status": "FAILED" + } + ] + } + ], + "skipReason": null, + "status": "FAILED" + } }, "libsbmlsim": { "status": "pass", "error_message": "", - "exception_type": "" + "exception_type": "", + "log": { + "duration": 4.726697, + "exception": null, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp568223` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [ + { + "duration": 4.504997, + "exception": null, + "location": "tmp568223", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp568223:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp568223 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "outputs": [ + { + "curves": [ + { + "id": "curve_V", + "status": "SUCCEEDED" + }, + { + "id": "curve_W", + "status": "SUCCEEDED" + } + ], + "duration": 0.693537, + "exception": null, + "id": "d1", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "skipReason": null, + "status": "SUCCEEDED" + }, + { + "dataSets": [ + { + "id": "ex9_time", + "status": "SUCCEEDED" + }, + { + "id": "ex9_V", + "status": "SUCCEEDED" + }, + { + "id": "ex9_W", + "status": "SUCCEEDED" + } + ], + "duration": 0.264446, + "exception": null, + "id": "ex9", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + } + ], + "skipReason": null, + "status": "SUCCEEDED", + "tasks": [ + { + "algorithm": "KISAO_0000086", + "duration": 3.4533, + "exception": null, + "id": "sim1_net1", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33m- Variable `DISPLAY__d1_V_fnPop1_0_V` may be invalid.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` may be invalid.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` may be invalid.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` may be invalid.\r\n - XPath could not be validated.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmp446ngi8s/./LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/kisao/utils.py:477: AlgorithmSubstitutedWarning: \u001b[33m'Fehlberg method' (KISAO_0000086) will be substituted for 'CVODE'' (KISAO_0000019) at substitution policy 'SIMILAR_VARIABLES'.\u001b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", + "simulatorDetails": [ + { + "key": "method", + "value": "simulateSBMLFromFile" + }, + { + "key": "arguments", + "value": { + "dt": 0.0001, + "method": 51, + "print_amount": 0, + "print_interval": 100, + "sim_time": 200.0, + "use_lazy_method": 0 + } + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + ] + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } }, "masspy": { "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .\n \t`(model, errors) = validate_sbml_model(filename)`\n If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .", - "exception_type": "CombineArchiveExecutionError" + "exception_type": "CombineArchiveExecutionError", + "log": { + "duration": 0.789707, + "exception": { + "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .\n \t`(model, errors) = validate_sbml_model(filename)`\n If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .", + "type": "CombineArchiveExecutionError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp203916` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n", + "sedDocuments": [ + { + "duration": 0.498649, + "exception": { + "message": "The SED document did not execute successfully:\n\n Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .\n \t`(model, errors) = validate_sbml_model(filename)`\n If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .", + "type": "SedmlExecutionError" + }, + "location": "tmp203916", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp203916:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp203916 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "outputs": [ + { + "curves": [ + { + "id": "curve_V", + "status": "SKIPPED" + }, + { + "id": "curve_W", + "status": "SKIPPED" + } + ], + "duration": 0.226807, + "exception": null, + "id": "d1", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mIllogicalVizWarning\u001b[0m: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mIllogicalVizWarning\u001b[0m: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mIllogicalVizWarning\u001b[0m: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mIllogicalVizWarning\u001b[0m: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n", + "skipReason": null, + "status": "SKIPPED" + }, + { + "dataSets": [ + { + "id": "ex9_time", + "status": "SKIPPED" + }, + { + "id": "ex9_V", + "status": "SKIPPED" + }, + { + "id": "ex9_W", + "status": "SKIPPED" + } + ], + "duration": 0.059781, + "exception": null, + "id": "ex9", + "output": "", + "skipReason": null, + "status": "SKIPPED" + } + ], + "skipReason": null, + "status": "FAILED", + "tasks": [ + { + "algorithm": null, + "duration": 0.040008, + "exception": { + "message": "Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .\n\t`(model, errors) = validate_sbml_model(filename)`\nIf the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .", + "type": "MassSBMLError" + }, + "id": "sim1_net1", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33m- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmplglmzjla/./LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mSBML model is written as Level 2 Version 2, will attempt to convert the SBML model from Level 2 Version 2 to Level 3 Version 1 before parsing\u001b[0m\r\n", + "simulatorDetails": null, + "skipReason": null, + "status": "FAILED" + } + ] + } + ], + "skipReason": null, + "status": "FAILED" + } }, "netpyne": { "status": "FAIL", "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError" + "exception_type": "ModuleNotFoundError", + "log": { + "duration": 0.054533, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } }, "neuron": { "status": "FAIL", "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError" + "exception_type": "ModuleNotFoundError", + "log": { + "duration": 0.066346, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } }, "opencor": { "status": "FAIL", "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError" + "exception_type": "ModuleNotFoundError", + "log": { + "duration": 0.036559, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } }, "pyneuroml": { "status": "FAIL", "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError" + "exception_type": "ModuleNotFoundError", + "log": { + "duration": 0.040828, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } }, "pysces": { "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", - "exception_type": "CombineArchiveExecutionError" + "exception_type": "CombineArchiveExecutionError", + "log": { + "duration": 1.884065, + "exception": { + "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", + "type": "CombineArchiveExecutionError" + }, + "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp416787` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [ + { + "duration": 1.644017, + "exception": { + "message": "The SED document did not execute successfully:\n\n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", + "type": "SedmlExecutionError" + }, + "location": "tmp416787", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp416787:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp416787 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ...Check SBML support is at action level 2\r\nSBML file is L2V2\r\n\r\n*******************************************************************\r\nIssues encountered in SBML translation (model processed anyway)\r\nSBML source: /tmp/tmpkavv1ax6.xml\r\n*******************************************************************\r\n\r\nNo free species!? ... help I'm confused! \r\n\r\n*******************************************************************\r\n\r\nWriting file: /tmp/tmpkmhjarwf.psc\r\n\r\nSBML2PSC\r\nin : /tmp/tmpkavv1ax6.xml\r\nout: /tmp/tmpkmhjarwf.psc\r\nUsing model directory: /Pysces/psc\r\n/tmp/tmpkmhjarwf.psc loading ..... \r\nParsing file: /tmp/tmpkmhjarwf.psc\r\nInfo: No reagents have been fixed\r\nInfo: \"I\" has been initialised but does not occur in a rate equation\r\nInfo: \"SEC\" has been initialised but does not occur in a rate equation\r\nInfo: \"V\" has been initialised but does not occur in a rate equation\r\nInfo: \"W\" has been initialised but does not occur in a rate equation\r\n \r\n \u001b[31mfailed - \r\nUnable to generate Stoichiometric Matrix! model has:\r\n0 reactions\r\n0 species\r\nwhat did you have in mind?\r\n\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "outputs": [ + { + "curves": [ + { + "id": "curve_V", + "status": "SKIPPED" + }, + { + "id": "curve_W", + "status": "SKIPPED" + } + ], + "duration": 0.336579, + "exception": null, + "id": "d1", + "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "skipReason": null, + "status": "SKIPPED" + }, + { + "dataSets": [ + { + "id": "ex9_time", + "status": "SKIPPED" + }, + { + "id": "ex9_V", + "status": "SKIPPED" + }, + { + "id": "ex9_W", + "status": "SKIPPED" + } + ], + "duration": 0.089952, + "exception": null, + "id": "ex9", + "output": "", + "skipReason": null, + "status": "SKIPPED" + } + ], + "skipReason": null, + "status": "FAILED", + "tasks": [ + { + "algorithm": null, + "duration": 1.062347, + "exception": { + "message": "\nUnable to generate Stoichiometric Matrix! model has:\n0 reactions\n0 species\nwhat did you have in mind?\n", + "type": "AssertionError" + }, + "id": "sim1_net1", + "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33m- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "simulatorDetails": null, + "skipReason": null, + "status": "FAILED" + } + ] + } + ], + "skipReason": null, + "status": "FAILED" + } }, "rbapy": { "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).", - "exception_type": "CombineArchiveExecutionError" + "exception_type": "CombineArchiveExecutionError", + "log": { + "duration": 0.832863, + "exception": { + "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).", + "type": "CombineArchiveExecutionError" + }, + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp716194` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "sedDocuments": [ + { + "duration": 0.543014, + "exception": { + "message": "The SED document did not execute successfully:\n\n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).", + "type": "SedmlExecutionError" + }, + "location": "tmp716194", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp716194:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp716194 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "outputs": [ + { + "curves": [ + { + "id": "curve_V", + "status": "SKIPPED" + }, + { + "id": "curve_W", + "status": "SKIPPED" + } + ], + "duration": 0.288198, + "exception": null, + "id": "d1", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "skipReason": null, + "status": "SKIPPED" + }, + { + "dataSets": [ + { + "id": "ex9_time", + "status": "SKIPPED" + }, + { + "id": "ex9_V", + "status": "SKIPPED" + }, + { + "id": "ex9_W", + "status": "SKIPPED" + } + ], + "duration": 0.072644, + "exception": null, + "id": "ex9", + "output": "", + "skipReason": null, + "status": "SKIPPED" + } + ], + "skipReason": null, + "status": "FAILED", + "tasks": [ + { + "algorithm": null, + "duration": 0.030624, + "exception": { + "message": "Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).", + "type": "ValueError" + }, + "id": "sim1_net1", + "output": "", + "simulatorDetails": null, + "skipReason": null, + "status": "FAILED" + } + ] + } + ], + "skipReason": null, + "status": "FAILED" + } }, "smoldyn": { "status": "FAIL", "error_message": "did not run", - "exception_type": "" + "exception_type": "", + "log": {} }, "tellurium": { "status": "pass", "error_message": "", - "exception_type": "" + "exception_type": "", + "log": { + "duration": 1.851769, + "exception": null, + "output": "/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n\r\n/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp929424` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n\r\n", + "sedDocuments": [ + { + "duration": 1.366811, + "exception": null, + "location": "tmp929424", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp929424:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp929424 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "outputs": [ + { + "curves": [ + { + "id": "curve_V", + "status": "SUCCEEDED" + }, + { + "id": "curve_W", + "status": "SUCCEEDED" + } + ], + "duration": 0.748565, + "exception": null, + "id": "d1", + "output": "/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning:\r\n\r\n\u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n\r\n", + "skipReason": null, + "status": "SUCCEEDED" + }, + { + "dataSets": [ + { + "id": "ex9_time", + "status": "SUCCEEDED" + }, + { + "id": "ex9_V", + "status": "SUCCEEDED" + }, + { + "id": "ex9_W", + "status": "SUCCEEDED" + } + ], + "duration": 0.294079, + "exception": null, + "id": "ex9", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + } + ], + "skipReason": null, + "status": "SUCCEEDED", + "tasks": [ + { + "algorithm": "KISAO_0000019", + "duration": 0.145839, + "exception": null, + "id": "sim1_net1", + "output": "/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33m- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n\r\n/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmpt8htdmbr/./LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n\r\n", + "simulatorDetails": [ + { + "key": "method", + "value": "simulate" + }, + { + "key": "solver", + "value": "cvode" + }, + { + "key": "relative_tolerance", + "value": 1e-06 + }, + { + "key": "absolute_tolerance", + "value": 1e-12 + }, + { + "key": "stiff", + "value": true + }, + { + "key": "maximum_bdf_order", + "value": 5 + }, + { + "key": "maximum_adams_order", + "value": 12 + }, + { + "key": "maximum_num_steps", + "value": 20000 + }, + { + "key": "maximum_time_step", + "value": 0.0 + }, + { + "key": "minimum_time_step", + "value": 0.0 + }, + { + "key": "initial_time_step", + "value": 0.0 + }, + { + "key": "multiple_steps", + "value": false + }, + { + "key": "variable_step_size", + "value": false + }, + { + "key": "max_output_rows", + "value": 100000 + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + ] + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } }, "vcell": { "status": "pass", "error_message": "", - "exception_type": "" + "exception_type": "", + "log": { + "duration": 2, + "exception": null, + "output": "Processing tmp396926. Done", + "sedDocuments": [], + "skipReason": null, + "status": "SUCCEEDED" + } }, "xpp": { "status": "FAIL", "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError" + "exception_type": "ModuleNotFoundError", + "log": { + "duration": 0.043938, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } } } \ No newline at end of file diff --git a/SBML/tests/results_remote.json b/SBML/tests/results_remote.json index e236559f..37cfbb32 100644 --- a/SBML/tests/results_remote.json +++ b/SBML/tests/results_remote.json @@ -1,191 +1,1421 @@ { "amici": { "response": 201, - "view": "https://api.biosimulations.org/runs/67224a98953bc3bf105ef9c7", - "download": "https://api.biosimulations.org/results/67224a98953bc3bf105ef9c7/download", - "logs": "https://api.biosimulations.org/logs/67224a98953bc3bf105ef9c7?includeOutput=true", + "view": "https://api.biosimulations.org/runs/672351d95a60072d20f4173a", + "download": "https://api.biosimulations.org/results/672351d95a60072d20f4173a/download", + "logs": "https://api.biosimulations.org/logs/672351d95a60072d20f4173a?includeOutput=true", "status": "FAIL", "error_message": "Reached maximum number of steps", - "exception_type": "" + "exception_type": "", + "log": { + "duration": 25.693272, + "exception": null, + "output": "", + "sedDocuments": [ + { + "duration": 25.367974, + "exception": null, + "location": "tmp766780", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp766780:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp766780 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "outputs": [ + { + "curves": [ + { + "id": "curve_V", + "status": "SUCCEEDED" + }, + { + "id": "curve_W", + "status": "SUCCEEDED" + } + ], + "duration": 1.055874, + "exception": null, + "id": "d1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + }, + { + "dataSets": [ + { + "id": "ex9_time", + "status": "SUCCEEDED" + }, + { + "id": "ex9_V", + "status": "SUCCEEDED" + }, + { + "id": "ex9_W", + "status": "SUCCEEDED" + } + ], + "duration": 0.389933, + "exception": null, + "id": "ex9", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + } + ], + "skipReason": null, + "status": "SUCCEEDED", + "tasks": [ + { + "algorithm": "KISAO_0000496", + "duration": 23.834837, + "exception": null, + "id": "sim1_net1", + "output": "2024-10-31 05:46:31.718 - amici.swig_wrappers - ERROR - [OTHER] AMICI simulation failed: Reached maximum number of steps 10000 before reaching tout at t=99.66.\r\n2024-10-31 05:46:31.718 - amici.swig_wrappers - DEBUG - [BACKTRACE] The previous error occurred at:\r\n2 0x7ffff3462a8b /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0xb5a8b) [0x7ffff3462a8b]\r\n3 0x7ffff3556262 amici::Solver::run(double) const + 34\r\n4 0x7ffff358e5d0 amici::ForwardProblem::workForwardProblem() + 1728\r\n5 0x7ffff3542763 amici::runAmiciSimulation(amici::Solver&, amici::ExpData const*, amici::Model&, bool) + 435\r\n6 0x7ffff34ec280 /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0x13f\r\n", + "simulatorDetails": [ + { + "key": "solver", + "value": "amici.amici.CVodeSolver" + }, + { + "key": "method", + "value": "amici.swig_wrappers.runAmiciSimulation" + }, + { + "key": "arguments", + "value": {} + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + ] + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } }, "brian2": { "response": 201, - "view": "https://api.biosimulations.org/runs/67224a9a953bc3bf105ef9ca", - "download": "https://api.biosimulations.org/results/67224a9a953bc3bf105ef9ca/download", - "logs": "https://api.biosimulations.org/logs/67224a9a953bc3bf105ef9ca?includeOutput=true", + "view": "https://api.biosimulations.org/runs/672351dbb678b3883bb56692", + "download": "https://api.biosimulations.org/results/672351dbb678b3883bb56692/download", + "logs": "https://api.biosimulations.org/logs/672351dbb678b3883bb56692?includeOutput=true", "status": "FAIL", "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError" + "exception_type": "ModuleNotFoundError", + "log": { + "duration": 0.050442, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } }, "bionetgen": { "response": 201, - "view": "https://api.biosimulations.org/runs/67224a9cf9c43d155d41d432", - "download": "https://api.biosimulations.org/results/67224a9cf9c43d155d41d432/download", - "logs": "https://api.biosimulations.org/logs/67224a9cf9c43d155d41d432?includeOutput=true", + "view": "https://api.biosimulations.org/runs/672351dd5a60072d20f4173d", + "download": "https://api.biosimulations.org/results/672351dd5a60072d20f4173d/download", + "logs": "https://api.biosimulations.org/logs/672351dd5a60072d20f4173d?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).", - "exception_type": "CombineArchiveExecutionError" + "exception_type": "CombineArchiveExecutionError", + "log": { + "duration": 0.716111, + "exception": { + "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).", + "type": "CombineArchiveExecutionError" + }, + "output": "", + "sedDocuments": [ + { + "duration": 0.395244, + "exception": { + "message": "The SED document did not execute successfully:\n\n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).", + "type": "SedmlExecutionError" + }, + "location": "tmp222289", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp222289:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp222289 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "outputs": [ + { + "curves": [ + { + "id": "curve_V", + "status": "SKIPPED" + }, + { + "id": "curve_W", + "status": "SKIPPED" + } + ], + "duration": 0.206265, + "exception": null, + "id": "d1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + }, + { + "dataSets": [ + { + "id": "ex9_time", + "status": "SKIPPED" + }, + { + "id": "ex9_V", + "status": "SKIPPED" + }, + { + "id": "ex9_W", + "status": "SKIPPED" + } + ], + "duration": 0.06535, + "exception": null, + "id": "ex9", + "output": "", + "skipReason": null, + "status": "SKIPPED" + } + ], + "skipReason": null, + "status": "FAILED", + "tasks": [ + { + "algorithm": null, + "duration": 0.028468, + "exception": { + "message": "Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).", + "type": "ValueError" + }, + "id": "sim1_net1", + "output": "", + "simulatorDetails": null, + "skipReason": null, + "status": "FAILED" + } + ] + } + ], + "skipReason": null, + "status": "FAILED" + } }, "boolnet": { "response": 201, - "view": "https://api.biosimulations.org/runs/67224a9ff9c43d155d41d435", - "download": "https://api.biosimulations.org/results/67224a9ff9c43d155d41d435/download", - "logs": "https://api.biosimulations.org/logs/67224a9ff9c43d155d41d435?includeOutput=true", + "view": "https://api.biosimulations.org/runs/672351df0d09353e8f0f132f", + "download": "https://api.biosimulations.org/results/672351df0d09353e8f0f132f/download", + "logs": "https://api.biosimulations.org/logs/672351df0d09353e8f0f132f?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).", - "exception_type": "CombineArchiveExecutionError" + "exception_type": "CombineArchiveExecutionError", + "log": { + "duration": 0.5974, + "exception": { + "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).", + "type": "CombineArchiveExecutionError" + }, + "output": "", + "sedDocuments": [ + { + "duration": 0.355335, + "exception": { + "message": "The SED document did not execute successfully:\n\n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).", + "type": "SedmlExecutionError" + }, + "location": "tmp495775", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp495775:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp495775 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "outputs": [ + { + "curves": [ + { + "id": "curve_V", + "status": "SKIPPED" + }, + { + "id": "curve_W", + "status": "SKIPPED" + } + ], + "duration": 0.170035, + "exception": null, + "id": "d1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + }, + { + "dataSets": [ + { + "id": "ex9_time", + "status": "SKIPPED" + }, + { + "id": "ex9_V", + "status": "SKIPPED" + }, + { + "id": "ex9_W", + "status": "SKIPPED" + } + ], + "duration": 0.06308, + "exception": null, + "id": "ex9", + "output": "", + "skipReason": null, + "status": "SKIPPED" + } + ], + "skipReason": null, + "status": "FAILED", + "tasks": [ + { + "algorithm": null, + "duration": 0.03038, + "exception": { + "message": "Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).", + "type": "ValueError" + }, + "id": "sim1_net1", + "output": "", + "simulatorDetails": null, + "skipReason": null, + "status": "FAILED" + } + ] + } + ], + "skipReason": null, + "status": "FAILED" + } }, "cbmpy": { "response": 201, - "view": "https://api.biosimulations.org/runs/67224aa12e0c0591a7c89863", - "download": "https://api.biosimulations.org/results/67224aa12e0c0591a7c89863/download", - "logs": "https://api.biosimulations.org/logs/67224aa12e0c0591a7c89863?includeOutput=true", + "view": "https://api.biosimulations.org/runs/672351e05a60072d20f41740", + "download": "https://api.biosimulations.org/results/672351e05a60072d20f41740/download", + "logs": "https://api.biosimulations.org/logs/672351e05a60072d20f41740?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", - "exception_type": "CombineArchiveExecutionError" + "exception_type": "CombineArchiveExecutionError", + "log": { + "duration": 0.641891, + "exception": { + "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", + "type": "CombineArchiveExecutionError" + }, + "output": "\r\nINFO: No xlwt module available, Excel spreadsheet creation disabled\r\n\r\n\r\n\r\nNo module named 'cplex'\r\n\r\n\r\n\r\nCPLEX not available\r\n\r\n*****\r\nUsing GLPK\r\n*****\r\n\r\n\r\nINFO: No xlrd module available, Excel spreadsheet reading disabled\r\n\r\nCBMPy environment\r\n******************\r\nRevision: r689\r\n\r\n\r\n***********************************************************************\r\n* Welcome to CBMPy (0.7.25) - PySCeS Constraint Based Modelling *\r\n* http://cbmpy.sourceforge.net *\r\n* Copyright(C) Brett G. Olivier 2014 - 2019 *\r\n* Dept. of Systems Bioinformatics *\r\n* Vrije Universiteit Amsterdam, Amsterdam, The Netherlands *\r\n* CBMPy is developed as part of the BeBasic MetaToolKit Project *\r\n* Distributed under the GNU GPL v 3.0 licence, see *\r\n* LICENCE (supplied with this release) for details *\r\n***********************************************************************\r\n\r\n", + "sedDocuments": [ + { + "duration": 0.322685, + "exception": { + "message": "The SED document did not execute successfully:\n\n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", + "type": "SedmlExecutionError" + }, + "location": "tmp16554", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp16554:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp16554 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "outputs": [ + { + "curves": [ + { + "id": "curve_V", + "status": "SKIPPED" + }, + { + "id": "curve_W", + "status": "SKIPPED" + } + ], + "duration": 0.154424, + "exception": null, + "id": "d1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + }, + { + "dataSets": [ + { + "id": "ex9_time", + "status": "SKIPPED" + }, + { + "id": "ex9_V", + "status": "SKIPPED" + }, + { + "id": "ex9_W", + "status": "SKIPPED" + } + ], + "duration": 0.059233, + "exception": null, + "id": "ex9", + "output": "", + "skipReason": null, + "status": "SKIPPED" + } + ], + "skipReason": null, + "status": "FAILED", + "tasks": [ + { + "algorithm": null, + "duration": 0.026407, + "exception": { + "message": "UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", + "type": "ValueError" + }, + "id": "sim1_net1", + "output": "", + "simulatorDetails": null, + "skipReason": null, + "status": "FAILED" + } + ] + } + ], + "skipReason": null, + "status": "FAILED" + } }, "cobrapy": { "response": 201, - "view": "https://api.biosimulations.org/runs/67224aa32e0c0591a7c89869", - "download": "https://api.biosimulations.org/results/67224aa32e0c0591a7c89869/download", - "logs": "https://api.biosimulations.org/logs/67224aa32e0c0591a7c89869?includeOutput=true", + "view": "https://api.biosimulations.org/runs/672351e2b678b3883bb5669b", + "download": "https://api.biosimulations.org/results/672351e2b678b3883bb5669b/download", + "logs": "https://api.biosimulations.org/logs/672351e2b678b3883bb5669b?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", - "exception_type": "CombineArchiveExecutionError" + "exception_type": "CombineArchiveExecutionError", + "log": { + "duration": 0.548813, + "exception": { + "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", + "type": "CombineArchiveExecutionError" + }, + "output": "", + "sedDocuments": [ + { + "duration": 0.330261, + "exception": { + "message": "The SED document did not execute successfully:\n\n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", + "type": "SedmlExecutionError" + }, + "location": "tmp620647", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp620647:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp620647 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "outputs": [ + { + "curves": [ + { + "id": "curve_V", + "status": "SKIPPED" + }, + { + "id": "curve_W", + "status": "SKIPPED" + } + ], + "duration": 0.15432, + "exception": null, + "id": "d1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + }, + { + "dataSets": [ + { + "id": "ex9_time", + "status": "SKIPPED" + }, + { + "id": "ex9_V", + "status": "SKIPPED" + }, + { + "id": "ex9_W", + "status": "SKIPPED" + } + ], + "duration": 0.063828, + "exception": null, + "id": "ex9", + "output": "", + "skipReason": null, + "status": "SKIPPED" + } + ], + "skipReason": null, + "status": "FAILED", + "tasks": [ + { + "algorithm": null, + "duration": 0.026855, + "exception": { + "message": "UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", + "type": "ValueError" + }, + "id": "sim1_net1", + "output": "", + "simulatorDetails": null, + "skipReason": null, + "status": "FAILED" + } + ] + } + ], + "skipReason": null, + "status": "FAILED" + } }, "copasi": { "response": 201, - "view": "https://api.biosimulations.org/runs/67224aa6f9c43d155d41d43e", - "download": "https://api.biosimulations.org/results/67224aa6f9c43d155d41d43e/download", - "logs": "https://api.biosimulations.org/logs/67224aa6f9c43d155d41d43e?includeOutput=true", + "view": "https://api.biosimulations.org/runs/672351e50d09353e8f0f1335", + "download": "https://api.biosimulations.org/results/672351e50d09353e8f0f1335/download", + "logs": "https://api.biosimulations.org/logs/672351e50d09353e8f0f1335?includeOutput=true", "status": "pass", "error_message": "", - "exception_type": "" + "exception_type": "", + "log": { + "duration": 1.806734, + "exception": null, + "output": "", + "sedDocuments": [ + { + "duration": 1.551964, + "exception": null, + "location": "tmp221293", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp221293:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp221293 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "outputs": [ + { + "curves": [ + { + "id": "curve_V", + "status": "SUCCEEDED" + }, + { + "id": "curve_W", + "status": "SUCCEEDED" + } + ], + "duration": 0.951902, + "exception": null, + "id": "d1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + }, + { + "dataSets": [ + { + "id": "ex9_time", + "status": "SUCCEEDED" + }, + { + "id": "ex9_V", + "status": "SUCCEEDED" + }, + { + "id": "ex9_W", + "status": "SUCCEEDED" + } + ], + "duration": 0.327461, + "exception": null, + "id": "ex9", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + } + ], + "skipReason": null, + "status": "SUCCEEDED", + "tasks": [ + { + "algorithm": "KISAO_0000560", + "duration": 0.186168, + "exception": null, + "id": "sim1_net1", + "output": "", + "simulatorDetails": [ + { + "key": "methodName", + "value": "lsoda" + }, + { + "key": "parameters", + "value": null + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + ] + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } }, "gillespy2": { "response": 201, - "view": "https://api.biosimulations.org/runs/67224aa82e0c0591a7c8986f", - "download": "https://api.biosimulations.org/results/67224aa82e0c0591a7c8986f/download", - "logs": "https://api.biosimulations.org/logs/67224aa82e0c0591a7c8986f?includeOutput=true", + "view": "https://api.biosimulations.org/runs/672351e7b678b3883bb5669e", + "download": "https://api.biosimulations.org/results/672351e7b678b3883bb5669e/download", + "logs": "https://api.biosimulations.org/logs/672351e7b678b3883bb5669e?includeOutput=true", "status": "pass", "error_message": "", - "exception_type": "" + "exception_type": "", + "log": { + "duration": 1.607168, + "exception": null, + "output": "", + "sedDocuments": [ + { + "duration": 1.383091, + "exception": null, + "location": "tmp708952", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp708952:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp708952 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "outputs": [ + { + "curves": [ + { + "id": "curve_V", + "status": "SUCCEEDED" + }, + { + "id": "curve_W", + "status": "SUCCEEDED" + } + ], + "duration": 0.772883, + "exception": null, + "id": "d1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + }, + { + "dataSets": [ + { + "id": "ex9_time", + "status": "SUCCEEDED" + }, + { + "id": "ex9_V", + "status": "SUCCEEDED" + }, + { + "id": "ex9_W", + "status": "SUCCEEDED" + } + ], + "duration": 0.373542, + "exception": null, + "id": "ex9", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + } + ], + "skipReason": null, + "status": "SUCCEEDED", + "tasks": [ + { + "algorithm": "KISAO_0000088", + "duration": 0.1583, + "exception": null, + "id": "sim1_net1", + "output": "", + "simulatorDetails": [ + { + "key": "method", + "value": "gillespy2.solvers.numpy.ode_solver.ODESolver" + }, + { + "key": "arguments", + "value": { + "integrator": "lsoda" + } + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + ] + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } }, "ginsim": { "response": 201, - "view": "https://api.biosimulations.org/runs/67224aaaf9c43d155d41d448", - "download": "https://api.biosimulations.org/results/67224aaaf9c43d155d41d448/download", - "logs": "https://api.biosimulations.org/logs/67224aaaf9c43d155d41d448?includeOutput=true", + "view": "https://api.biosimulations.org/runs/672351e9b678b3883bb566a3", + "download": "https://api.biosimulations.org/results/672351e9b678b3883bb566a3/download", + "logs": "https://api.biosimulations.org/logs/672351e9b678b3883bb566a3?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000", - "exception_type": "CombineArchiveExecutionError" + "exception_type": "CombineArchiveExecutionError", + "log": { + "duration": 0.573783, + "exception": { + "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000", + "type": "CombineArchiveExecutionError" + }, + "output": "", + "sedDocuments": [ + { + "duration": 0.346628, + "exception": { + "message": "The SED document did not execute successfully:\n\n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000", + "type": "SedmlExecutionError" + }, + "location": "tmp662258", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp662258:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp662258 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "outputs": [ + { + "curves": [ + { + "id": "curve_V", + "status": "SKIPPED" + }, + { + "id": "curve_W", + "status": "SKIPPED" + } + ], + "duration": 0.168431, + "exception": null, + "id": "d1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + }, + { + "dataSets": [ + { + "id": "ex9_time", + "status": "SKIPPED" + }, + { + "id": "ex9_V", + "status": "SKIPPED" + }, + { + "id": "ex9_W", + "status": "SKIPPED" + } + ], + "duration": 0.06343, + "exception": null, + "id": "ex9", + "output": "", + "skipReason": null, + "status": "SKIPPED" + } + ], + "skipReason": null, + "status": "FAILED", + "tasks": [ + { + "algorithm": null, + "duration": 0.028472, + "exception": { + "message": "Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000", + "type": "ValueError" + }, + "id": "sim1_net1", + "output": "", + "simulatorDetails": null, + "skipReason": null, + "status": "FAILED" + } + ] + } + ], + "skipReason": null, + "status": "FAILED" + } }, "libsbmlsim": { "response": 201, - "view": "https://api.biosimulations.org/runs/67224aac953bc3bf105ef9ed", - "download": "https://api.biosimulations.org/results/67224aac953bc3bf105ef9ed/download", - "logs": "https://api.biosimulations.org/logs/67224aac953bc3bf105ef9ed?includeOutput=true", + "view": "https://api.biosimulations.org/runs/672351eab678b3883bb566aa", + "download": "https://api.biosimulations.org/results/672351eab678b3883bb566aa/download", + "logs": "https://api.biosimulations.org/logs/672351eab678b3883bb566aa?includeOutput=true", "status": "pass", "error_message": "", - "exception_type": "" + "exception_type": "", + "log": { + "duration": 9.600116, + "exception": null, + "output": "", + "sedDocuments": [ + { + "duration": 9.282347, + "exception": null, + "location": "tmp575074", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp575074:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp575074 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "outputs": [ + { + "curves": [ + { + "id": "curve_V", + "status": "SUCCEEDED" + }, + { + "id": "curve_W", + "status": "SUCCEEDED" + } + ], + "duration": 1.103914, + "exception": null, + "id": "d1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + }, + { + "dataSets": [ + { + "id": "ex9_time", + "status": "SUCCEEDED" + }, + { + "id": "ex9_V", + "status": "SUCCEEDED" + }, + { + "id": "ex9_W", + "status": "SUCCEEDED" + } + ], + "duration": 0.478817, + "exception": null, + "id": "ex9", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + } + ], + "skipReason": null, + "status": "SUCCEEDED", + "tasks": [ + { + "algorithm": "KISAO_0000086", + "duration": 7.586283, + "exception": null, + "id": "sim1_net1", + "output": "", + "simulatorDetails": [ + { + "key": "method", + "value": "simulateSBMLFromFile" + }, + { + "key": "arguments", + "value": { + "dt": 0.0001, + "method": 51, + "print_amount": 0, + "print_interval": 100, + "sim_time": 200.0, + "use_lazy_method": 0 + } + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + ] + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } }, "masspy": { "response": 201, - "view": "https://api.biosimulations.org/runs/67224aae2e0c0591a7c8988a", - "download": "https://api.biosimulations.org/results/67224aae2e0c0591a7c8988a/download", - "logs": "https://api.biosimulations.org/logs/67224aae2e0c0591a7c8988a?includeOutput=true", - "status": "FAIL", - "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n The following targets are not supported:\n - /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']\n - /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']\n - /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']\n - /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']\n \n Only following targets are supported:\n - I\n - SEC\n - V\n - W", - "exception_type": "CombineArchiveExecutionError" + "view": "https://api.biosimulations.org/runs/672351ecb678b3883bb566ae", + "download": "https://api.biosimulations.org/results/672351ecb678b3883bb566ae/download", + "logs": "https://api.biosimulations.org/logs/672351ecb678b3883bb566ae?includeOutput=true", + "status": "pass", + "error_message": "", + "exception_type": "", + "log": { + "duration": 2.628961, + "exception": null, + "output": "", + "sedDocuments": [ + { + "duration": 2.054521, + "exception": null, + "location": "tmp372120", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp372120:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp372120 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "outputs": [ + { + "curves": [ + { + "id": "curve_V", + "status": "SUCCEEDED" + }, + { + "id": "curve_W", + "status": "SUCCEEDED" + } + ], + "duration": 1.251817, + "exception": null, + "id": "d1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + }, + { + "dataSets": [ + { + "id": "ex9_time", + "status": "SUCCEEDED" + }, + { + "id": "ex9_V", + "status": "SUCCEEDED" + }, + { + "id": "ex9_W", + "status": "SUCCEEDED" + } + ], + "duration": 0.47601, + "exception": null, + "id": "ex9", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + } + ], + "skipReason": null, + "status": "SUCCEEDED", + "tasks": [ + { + "algorithm": "KISAO_0000019", + "duration": 0.217567, + "exception": null, + "id": "sim1_net1", + "output": "\u001b[93mWARNING:\u001b[0m \u001b[93mModel does not contain SBML fbc package\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mModel does not contain SBML groups package\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo metabolites in model.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo reactions in model.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo compartments found in model. Therefore creating compartment 'compartment' for entire model.\u001b[0m\r\n", + "simulatorDetails": [ + { + "key": "integrator", + "value": "cvode" + }, + { + "key": "relative_tolerance", + "value": 1e-06 + }, + { + "key": "absolute_tolerance", + "value": 1e-12 + }, + { + "key": "stiff", + "value": true + }, + { + "key": "maximum_bdf_order", + "value": 5 + }, + { + "key": "maximum_adams_order", + "value": 12 + }, + { + "key": "maximum_num_steps", + "value": 20000 + }, + { + "key": "maximum_time_step", + "value": 0.0 + }, + { + "key": "minimum_time_step", + "value": 0.0 + }, + { + "key": "initial_time_step", + "value": 0.0 + }, + { + "key": "multiple_steps", + "value": false + }, + { + "key": "variable_step_size", + "value": false + }, + { + "key": "max_output_rows", + "value": 100000 + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + ] + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } }, "netpyne": { "response": 201, - "view": "https://api.biosimulations.org/runs/67224ab0953bc3bf105efa03", - "download": "https://api.biosimulations.org/results/67224ab0953bc3bf105efa03/download", - "logs": "https://api.biosimulations.org/logs/67224ab0953bc3bf105efa03?includeOutput=true", + "view": "https://api.biosimulations.org/runs/672351ee5a60072d20f41765", + "download": "https://api.biosimulations.org/results/672351ee5a60072d20f41765/download", + "logs": "https://api.biosimulations.org/logs/672351ee5a60072d20f41765?includeOutput=true", "status": "FAIL", "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError" + "exception_type": "ModuleNotFoundError", + "log": { + "duration": 0.042094, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } }, "neuron": { "response": 201, - "view": "https://api.biosimulations.org/runs/67224ab22e0c0591a7c89898", - "download": "https://api.biosimulations.org/results/67224ab22e0c0591a7c89898/download", - "logs": "https://api.biosimulations.org/logs/67224ab22e0c0591a7c89898?includeOutput=true", + "view": "https://api.biosimulations.org/runs/672351efb678b3883bb566bc", + "download": "https://api.biosimulations.org/results/672351efb678b3883bb566bc/download", + "logs": "https://api.biosimulations.org/logs/672351efb678b3883bb566bc?includeOutput=true", "status": "FAIL", "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError" + "exception_type": "ModuleNotFoundError", + "log": { + "duration": 0.039363, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } }, "opencor": { "response": 201, - "view": "https://api.biosimulations.org/runs/67224ab5f9c43d155d41d476", - "download": "https://api.biosimulations.org/results/67224ab5f9c43d155d41d476/download", - "logs": "https://api.biosimulations.org/logs/67224ab5f9c43d155d41d476?includeOutput=true", + "view": "https://api.biosimulations.org/runs/672351f10d09353e8f0f135e", + "download": "https://api.biosimulations.org/results/672351f10d09353e8f0f135e/download", + "logs": "https://api.biosimulations.org/logs/672351f10d09353e8f0f135e?includeOutput=true", "status": "FAIL", "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError" + "exception_type": "ModuleNotFoundError", + "log": { + "duration": 0.019974, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } }, "pyneuroml": { "response": 201, - "view": "https://api.biosimulations.org/runs/67224ab7f9c43d155d41d47c", - "download": "https://api.biosimulations.org/results/67224ab7f9c43d155d41d47c/download", - "logs": "https://api.biosimulations.org/logs/67224ab7f9c43d155d41d47c?includeOutput=true", + "view": "https://api.biosimulations.org/runs/672351f35a60072d20f41786", + "download": "https://api.biosimulations.org/results/672351f35a60072d20f41786/download", + "logs": "https://api.biosimulations.org/logs/672351f35a60072d20f41786?includeOutput=true", "status": "FAIL", "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError" + "exception_type": "ModuleNotFoundError", + "log": { + "duration": 0.04343, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } }, "pysces": { "response": 201, - "view": "https://api.biosimulations.org/runs/67224ab9f9c43d155d41d48a", - "download": "https://api.biosimulations.org/results/67224ab9f9c43d155d41d48a/download", - "logs": "https://api.biosimulations.org/logs/67224ab9f9c43d155d41d48a?includeOutput=true", + "view": "https://api.biosimulations.org/runs/672351f55a60072d20f4179e", + "download": "https://api.biosimulations.org/results/672351f55a60072d20f4179e/download", + "logs": "https://api.biosimulations.org/logs/672351f55a60072d20f4179e?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", - "exception_type": "CombineArchiveExecutionError" + "exception_type": "CombineArchiveExecutionError", + "log": { + "duration": 1.888328, + "exception": { + "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", + "type": "CombineArchiveExecutionError" + }, + "output": "libtk8.6.so: cannot open shared object file: No such file or directory\r\n\r\nPySCeS defaults to matplotlib's TKagg backend if not specified in the user configuration file, set \"matplotlib_backend = \" \r\nMatplotlib interface loaded (pysces.plt.m)\r\nPitcon routines available\r\nNLEQ2 routines available\r\nSBML support available\r\nYou are using NumPy (2.1.2) with SciPy (1.14.1)\r\nAssimulo CVode available\r\nRateChar is available\r\nParallel scanner is available\r\n\r\nPySCeS environment\r\n******************\r\npysces.model_dir = /home/FCAM/crbmapi/Pysces/psc\r\npysces.output_dir = /home/FCAM/crbmapi/Pysces\r\n\r\n\r\n***********************************************************************\r\n* Welcome to PySCeS (1.2.2) - Python Simulator for Cellular Systems *\r\n* http://pysces.sourceforge.net *\r\n* Copyright(C) B.G. Olivier, J.M. Rohwer, J.-H.S. Hofmeyr, 2004-2024 *\r\n* Triple-J Group for Molecular Cell Physiology *\r\n* Stellenbosch University, ZA and VU University Amsterdam, NL *\r\n* PySCeS is distributed under the PySCeS (BSD style) licence, see *\r\n* LICENCE.txt (supplied with this release) for details *\r\n* Please cite PySCeS with: doi:10.1093/bioinformatics/bti046 *\r\n***********************************************************************\r\n", + "sedDocuments": [ + { + "duration": 1.627419, + "exception": { + "message": "The SED document did not execute successfully:\n\n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", + "type": "SedmlExecutionError" + }, + "location": "tmp893693", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp893693:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp893693 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ...Check SBML support is at action level 2\r\nSBML file is L2V2\r\n\r\n*******************************************************************\r\nIssues encountered in SBML translation (model processed anyway)\r\nSBML source: /tmp/tmpgne9nqno.xml\r\n*******************************************************************\r\n\r\nNo free species!? ... help I'm confused! \r\n\r\n*******************************************************************\r\n\r\nWriting file: /tmp/tmp32uxx02_.psc\r\n\r\nSBML2PSC\r\nin : /tmp/tmpgne9nqno.xml\r\nout: /tmp/tmp32uxx02_.psc\r\nUsing model directory: /home/FCAM/crbmapi/Pysces/psc\r\n/tmp/tmp32uxx02_.psc loading ..... \r\nParsing file: /tmp/tmp32uxx02_.psc\r\nInfo: No reagents have been fixed\r\nInfo: \"I\" has been initialised but does not occur in a rate equation\r\nInfo: \"SEC\" has been initialised but does not occur in a rate equation\r\nInfo: \"V\" has been initialised but does not occur in a rate equation\r\nInfo: \"W\" has been initialised but does not occur in a rate equation\r\n \r\n \u001b[31mfailed - \r\nUnable to generate Stoichiometric Matrix! model has:\r\n0 reactions\r\n0 species\r\nwhat did you have in mind?\r\n\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "outputs": [ + { + "curves": [ + { + "id": "curve_V", + "status": "SKIPPED" + }, + { + "id": "curve_W", + "status": "SKIPPED" + } + ], + "duration": 0.383506, + "exception": null, + "id": "d1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + }, + { + "dataSets": [ + { + "id": "ex9_time", + "status": "SKIPPED" + }, + { + "id": "ex9_V", + "status": "SKIPPED" + }, + { + "id": "ex9_W", + "status": "SKIPPED" + } + ], + "duration": 0.059887, + "exception": null, + "id": "ex9", + "output": "", + "skipReason": null, + "status": "SKIPPED" + } + ], + "skipReason": null, + "status": "FAILED", + "tasks": [ + { + "algorithm": null, + "duration": 1.096363, + "exception": { + "message": "\nUnable to generate Stoichiometric Matrix! model has:\n0 reactions\n0 species\nwhat did you have in mind?\n", + "type": "AssertionError" + }, + "id": "sim1_net1", + "output": "", + "simulatorDetails": null, + "skipReason": null, + "status": "FAILED" + } + ] + } + ], + "skipReason": null, + "status": "FAILED" + } }, "rbapy": { "response": 201, - "view": "https://api.biosimulations.org/runs/67224abb2e0c0591a7c898cb", - "download": "https://api.biosimulations.org/results/67224abb2e0c0591a7c898cb/download", - "logs": "https://api.biosimulations.org/logs/67224abb2e0c0591a7c898cb?includeOutput=true", + "view": "https://api.biosimulations.org/runs/672351f6b678b3883bb566e2", + "download": "https://api.biosimulations.org/results/672351f6b678b3883bb566e2/download", + "logs": "https://api.biosimulations.org/logs/672351f6b678b3883bb566e2?includeOutput=true", "status": "FAIL", "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).", - "exception_type": "CombineArchiveExecutionError" + "exception_type": "CombineArchiveExecutionError", + "log": { + "duration": 0.559703, + "exception": { + "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).", + "type": "CombineArchiveExecutionError" + }, + "output": "", + "sedDocuments": [ + { + "duration": 0.327748, + "exception": { + "message": "The SED document did not execute successfully:\n\n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).", + "type": "SedmlExecutionError" + }, + "location": "tmp321123", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp321123:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp321123 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "outputs": [ + { + "curves": [ + { + "id": "curve_V", + "status": "SKIPPED" + }, + { + "id": "curve_W", + "status": "SKIPPED" + } + ], + "duration": 0.152897, + "exception": null, + "id": "d1", + "output": "", + "skipReason": null, + "status": "SKIPPED" + }, + { + "dataSets": [ + { + "id": "ex9_time", + "status": "SKIPPED" + }, + { + "id": "ex9_V", + "status": "SKIPPED" + }, + { + "id": "ex9_W", + "status": "SKIPPED" + } + ], + "duration": 0.063464, + "exception": null, + "id": "ex9", + "output": "", + "skipReason": null, + "status": "SKIPPED" + } + ], + "skipReason": null, + "status": "FAILED", + "tasks": [ + { + "algorithm": null, + "duration": 0.026525, + "exception": { + "message": "Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).", + "type": "ValueError" + }, + "id": "sim1_net1", + "output": "", + "simulatorDetails": null, + "skipReason": null, + "status": "FAILED" + } + ] + } + ], + "skipReason": null, + "status": "FAILED" + } }, "smoldyn": { "response": 201, - "view": "https://api.biosimulations.org/runs/67224abef9c43d155d41d4a1", - "download": "https://api.biosimulations.org/results/67224abef9c43d155d41d4a1/download", - "logs": "https://api.biosimulations.org/logs/67224abef9c43d155d41d4a1?includeOutput=true", + "view": "https://api.biosimulations.org/runs/672351f8b678b3883bb566ef", + "download": "https://api.biosimulations.org/results/672351f8b678b3883bb566ef/download", + "logs": "https://api.biosimulations.org/logs/672351f8b678b3883bb566ef?includeOutput=true", "status": "FAIL", "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError" + "exception_type": "ModuleNotFoundError", + "log": { + "duration": 0.057217, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } }, "tellurium": { "response": 201, - "view": "https://api.biosimulations.org/runs/67224ac02e0c0591a7c898d7", - "download": "https://api.biosimulations.org/results/67224ac02e0c0591a7c898d7/download", - "logs": "https://api.biosimulations.org/logs/67224ac02e0c0591a7c898d7?includeOutput=true", + "view": "https://api.biosimulations.org/runs/672351fa5a60072d20f417af", + "download": "https://api.biosimulations.org/results/672351fa5a60072d20f417af/download", + "logs": "https://api.biosimulations.org/logs/672351fa5a60072d20f417af?includeOutput=true", "status": "pass", "error_message": "", - "exception_type": "" + "exception_type": "", + "log": { + "duration": 1.951186, + "exception": null, + "output": "", + "sedDocuments": [ + { + "duration": 1.553973, + "exception": null, + "location": "tmp75673", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp75673:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp75673 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "outputs": [ + { + "curves": [ + { + "id": "curve_V", + "status": "SUCCEEDED" + }, + { + "id": "curve_W", + "status": "SUCCEEDED" + } + ], + "duration": 0.940259, + "exception": null, + "id": "d1", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + }, + { + "dataSets": [ + { + "id": "ex9_time", + "status": "SUCCEEDED" + }, + { + "id": "ex9_V", + "status": "SUCCEEDED" + }, + { + "id": "ex9_W", + "status": "SUCCEEDED" + } + ], + "duration": 0.340626, + "exception": null, + "id": "ex9", + "output": "", + "skipReason": null, + "status": "SUCCEEDED" + } + ], + "skipReason": null, + "status": "SUCCEEDED", + "tasks": [ + { + "algorithm": "KISAO_0000019", + "duration": 0.180817, + "exception": null, + "id": "sim1_net1", + "output": "", + "simulatorDetails": [ + { + "key": "method", + "value": "simulate" + }, + { + "key": "solver", + "value": "cvode" + }, + { + "key": "relative_tolerance", + "value": 1e-06 + }, + { + "key": "absolute_tolerance", + "value": 1e-12 + }, + { + "key": "stiff", + "value": true + }, + { + "key": "maximum_bdf_order", + "value": 5 + }, + { + "key": "maximum_adams_order", + "value": 12 + }, + { + "key": "maximum_num_steps", + "value": 20000 + }, + { + "key": "maximum_time_step", + "value": 0.0 + }, + { + "key": "minimum_time_step", + "value": 0.0 + }, + { + "key": "initial_time_step", + "value": 0.0 + }, + { + "key": "multiple_steps", + "value": false + }, + { + "key": "variable_step_size", + "value": false + }, + { + "key": "max_output_rows", + "value": 100000 + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } + ] + } + ], + "skipReason": null, + "status": "SUCCEEDED" + } }, "vcell": { "response": 201, - "view": "https://api.biosimulations.org/runs/67224ac3f9c43d155d41d4be", - "download": "https://api.biosimulations.org/results/67224ac3f9c43d155d41d4be/download", - "logs": "https://api.biosimulations.org/logs/67224ac3f9c43d155d41d4be?includeOutput=true", + "view": "https://api.biosimulations.org/runs/672351fdb678b3883bb56709", + "download": "https://api.biosimulations.org/results/672351fdb678b3883bb56709/download", + "logs": "https://api.biosimulations.org/logs/672351fdb678b3883bb56709?includeOutput=true", "status": null, "error_message": "", - "exception_type": "" + "exception_type": "", + "log": { + "duration": null, + "exception": null, + "output": null, + "sedDocuments": [], + "skipReason": null, + "status": "QUEUED" + } }, "xpp": { "response": 201, - "view": "https://api.biosimulations.org/runs/67224ac6953bc3bf105efa68", - "download": "https://api.biosimulations.org/results/67224ac6953bc3bf105efa68/download", - "logs": "https://api.biosimulations.org/logs/67224ac6953bc3bf105efa68?includeOutput=true", + "view": "https://api.biosimulations.org/runs/672351ff0d09353e8f0f13a8", + "download": "https://api.biosimulations.org/results/672351ff0d09353e8f0f13a8/download", + "logs": "https://api.biosimulations.org/logs/672351ff0d09353e8f0f13a8?includeOutput=true", "status": "FAIL", "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError" + "exception_type": "ModuleNotFoundError", + "log": { + "duration": 0.072485, + "exception": { + "message": "No module named 'libsbml'", + "type": "ModuleNotFoundError" + }, + "output": "", + "sedDocuments": [], + "skipReason": null, + "status": "FAILED" + } } } \ No newline at end of file diff --git a/utils/__init__.py b/utils/__init__.py index 8180fe7d..1dc5fcd3 100644 --- a/utils/__init__.py +++ b/utils/__init__.py @@ -574,6 +574,7 @@ def run_biosimulators_docker(engine,sedml_filepath,sbml_filepath,output_dir='out status = "" error_message = "" exception_type = "" + log_yml_dict = {} try: @@ -587,8 +588,10 @@ def run_biosimulators_docker(engine,sedml_filepath,sbml_filepath,output_dir='out if os.path.exists(log_yml_path): status, error_message, exception_type = process_log_yml(log_yml_path) + with open(log_yml_path) as f: + log_yml_dict = yaml.safe_load(f) - results_dict = {"status": status, "error_message": error_message, "exception_type": exception_type} + results_dict = {"status": status, "error_message": error_message, "exception_type": exception_type,"log":log_yml_dict} return results_dict #ensure outputs are owned by the user @@ -599,8 +602,10 @@ def run_biosimulators_docker(engine,sedml_filepath,sbml_filepath,output_dir='out if os.path.exists(log_yml_path): status, error_message, exception_type = process_log_yml(log_yml_path) + with open(log_yml_path) as f: + log_yml_dict = yaml.safe_load(f) - results_dict = {"status": status, "error_message": error_message, "exception_type": exception_type} + results_dict = {"status": status, "error_message": error_message, "exception_type": exception_type,"log":log_yml_dict} return results_dict def biosimulators_core(engine,omex_filepath,output_dir=None): @@ -1217,10 +1222,13 @@ def run_biosimulators_remotely(engine_keys, for e, extract_dir in extract_dir_dict.items(): log_yml_path = find_file_in_dir('log.yml', extract_dir)[0] + with open(log_yml_path) as f: + log_yml_dict = yaml.safe_load(f) status, error_message, exception_type = process_log_yml(log_yml_path) results_remote[e]["status"] = status results_remote[e]["error_message"] = error_message results_remote[e]["exception_type"] = exception_type + results_remote[e]["log"] = log_yml_dict file_paths = find_files(remote_output_dir, '.pdf') move_d1_files(file_paths, d1_plots_remote_dir) From 3e0c1f36911d1ee13cf97c4dad8ade75fcb517f2 Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Thu, 31 Oct 2024 10:01:06 +0000 Subject: [PATCH 14/24] remove unused functions and some unnecessary comments --- utils/__init__.py | 47 ----------------------------------------------- 1 file changed, 47 deletions(-) diff --git a/utils/__init__.py b/utils/__init__.py index 1dc5fcd3..67c092f7 100644 --- a/utils/__init__.py +++ b/utils/__init__.py @@ -367,8 +367,6 @@ def find_file_in_dir(file_name, directory): list_of_files.append(file_path) return list_of_files - -# write definition to create d1 plots dict def d1_plots_dict(d1_plots_path='d1_plots'): """ Create a dictionary with engine names as keys and d1 plot paths as values. @@ -380,7 +378,6 @@ def d1_plots_dict(d1_plots_path='d1_plots'): return d1_plots_dict - def create_hyperlink(path, title=None): """ Create a hyperlink to a file or folder. If the path is None, return None. @@ -436,11 +433,6 @@ def ansi_to_html(text): text = text.replace('The COMBINE/OMEX did not execute successfully:', 'The COMBINE/OMEX did not execute successfully:') return text -def display_error_message(error_message): - if error_message != None: - display_markdown(f'{error_message}', raw=True) - return error_message - def check_file_compatibility_test(engine, model_filepath, experiment_filepath): ''' Check if the file extensions suggest the file types are compatible with the engine. @@ -544,12 +536,7 @@ def get_remote_results(engine, download_link, output_dir='remote_results'): def rename_files_in_extract_dir(extract_dir, engine): - # find the log.yml file in the extracted directory log_yml_path = find_file_in_dir('log.yml', extract_dir)[0] - with open(log_yml_path) as f: - log_yml_dict = yaml.safe_load(f) - - # rename log.yml file to '{engine}_log.yml' new_file_name = f'{engine}_log.yml' root = os.path.dirname(log_yml_path) new_file_path = os.path.join(root, new_file_name) @@ -1048,40 +1035,6 @@ def download_file_from_link(engine, download_link, output_file='results.zip', ma print(f'Failed to download {engine} results.') raise HTTPError(f'Failed to download {engine} results.') -# unzip the file in file_path if it is a zip file and remove the zip file, replace with the unzipped folder -def unzip_file(file_path, output_dir=None): - """ - Unzip a file if it is a zip file. - - Parameters: - file_path (str): The path to the file to unzip. - output_dir (str): The directory to extract the contents of the zip file to. Defaults to None. - - Returns: - str: The path to the unzipped folder. - """ - - # If the file is a zip file, unzip it - if zipfile.is_zipfile(file_path): - # If the output directory is not specified, use the directory of the file - if output_dir is None: - output_dir = os.path.dirname(file_path) - - # Create a ZipFile object - with zipfile.ZipFile(file_path, 'r') as zip_ref: - # Extract the contents of the zip file - zip_ref.extractall(output_dir) - - # Remove the zip file - os.remove(file_path) - - # Get the name of the unzipped folder - unzipped_folder = os.path.join(output_dir, os.path.splitext(os.path.basename(file_path))[0]) - - return unzipped_folder - - return file_path - def create_results_table(results, sbml_filepath, sedml_filepath, output_dir): """ Create a markdown table of the results. From 334e33dfb57f15c8c140f86563169e8cad386ef4 Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Thu, 31 Oct 2024 10:45:38 +0000 Subject: [PATCH 15/24] save log_yml and process it later for easier trouble shooting --- SBML/tests/results_local.json | 360 ++++++++++++++---------------- SBML/tests/results_remote.json | 387 ++++++++++++++------------------- utils/__init__.py | 71 +++--- 3 files changed, 361 insertions(+), 457 deletions(-) diff --git a/SBML/tests/results_local.json b/SBML/tests/results_local.json index e2b84796..f2394fa0 100644 --- a/SBML/tests/results_local.json +++ b/SBML/tests/results_local.json @@ -1,18 +1,16 @@ { "amici": { - "status": "FAIL", - "error_message": "Reached maximum number of steps", - "exception_type": "", - "log": { - "duration": 13.754801, + "exception_message": "", + "log_yml": { + "duration": 14.477499, "exception": null, "output": "", "sedDocuments": [ { - "duration": 13.412763, + "duration": 14.07195, "exception": null, - "location": "tmp408321", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp408321:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp408321 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp447751", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp447751:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp447751 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -25,7 +23,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.699112, + "duration": 0.738736, "exception": null, "id": "d1", "output": "", @@ -47,7 +45,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.282498, + "duration": 0.334205, "exception": null, "id": "ex9", "output": "", @@ -60,10 +58,10 @@ "tasks": [ { "algorithm": "KISAO_0000496", - "duration": 12.334193, + "duration": 12.901083, "exception": null, "id": "sim1_net1", - "output": "2024-10-31 09:43:34.470 - amici.swig_wrappers - ERROR - [OTHER] AMICI simulation failed: Reached maximum number of steps 10000 before reaching tout at t=99.66.\r\n2024-10-31 09:43:34.470 - amici.swig_wrappers - DEBUG - [BACKTRACE] The previous error occurred at:\r\n2 0x7f249c0d7a8b /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0xb5a8b) [0x7f249c0d7a8b]\r\n3 0x7f249c1cb262 amici::Solver::run(double) const + 34\r\n4 0x7f249c2035d0 amici::ForwardProblem::workForwardProblem() + 1728\r\n5 0x7f249c1b7763 amici::runAmiciSimulation(amici::Solver&, amici::ExpData const*, amici::Model&, bool) + 435\r\n6 0x7f249c161280 /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0x13f\r\n", + "output": "2024-10-31 10:35:24.638 - amici.swig_wrappers - ERROR - [OTHER] AMICI simulation failed: Reached maximum number of steps 10000 before reaching tout at t=99.66.\r\n2024-10-31 10:35:24.639 - amici.swig_wrappers - DEBUG - [BACKTRACE] The previous error occurred at:\r\n2 0x7fa569757a8b /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0xb5a8b) [0x7fa569757a8b]\r\n3 0x7fa56984b262 amici::Solver::run(double) const + 34\r\n4 0x7fa5698835d0 amici::ForwardProblem::workForwardProblem() + 1728\r\n5 0x7fa569837763 amici::runAmiciSimulation(amici::Solver&, amici::ExpData const*, amici::Model&, bool) + 435\r\n6 0x7fa5697e1280 /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0x13f\r\n", "simulatorDetails": [ { "key": "solver", @@ -89,11 +87,9 @@ } }, "brian2": { - "status": "FAIL", - "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError", - "log": { - "duration": 0.055724, + "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1", + "log_yml": { + "duration": 0.086251, "exception": { "message": "No module named 'libsbml'", "type": "ModuleNotFoundError" @@ -105,25 +101,23 @@ } }, "bionetgen": { - "status": "FAIL", - "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).", - "exception_type": "CombineArchiveExecutionError", - "log": { - "duration": 3.920847, + "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1", + "log_yml": { + "duration": 0.683383, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).", "type": "CombineArchiveExecutionError" }, - "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp159152` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp769711` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", "sedDocuments": [ { - "duration": 3.378159, + "duration": 0.432255, "exception": { "message": "The SED document did not execute successfully:\n\n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).", "type": "SedmlExecutionError" }, - "location": "tmp159152", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp159152:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp159152 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp769711", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp769711:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp769711 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -136,7 +130,7 @@ "status": "SKIPPED" } ], - "duration": 2.304324, + "duration": 0.248611, "exception": null, "id": "d1", "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", @@ -158,7 +152,7 @@ "status": "SKIPPED" } ], - "duration": 0.560961, + "duration": 0.072951, "exception": null, "id": "ex9", "output": "", @@ -171,7 +165,7 @@ "tasks": [ { "algorithm": null, - "duration": 0.025688, + "duration": 0.02529, "exception": { "message": "Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).", "type": "ValueError" @@ -190,25 +184,23 @@ } }, "boolnet": { - "status": "FAIL", - "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).", - "exception_type": "CombineArchiveExecutionError", - "log": { - "duration": 0.658376, + "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1", + "log_yml": { + "duration": 0.934637, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).", "type": "CombineArchiveExecutionError" }, - "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp198978` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp867509` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", "sedDocuments": [ { - "duration": 0.388336, + "duration": 0.530769, "exception": { "message": "The SED document did not execute successfully:\n\n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).", "type": "SedmlExecutionError" }, - "location": "tmp198978", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp198978:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp198978 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp867509", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp867509:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp867509 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -221,7 +213,7 @@ "status": "SKIPPED" } ], - "duration": 0.216085, + "duration": 0.300042, "exception": null, "id": "d1", "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", @@ -243,7 +235,7 @@ "status": "SKIPPED" } ], - "duration": 0.061727, + "duration": 0.069848, "exception": null, "id": "ex9", "output": "", @@ -256,7 +248,7 @@ "tasks": [ { "algorithm": null, - "duration": 0.028407, + "duration": 0.032549, "exception": { "message": "Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).", "type": "ValueError" @@ -275,25 +267,23 @@ } }, "cbmpy": { - "status": "FAIL", - "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", - "exception_type": "CombineArchiveExecutionError", - "log": { - "duration": 0.862579, + "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1", + "log_yml": { + "duration": 0.983548, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", "type": "CombineArchiveExecutionError" }, - "output": "\r\nINFO: No xlwt module available, Excel spreadsheet creation disabled\r\n\r\n\r\n\r\nNo module named 'cplex'\r\n\r\n\r\n\r\nCPLEX not available\r\n\r\n*****\r\nUsing GLPK\r\n*****\r\n\r\n\r\nINFO: No xlrd module available, Excel spreadsheet reading disabled\r\n\r\nCBMPy environment\r\n******************\r\nRevision: r689\r\n\r\n\r\n***********************************************************************\r\n* Welcome to CBMPy (0.7.25) - PySCeS Constraint Based Modelling *\r\n* http://cbmpy.sourceforge.net *\r\n* Copyright(C) Brett G. Olivier 2014 - 2019 *\r\n* Dept. of Systems Bioinformatics *\r\n* Vrije Universiteit Amsterdam, Amsterdam, The Netherlands *\r\n* CBMPy is developed as part of the BeBasic MetaToolKit Project *\r\n* Distributed under the GNU GPL v 3.0 licence, see *\r\n* LICENCE (supplied with this release) for details *\r\n***********************************************************************\r\n\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp238716` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "output": "\r\nINFO: No xlwt module available, Excel spreadsheet creation disabled\r\n\r\n\r\n\r\nNo module named 'cplex'\r\n\r\n\r\n\r\nCPLEX not available\r\n\r\n*****\r\nUsing GLPK\r\n*****\r\n\r\n\r\nINFO: No xlrd module available, Excel spreadsheet reading disabled\r\n\r\nCBMPy environment\r\n******************\r\nRevision: r689\r\n\r\n\r\n***********************************************************************\r\n* Welcome to CBMPy (0.7.25) - PySCeS Constraint Based Modelling *\r\n* http://cbmpy.sourceforge.net *\r\n* Copyright(C) Brett G. Olivier 2014 - 2019 *\r\n* Dept. of Systems Bioinformatics *\r\n* Vrije Universiteit Amsterdam, Amsterdam, The Netherlands *\r\n* CBMPy is developed as part of the BeBasic MetaToolKit Project *\r\n* Distributed under the GNU GPL v 3.0 licence, see *\r\n* LICENCE (supplied with this release) for details *\r\n***********************************************************************\r\n\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp3439` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", "sedDocuments": [ { - "duration": 0.475921, + "duration": 0.493139, "exception": { "message": "The SED document did not execute successfully:\n\n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", "type": "SedmlExecutionError" }, - "location": "tmp238716", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp238716:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp238716 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp3439", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp3439:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp3439 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -306,7 +296,7 @@ "status": "SKIPPED" } ], - "duration": 0.241532, + "duration": 0.26759, "exception": null, "id": "d1", "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", @@ -328,7 +318,7 @@ "status": "SKIPPED" } ], - "duration": 0.069291, + "duration": 0.060221, "exception": null, "id": "ex9", "output": "", @@ -341,7 +331,7 @@ "tasks": [ { "algorithm": null, - "duration": 0.03193, + "duration": 0.033579, "exception": { "message": "UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", "type": "ValueError" @@ -360,25 +350,23 @@ } }, "cobrapy": { - "status": "FAIL", - "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", - "exception_type": "CombineArchiveExecutionError", - "log": { - "duration": 0.688942, + "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1", + "log_yml": { + "duration": 0.713108, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", "type": "CombineArchiveExecutionError" }, - "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp827433` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp22230` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", "sedDocuments": [ { - "duration": 0.450748, + "duration": 0.470406, "exception": { "message": "The SED document did not execute successfully:\n\n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", "type": "SedmlExecutionError" }, - "location": "tmp827433", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp827433:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp827433 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp22230", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp22230:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp22230 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -391,7 +379,7 @@ "status": "SKIPPED" } ], - "duration": 0.239033, + "duration": 0.285627, "exception": null, "id": "d1", "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", @@ -413,7 +401,7 @@ "status": "SKIPPED" } ], - "duration": 0.068489, + "duration": 0.069436, "exception": null, "id": "ex9", "output": "", @@ -426,7 +414,7 @@ "tasks": [ { "algorithm": null, - "duration": 0.032377, + "duration": 0.02639, "exception": { "message": "UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", "type": "ValueError" @@ -445,19 +433,17 @@ } }, "copasi": { - "status": "pass", - "error_message": "", - "exception_type": "", - "log": { - "duration": 1.666169, + "exception_message": "", + "log_yml": { + "duration": 1.602629, "exception": null, - "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp390018` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp431753` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", "sedDocuments": [ { - "duration": 1.388789, + "duration": 1.26713, "exception": null, - "location": "tmp390018", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp390018:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp390018 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp431753", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp431753:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp431753 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -470,7 +456,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.85174, + "duration": 0.772634, "exception": null, "id": "d1", "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", @@ -492,7 +478,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.308694, + "duration": 0.241472, "exception": null, "id": "ex9", "output": "", @@ -505,10 +491,10 @@ "tasks": [ { "algorithm": "KISAO_0000560", - "duration": 0.134679, + "duration": 0.168711, "exception": null, "id": "sim1_net1", - "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33m- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmp4lk8wl57/./LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/kisao/utils.py:518: AlgorithmSubstitutedWarning: \u001b[33m'LSODA/LSODAR hybrid method' (KISAO_0000560) will be substituted for 'CVODE' (KISAO_0000019) at substitution policy 'SIMILAR_VARIABLES'.\u001b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", + "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33m- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmpaggomud2/./LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/kisao/utils.py:518: AlgorithmSubstitutedWarning: \u001b[33m'LSODA/LSODAR hybrid method' (KISAO_0000560) will be substituted for 'CVODE' (KISAO_0000019) at substitution policy 'SIMILAR_VARIABLES'.\u001b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", "simulatorDetails": [ { "key": "methodName", @@ -530,19 +516,17 @@ } }, "gillespy2": { - "status": "pass", - "error_message": "", - "exception_type": "", - "log": { - "duration": 1.511815, + "exception_message": "", + "log_yml": { + "duration": 1.487551, "exception": null, - "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp779307` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp903161` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", "sedDocuments": [ { - "duration": 1.237941, + "duration": 1.201098, "exception": null, - "location": "tmp779307", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp779307:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp779307 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp903161", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp903161:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp903161 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -555,7 +539,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.748946, + "duration": 0.671544, "exception": null, "id": "d1", "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", @@ -577,7 +561,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.260346, + "duration": 0.266753, "exception": null, "id": "ex9", "output": "", @@ -590,10 +574,10 @@ "tasks": [ { "algorithm": "KISAO_0000088", - "duration": 0.127639, + "duration": 0.16635, "exception": null, "id": "sim1_net1", - "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33m- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/kisao/utils.py:477: AlgorithmSubstitutedWarning: \u001b[33m'LSODA' (KISAO_0000088) will be substituted for 'CVODE'' (KISAO_0000019) at substitution policy 'SIMILAR_VARIABLES'.\u001b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33m- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/kisao/utils.py:477: AlgorithmSubstitutedWarning: \u001b[33m'LSODA' (KISAO_0000088) will be substituted for 'CVODE'' (KISAO_0000019) at substitution policy 'SIMILAR_VARIABLES'.\u001b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", "simulatorDetails": [ { "key": "method", @@ -617,25 +601,23 @@ } }, "ginsim": { - "status": "FAIL", - "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000", - "exception_type": "CombineArchiveExecutionError", - "log": { - "duration": 0.773066, + "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1", + "log_yml": { + "duration": 0.758793, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000", "type": "CombineArchiveExecutionError" }, - "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp390712` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp262372` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", "sedDocuments": [ { - "duration": 0.493601, + "duration": 0.436353, "exception": { "message": "The SED document did not execute successfully:\n\n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000", "type": "SedmlExecutionError" }, - "location": "tmp390712", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp390712:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp390712 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp262372", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp262372:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp262372 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -648,7 +630,7 @@ "status": "SKIPPED" } ], - "duration": 0.269022, + "duration": 0.227592, "exception": null, "id": "d1", "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", @@ -670,7 +652,7 @@ "status": "SKIPPED" } ], - "duration": 0.068795, + "duration": 0.079804, "exception": null, "id": "ex9", "output": "", @@ -683,7 +665,7 @@ "tasks": [ { "algorithm": null, - "duration": 0.034745, + "duration": 0.030608, "exception": { "message": "Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000", "type": "ValueError" @@ -702,19 +684,17 @@ } }, "libsbmlsim": { - "status": "pass", - "error_message": "", - "exception_type": "", - "log": { - "duration": 4.726697, + "exception_message": "", + "log_yml": { + "duration": 4.554327, "exception": null, - "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp568223` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp933964` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", "sedDocuments": [ { - "duration": 4.504997, + "duration": 4.30064, "exception": null, - "location": "tmp568223", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp568223:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp568223 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp933964", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp933964:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp933964 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -727,7 +707,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.693537, + "duration": 0.693692, "exception": null, "id": "d1", "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", @@ -749,7 +729,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.264446, + "duration": 0.323543, "exception": null, "id": "ex9", "output": "", @@ -762,10 +742,10 @@ "tasks": [ { "algorithm": "KISAO_0000086", - "duration": 3.4533, + "duration": 3.178311, "exception": null, "id": "sim1_net1", - "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33m- Variable `DISPLAY__d1_V_fnPop1_0_V` may be invalid.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` may be invalid.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` may be invalid.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` may be invalid.\r\n - XPath could not be validated.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmp446ngi8s/./LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/kisao/utils.py:477: AlgorithmSubstitutedWarning: \u001b[33m'Fehlberg method' (KISAO_0000086) will be substituted for 'CVODE'' (KISAO_0000019) at substitution policy 'SIMILAR_VARIABLES'.\u001b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33m- Variable `OUTPUT__of1_V_fnPop1_0_V` may be invalid.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` may be invalid.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` may be invalid.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` may be invalid.\r\n - XPath could not be validated.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmpv4owxjaz/./LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/kisao/utils.py:477: AlgorithmSubstitutedWarning: \u001b[33m'Fehlberg method' (KISAO_0000086) will be substituted for 'CVODE'' (KISAO_0000019) at substitution policy 'SIMILAR_VARIABLES'.\u001b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", "simulatorDetails": [ { "key": "method", @@ -794,25 +774,23 @@ } }, "masspy": { - "status": "FAIL", - "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .\n \t`(model, errors) = validate_sbml_model(filename)`\n If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .", - "exception_type": "CombineArchiveExecutionError", - "log": { - "duration": 0.789707, + "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1", + "log_yml": { + "duration": 0.918865, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .\n \t`(model, errors) = validate_sbml_model(filename)`\n If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .", "type": "CombineArchiveExecutionError" }, - "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp203916` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp267411` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n", "sedDocuments": [ { - "duration": 0.498649, + "duration": 0.576144, "exception": { "message": "The SED document did not execute successfully:\n\n Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .\n \t`(model, errors) = validate_sbml_model(filename)`\n If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .", "type": "SedmlExecutionError" }, - "location": "tmp203916", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp203916:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp203916 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp267411", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp267411:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp267411 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -825,7 +803,7 @@ "status": "SKIPPED" } ], - "duration": 0.226807, + "duration": 0.302285, "exception": null, "id": "d1", "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mIllogicalVizWarning\u001b[0m: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mIllogicalVizWarning\u001b[0m: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mIllogicalVizWarning\u001b[0m: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mIllogicalVizWarning\u001b[0m: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n", @@ -847,7 +825,7 @@ "status": "SKIPPED" } ], - "duration": 0.059781, + "duration": 0.069424, "exception": null, "id": "ex9", "output": "", @@ -860,13 +838,13 @@ "tasks": [ { "algorithm": null, - "duration": 0.040008, + "duration": 0.04127, "exception": { "message": "Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .\n\t`(model, errors) = validate_sbml_model(filename)`\nIf the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .", "type": "MassSBMLError" }, "id": "sim1_net1", - "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33m- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmplglmzjla/./LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mSBML model is written as Level 2 Version 2, will attempt to convert the SBML model from Level 2 Version 2 to Level 3 Version 1 before parsing\u001b[0m\r\n", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33m- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmpnvujal2d/./LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mSBML model is written as Level 2 Version 2, will attempt to convert the SBML model from Level 2 Version 2 to Level 3 Version 1 before parsing\u001b[0m\r\n", "simulatorDetails": null, "skipReason": null, "status": "FAILED" @@ -879,11 +857,9 @@ } }, "netpyne": { - "status": "FAIL", - "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError", - "log": { - "duration": 0.054533, + "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1", + "log_yml": { + "duration": 0.051276, "exception": { "message": "No module named 'libsbml'", "type": "ModuleNotFoundError" @@ -895,11 +871,9 @@ } }, "neuron": { - "status": "FAIL", - "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError", - "log": { - "duration": 0.066346, + "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1", + "log_yml": { + "duration": 0.049382, "exception": { "message": "No module named 'libsbml'", "type": "ModuleNotFoundError" @@ -911,11 +885,9 @@ } }, "opencor": { - "status": "FAIL", - "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError", - "log": { - "duration": 0.036559, + "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1", + "log_yml": { + "duration": 0.042507, "exception": { "message": "No module named 'libsbml'", "type": "ModuleNotFoundError" @@ -927,11 +899,9 @@ } }, "pyneuroml": { - "status": "FAIL", - "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError", - "log": { - "duration": 0.040828, + "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1", + "log_yml": { + "duration": 0.050403, "exception": { "message": "No module named 'libsbml'", "type": "ModuleNotFoundError" @@ -943,25 +913,23 @@ } }, "pysces": { - "status": "FAIL", - "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", - "exception_type": "CombineArchiveExecutionError", - "log": { - "duration": 1.884065, + "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1", + "log_yml": { + "duration": 1.84604, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", "type": "CombineArchiveExecutionError" }, - "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp416787` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp553006` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", "sedDocuments": [ { - "duration": 1.644017, + "duration": 1.573917, "exception": { "message": "The SED document did not execute successfully:\n\n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", "type": "SedmlExecutionError" }, - "location": "tmp416787", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp416787:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp416787 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ...Check SBML support is at action level 2\r\nSBML file is L2V2\r\n\r\n*******************************************************************\r\nIssues encountered in SBML translation (model processed anyway)\r\nSBML source: /tmp/tmpkavv1ax6.xml\r\n*******************************************************************\r\n\r\nNo free species!? ... help I'm confused! \r\n\r\n*******************************************************************\r\n\r\nWriting file: /tmp/tmpkmhjarwf.psc\r\n\r\nSBML2PSC\r\nin : /tmp/tmpkavv1ax6.xml\r\nout: /tmp/tmpkmhjarwf.psc\r\nUsing model directory: /Pysces/psc\r\n/tmp/tmpkmhjarwf.psc loading ..... \r\nParsing file: /tmp/tmpkmhjarwf.psc\r\nInfo: No reagents have been fixed\r\nInfo: \"I\" has been initialised but does not occur in a rate equation\r\nInfo: \"SEC\" has been initialised but does not occur in a rate equation\r\nInfo: \"V\" has been initialised but does not occur in a rate equation\r\nInfo: \"W\" has been initialised but does not occur in a rate equation\r\n \r\n \u001b[31mfailed - \r\nUnable to generate Stoichiometric Matrix! model has:\r\n0 reactions\r\n0 species\r\nwhat did you have in mind?\r\n\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp553006", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp553006:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp553006 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ...Check SBML support is at action level 2\r\nSBML file is L2V2\r\n\r\n*******************************************************************\r\nIssues encountered in SBML translation (model processed anyway)\r\nSBML source: /tmp/tmp6frbr57g.xml\r\n*******************************************************************\r\n\r\nNo free species!? ... help I'm confused! \r\n\r\n*******************************************************************\r\n\r\nWriting file: /tmp/tmp3flv775d.psc\r\n\r\nSBML2PSC\r\nin : /tmp/tmp6frbr57g.xml\r\nout: /tmp/tmp3flv775d.psc\r\nUsing model directory: /Pysces/psc\r\n/tmp/tmp3flv775d.psc loading ..... \r\nParsing file: /tmp/tmp3flv775d.psc\r\nInfo: No reagents have been fixed\r\nInfo: \"I\" has been initialised but does not occur in a rate equation\r\nInfo: \"SEC\" has been initialised but does not occur in a rate equation\r\nInfo: \"V\" has been initialised but does not occur in a rate equation\r\nInfo: \"W\" has been initialised but does not occur in a rate equation\r\n \r\n \u001b[31mfailed - \r\nUnable to generate Stoichiometric Matrix! model has:\r\n0 reactions\r\n0 species\r\nwhat did you have in mind?\r\n\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -974,7 +942,7 @@ "status": "SKIPPED" } ], - "duration": 0.336579, + "duration": 0.317681, "exception": null, "id": "d1", "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", @@ -996,7 +964,7 @@ "status": "SKIPPED" } ], - "duration": 0.089952, + "duration": 0.044094, "exception": null, "id": "ex9", "output": "", @@ -1009,13 +977,13 @@ "tasks": [ { "algorithm": null, - "duration": 1.062347, + "duration": 1.103688, "exception": { "message": "\nUnable to generate Stoichiometric Matrix! model has:\n0 reactions\n0 species\nwhat did you have in mind?\n", "type": "AssertionError" }, "id": "sim1_net1", - "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33m- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33m- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", "simulatorDetails": null, "skipReason": null, "status": "FAILED" @@ -1028,25 +996,23 @@ } }, "rbapy": { - "status": "FAIL", - "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).", - "exception_type": "CombineArchiveExecutionError", - "log": { - "duration": 0.832863, + "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1", + "log_yml": { + "duration": 0.762289, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).", "type": "CombineArchiveExecutionError" }, - "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp716194` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp225479` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", "sedDocuments": [ { - "duration": 0.543014, + "duration": 0.515191, "exception": { "message": "The SED document did not execute successfully:\n\n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).", "type": "SedmlExecutionError" }, - "location": "tmp716194", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp716194:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp716194 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp225479", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp225479:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp225479 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -1059,7 +1025,7 @@ "status": "SKIPPED" } ], - "duration": 0.288198, + "duration": 0.29526, "exception": null, "id": "d1", "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", @@ -1081,7 +1047,7 @@ "status": "SKIPPED" } ], - "duration": 0.072644, + "duration": 0.075917, "exception": null, "id": "ex9", "output": "", @@ -1094,7 +1060,7 @@ "tasks": [ { "algorithm": null, - "duration": 0.030624, + "duration": 0.024634, "exception": { "message": "Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).", "type": "ValueError" @@ -1113,25 +1079,21 @@ } }, "smoldyn": { - "status": "FAIL", - "error_message": "did not run", - "exception_type": "", - "log": {} + "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1", + "log_yml": {} }, "tellurium": { - "status": "pass", - "error_message": "", - "exception_type": "", - "log": { - "duration": 1.851769, + "exception_message": "", + "log_yml": { + "duration": 1.66226, "exception": null, - "output": "/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n\r\n/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp929424` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n\r\n", + "output": "/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n\r\n/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp444204` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n\r\n", "sedDocuments": [ { - "duration": 1.366811, + "duration": 1.233869, "exception": null, - "location": "tmp929424", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp929424:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp929424 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp444204", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp444204:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp444204 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -1144,7 +1106,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.748565, + "duration": 0.733761, "exception": null, "id": "d1", "output": "/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning:\r\n\r\n\u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n\r\n", @@ -1166,7 +1128,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.294079, + "duration": 0.229049, "exception": null, "id": "ex9", "output": "", @@ -1179,10 +1141,10 @@ "tasks": [ { "algorithm": "KISAO_0000019", - "duration": 0.145839, + "duration": 0.175954, "exception": null, "id": "sim1_net1", - "output": "/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33m- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n\r\n/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmpt8htdmbr/./LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n\r\n", + "output": "/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33m- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n\r\n/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmp7opm6_44/./LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n\r\n", "simulatorDetails": [ { "key": "method", @@ -1252,24 +1214,20 @@ } }, "vcell": { - "status": "pass", - "error_message": "", - "exception_type": "", - "log": { + "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1", + "log_yml": { "duration": 2, "exception": null, - "output": "Processing tmp396926. Done", + "output": "Processing tmp712577. Done", "sedDocuments": [], "skipReason": null, "status": "SUCCEEDED" } }, "xpp": { - "status": "FAIL", - "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError", - "log": { - "duration": 0.043938, + "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1", + "log_yml": { + "duration": 0.057562, "exception": { "message": "No module named 'libsbml'", "type": "ModuleNotFoundError" diff --git a/SBML/tests/results_remote.json b/SBML/tests/results_remote.json index 37cfbb32..b0fdef6a 100644 --- a/SBML/tests/results_remote.json +++ b/SBML/tests/results_remote.json @@ -1,22 +1,19 @@ { "amici": { "response": 201, - "view": "https://api.biosimulations.org/runs/672351d95a60072d20f4173a", - "download": "https://api.biosimulations.org/results/672351d95a60072d20f4173a/download", - "logs": "https://api.biosimulations.org/logs/672351d95a60072d20f4173a?includeOutput=true", - "status": "FAIL", - "error_message": "Reached maximum number of steps", - "exception_type": "", + "view": "https://api.biosimulations.org/runs/67235bd70d09353e8f0f1ebc", + "download": "https://api.biosimulations.org/results/67235bd70d09353e8f0f1ebc/download", + "logs": "https://api.biosimulations.org/logs/67235bd70d09353e8f0f1ebc?includeOutput=true", "log": { - "duration": 25.693272, + "duration": 22.469637, "exception": null, "output": "", "sedDocuments": [ { - "duration": 25.367974, + "duration": 22.095105, "exception": null, - "location": "tmp766780", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp766780:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp766780 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp290190", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp290190:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp290190 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -29,7 +26,7 @@ "status": "SUCCEEDED" } ], - "duration": 1.055874, + "duration": 0.832109, "exception": null, "id": "d1", "output": "", @@ -51,7 +48,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.389933, + "duration": 0.325257, "exception": null, "id": "ex9", "output": "", @@ -64,10 +61,10 @@ "tasks": [ { "algorithm": "KISAO_0000496", - "duration": 23.834837, + "duration": 20.850944, "exception": null, "id": "sim1_net1", - "output": "2024-10-31 05:46:31.718 - amici.swig_wrappers - ERROR - [OTHER] AMICI simulation failed: Reached maximum number of steps 10000 before reaching tout at t=99.66.\r\n2024-10-31 05:46:31.718 - amici.swig_wrappers - DEBUG - [BACKTRACE] The previous error occurred at:\r\n2 0x7ffff3462a8b /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0xb5a8b) [0x7ffff3462a8b]\r\n3 0x7ffff3556262 amici::Solver::run(double) const + 34\r\n4 0x7ffff358e5d0 amici::ForwardProblem::workForwardProblem() + 1728\r\n5 0x7ffff3542763 amici::runAmiciSimulation(amici::Solver&, amici::ExpData const*, amici::Model&, bool) + 435\r\n6 0x7ffff34ec280 /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0x13f\r\n", + "output": "2024-10-31 06:29:07.615 - amici.swig_wrappers - ERROR - [OTHER] AMICI simulation failed: Reached maximum number of steps 10000 before reaching tout at t=99.66.\r\n2024-10-31 06:29:07.615 - amici.swig_wrappers - DEBUG - [BACKTRACE] The previous error occurred at:\r\n2 0x7ffff3462a8b /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0xb5a8b) [0x7ffff3462a8b]\r\n3 0x7ffff3556262 amici::Solver::run(double) const + 34\r\n4 0x7ffff358e5d0 amici::ForwardProblem::workForwardProblem() + 1728\r\n5 0x7ffff3542763 amici::runAmiciSimulation(amici::Solver&, amici::ExpData const*, amici::Model&, bool) + 435\r\n6 0x7ffff34ec280 /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0x13f\r\n", "simulatorDetails": [ { "key": "solver", @@ -94,14 +91,11 @@ }, "brian2": { "response": 201, - "view": "https://api.biosimulations.org/runs/672351dbb678b3883bb56692", - "download": "https://api.biosimulations.org/results/672351dbb678b3883bb56692/download", - "logs": "https://api.biosimulations.org/logs/672351dbb678b3883bb56692?includeOutput=true", - "status": "FAIL", - "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError", + "view": "https://api.biosimulations.org/runs/67235bd80d09353e8f0f1ebf", + "download": "https://api.biosimulations.org/results/67235bd80d09353e8f0f1ebf/download", + "logs": "https://api.biosimulations.org/logs/67235bd80d09353e8f0f1ebf?includeOutput=true", "log": { - "duration": 0.050442, + "duration": 0.054302, "exception": { "message": "No module named 'libsbml'", "type": "ModuleNotFoundError" @@ -114,14 +108,11 @@ }, "bionetgen": { "response": 201, - "view": "https://api.biosimulations.org/runs/672351dd5a60072d20f4173d", - "download": "https://api.biosimulations.org/results/672351dd5a60072d20f4173d/download", - "logs": "https://api.biosimulations.org/logs/672351dd5a60072d20f4173d?includeOutput=true", - "status": "FAIL", - "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).", - "exception_type": "CombineArchiveExecutionError", + "view": "https://api.biosimulations.org/runs/67235bdab678b3883bb57253", + "download": "https://api.biosimulations.org/results/67235bdab678b3883bb57253/download", + "logs": "https://api.biosimulations.org/logs/67235bdab678b3883bb57253?includeOutput=true", "log": { - "duration": 0.716111, + "duration": 0.657178, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).", "type": "CombineArchiveExecutionError" @@ -129,13 +120,13 @@ "output": "", "sedDocuments": [ { - "duration": 0.395244, + "duration": 0.376992, "exception": { "message": "The SED document did not execute successfully:\n\n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).", "type": "SedmlExecutionError" }, - "location": "tmp222289", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp222289:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp222289 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp298526", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp298526:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp298526 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -148,7 +139,7 @@ "status": "SKIPPED" } ], - "duration": 0.206265, + "duration": 0.198092, "exception": null, "id": "d1", "output": "", @@ -170,7 +161,7 @@ "status": "SKIPPED" } ], - "duration": 0.06535, + "duration": 0.060861, "exception": null, "id": "ex9", "output": "", @@ -183,7 +174,7 @@ "tasks": [ { "algorithm": null, - "duration": 0.028468, + "duration": 0.028534, "exception": { "message": "Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).", "type": "ValueError" @@ -203,14 +194,11 @@ }, "boolnet": { "response": 201, - "view": "https://api.biosimulations.org/runs/672351df0d09353e8f0f132f", - "download": "https://api.biosimulations.org/results/672351df0d09353e8f0f132f/download", - "logs": "https://api.biosimulations.org/logs/672351df0d09353e8f0f132f?includeOutput=true", - "status": "FAIL", - "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).", - "exception_type": "CombineArchiveExecutionError", + "view": "https://api.biosimulations.org/runs/67235bdc0d09353e8f0f1ec2", + "download": "https://api.biosimulations.org/results/67235bdc0d09353e8f0f1ec2/download", + "logs": "https://api.biosimulations.org/logs/67235bdc0d09353e8f0f1ec2?includeOutput=true", "log": { - "duration": 0.5974, + "duration": 0.635009, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).", "type": "CombineArchiveExecutionError" @@ -218,13 +206,13 @@ "output": "", "sedDocuments": [ { - "duration": 0.355335, + "duration": 0.370856, "exception": { "message": "The SED document did not execute successfully:\n\n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).", "type": "SedmlExecutionError" }, - "location": "tmp495775", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp495775:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp495775 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp847144", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp847144:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp847144 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -237,7 +225,7 @@ "status": "SKIPPED" } ], - "duration": 0.170035, + "duration": 0.177922, "exception": null, "id": "d1", "output": "", @@ -259,7 +247,7 @@ "status": "SKIPPED" } ], - "duration": 0.06308, + "duration": 0.063579, "exception": null, "id": "ex9", "output": "", @@ -272,7 +260,7 @@ "tasks": [ { "algorithm": null, - "duration": 0.03038, + "duration": 0.03315, "exception": { "message": "Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).", "type": "ValueError" @@ -292,14 +280,11 @@ }, "cbmpy": { "response": 201, - "view": "https://api.biosimulations.org/runs/672351e05a60072d20f41740", - "download": "https://api.biosimulations.org/results/672351e05a60072d20f41740/download", - "logs": "https://api.biosimulations.org/logs/672351e05a60072d20f41740?includeOutput=true", - "status": "FAIL", - "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", - "exception_type": "CombineArchiveExecutionError", + "view": "https://api.biosimulations.org/runs/67235bdd0d09353e8f0f1ec8", + "download": "https://api.biosimulations.org/results/67235bdd0d09353e8f0f1ec8/download", + "logs": "https://api.biosimulations.org/logs/67235bdd0d09353e8f0f1ec8?includeOutput=true", "log": { - "duration": 0.641891, + "duration": 0.799338, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", "type": "CombineArchiveExecutionError" @@ -307,13 +292,13 @@ "output": "\r\nINFO: No xlwt module available, Excel spreadsheet creation disabled\r\n\r\n\r\n\r\nNo module named 'cplex'\r\n\r\n\r\n\r\nCPLEX not available\r\n\r\n*****\r\nUsing GLPK\r\n*****\r\n\r\n\r\nINFO: No xlrd module available, Excel spreadsheet reading disabled\r\n\r\nCBMPy environment\r\n******************\r\nRevision: r689\r\n\r\n\r\n***********************************************************************\r\n* Welcome to CBMPy (0.7.25) - PySCeS Constraint Based Modelling *\r\n* http://cbmpy.sourceforge.net *\r\n* Copyright(C) Brett G. Olivier 2014 - 2019 *\r\n* Dept. of Systems Bioinformatics *\r\n* Vrije Universiteit Amsterdam, Amsterdam, The Netherlands *\r\n* CBMPy is developed as part of the BeBasic MetaToolKit Project *\r\n* Distributed under the GNU GPL v 3.0 licence, see *\r\n* LICENCE (supplied with this release) for details *\r\n***********************************************************************\r\n\r\n", "sedDocuments": [ { - "duration": 0.322685, + "duration": 0.352543, "exception": { "message": "The SED document did not execute successfully:\n\n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", "type": "SedmlExecutionError" }, - "location": "tmp16554", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp16554:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp16554 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp306807", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp306807:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp306807 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -326,7 +311,7 @@ "status": "SKIPPED" } ], - "duration": 0.154424, + "duration": 0.171323, "exception": null, "id": "d1", "output": "", @@ -348,7 +333,7 @@ "status": "SKIPPED" } ], - "duration": 0.059233, + "duration": 0.061586, "exception": null, "id": "ex9", "output": "", @@ -361,7 +346,7 @@ "tasks": [ { "algorithm": null, - "duration": 0.026407, + "duration": 0.030277, "exception": { "message": "UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", "type": "ValueError" @@ -381,14 +366,11 @@ }, "cobrapy": { "response": 201, - "view": "https://api.biosimulations.org/runs/672351e2b678b3883bb5669b", - "download": "https://api.biosimulations.org/results/672351e2b678b3883bb5669b/download", - "logs": "https://api.biosimulations.org/logs/672351e2b678b3883bb5669b?includeOutput=true", - "status": "FAIL", - "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", - "exception_type": "CombineArchiveExecutionError", + "view": "https://api.biosimulations.org/runs/67235bdfb678b3883bb57258", + "download": "https://api.biosimulations.org/results/67235bdfb678b3883bb57258/download", + "logs": "https://api.biosimulations.org/logs/67235bdfb678b3883bb57258?includeOutput=true", "log": { - "duration": 0.548813, + "duration": 0.558301, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", "type": "CombineArchiveExecutionError" @@ -396,13 +378,13 @@ "output": "", "sedDocuments": [ { - "duration": 0.330261, + "duration": 0.313628, "exception": { "message": "The SED document did not execute successfully:\n\n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", "type": "SedmlExecutionError" }, - "location": "tmp620647", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp620647:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp620647 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp88202", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp88202:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp88202 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -415,7 +397,7 @@ "status": "SKIPPED" } ], - "duration": 0.15432, + "duration": 0.144807, "exception": null, "id": "d1", "output": "", @@ -437,7 +419,7 @@ "status": "SKIPPED" } ], - "duration": 0.063828, + "duration": 0.0628, "exception": null, "id": "ex9", "output": "", @@ -450,7 +432,7 @@ "tasks": [ { "algorithm": null, - "duration": 0.026855, + "duration": 0.027209, "exception": { "message": "UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", "type": "ValueError" @@ -470,22 +452,19 @@ }, "copasi": { "response": 201, - "view": "https://api.biosimulations.org/runs/672351e50d09353e8f0f1335", - "download": "https://api.biosimulations.org/results/672351e50d09353e8f0f1335/download", - "logs": "https://api.biosimulations.org/logs/672351e50d09353e8f0f1335?includeOutput=true", - "status": "pass", - "error_message": "", - "exception_type": "", + "view": "https://api.biosimulations.org/runs/67235be25a60072d20f42258", + "download": "https://api.biosimulations.org/results/67235be25a60072d20f42258/download", + "logs": "https://api.biosimulations.org/logs/67235be25a60072d20f42258?includeOutput=true", "log": { - "duration": 1.806734, + "duration": 1.79918, "exception": null, "output": "", "sedDocuments": [ { - "duration": 1.551964, + "duration": 1.545066, "exception": null, - "location": "tmp221293", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp221293:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp221293 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp635551", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp635551:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp635551 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -498,7 +477,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.951902, + "duration": 0.962088, "exception": null, "id": "d1", "output": "", @@ -520,7 +499,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.327461, + "duration": 0.324752, "exception": null, "id": "ex9", "output": "", @@ -533,7 +512,7 @@ "tasks": [ { "algorithm": "KISAO_0000560", - "duration": 0.186168, + "duration": 0.187069, "exception": null, "id": "sim1_net1", "output": "", @@ -559,22 +538,19 @@ }, "gillespy2": { "response": 201, - "view": "https://api.biosimulations.org/runs/672351e7b678b3883bb5669e", - "download": "https://api.biosimulations.org/results/672351e7b678b3883bb5669e/download", - "logs": "https://api.biosimulations.org/logs/672351e7b678b3883bb5669e?includeOutput=true", - "status": "pass", - "error_message": "", - "exception_type": "", + "view": "https://api.biosimulations.org/runs/67235be3b678b3883bb57260", + "download": "https://api.biosimulations.org/results/67235be3b678b3883bb57260/download", + "logs": "https://api.biosimulations.org/logs/67235be3b678b3883bb57260?includeOutput=true", "log": { - "duration": 1.607168, + "duration": 1.81448, "exception": null, "output": "", "sedDocuments": [ { - "duration": 1.383091, + "duration": 1.5565, "exception": null, - "location": "tmp708952", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp708952:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp708952 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp328214", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp328214:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp328214 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -587,7 +563,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.772883, + "duration": 0.888546, "exception": null, "id": "d1", "output": "", @@ -609,7 +585,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.373542, + "duration": 0.398553, "exception": null, "id": "ex9", "output": "", @@ -622,7 +598,7 @@ "tasks": [ { "algorithm": "KISAO_0000088", - "duration": 0.1583, + "duration": 0.178899, "exception": null, "id": "sim1_net1", "output": "", @@ -650,14 +626,11 @@ }, "ginsim": { "response": 201, - "view": "https://api.biosimulations.org/runs/672351e9b678b3883bb566a3", - "download": "https://api.biosimulations.org/results/672351e9b678b3883bb566a3/download", - "logs": "https://api.biosimulations.org/logs/672351e9b678b3883bb566a3?includeOutput=true", - "status": "FAIL", - "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000", - "exception_type": "CombineArchiveExecutionError", + "view": "https://api.biosimulations.org/runs/67235be55a60072d20f4225d", + "download": "https://api.biosimulations.org/results/67235be55a60072d20f4225d/download", + "logs": "https://api.biosimulations.org/logs/67235be55a60072d20f4225d?includeOutput=true", "log": { - "duration": 0.573783, + "duration": 0.517596, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000", "type": "CombineArchiveExecutionError" @@ -665,13 +638,13 @@ "output": "", "sedDocuments": [ { - "duration": 0.346628, + "duration": 0.302227, "exception": { "message": "The SED document did not execute successfully:\n\n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000", "type": "SedmlExecutionError" }, - "location": "tmp662258", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp662258:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp662258 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp626357", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp626357:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp626357 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -684,7 +657,7 @@ "status": "SKIPPED" } ], - "duration": 0.168431, + "duration": 0.140789, "exception": null, "id": "d1", "output": "", @@ -706,7 +679,7 @@ "status": "SKIPPED" } ], - "duration": 0.06343, + "duration": 0.056111, "exception": null, "id": "ex9", "output": "", @@ -719,7 +692,7 @@ "tasks": [ { "algorithm": null, - "duration": 0.028472, + "duration": 0.026936, "exception": { "message": "Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000", "type": "ValueError" @@ -739,22 +712,19 @@ }, "libsbmlsim": { "response": 201, - "view": "https://api.biosimulations.org/runs/672351eab678b3883bb566aa", - "download": "https://api.biosimulations.org/results/672351eab678b3883bb566aa/download", - "logs": "https://api.biosimulations.org/logs/672351eab678b3883bb566aa?includeOutput=true", - "status": "pass", - "error_message": "", - "exception_type": "", + "view": "https://api.biosimulations.org/runs/67235be70d09353e8f0f1ed1", + "download": "https://api.biosimulations.org/results/67235be70d09353e8f0f1ed1/download", + "logs": "https://api.biosimulations.org/logs/67235be70d09353e8f0f1ed1?includeOutput=true", "log": { - "duration": 9.600116, + "duration": 7.623497, "exception": null, "output": "", "sedDocuments": [ { - "duration": 9.282347, + "duration": 7.411016, "exception": null, - "location": "tmp575074", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp575074:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp575074 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp113634", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp113634:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp113634 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -767,7 +737,7 @@ "status": "SUCCEEDED" } ], - "duration": 1.103914, + "duration": 0.893917, "exception": null, "id": "d1", "output": "", @@ -789,7 +759,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.478817, + "duration": 0.39097, "exception": null, "id": "ex9", "output": "", @@ -802,7 +772,7 @@ "tasks": [ { "algorithm": "KISAO_0000086", - "duration": 7.586283, + "duration": 6.043146, "exception": null, "id": "sim1_net1", "output": "", @@ -835,22 +805,19 @@ }, "masspy": { "response": 201, - "view": "https://api.biosimulations.org/runs/672351ecb678b3883bb566ae", - "download": "https://api.biosimulations.org/results/672351ecb678b3883bb566ae/download", - "logs": "https://api.biosimulations.org/logs/672351ecb678b3883bb566ae?includeOutput=true", - "status": "pass", - "error_message": "", - "exception_type": "", + "view": "https://api.biosimulations.org/runs/67235be90d09353e8f0f1ed5", + "download": "https://api.biosimulations.org/results/67235be90d09353e8f0f1ed5/download", + "logs": "https://api.biosimulations.org/logs/67235be90d09353e8f0f1ed5?includeOutput=true", "log": { - "duration": 2.628961, + "duration": 2.454737, "exception": null, "output": "", "sedDocuments": [ { - "duration": 2.054521, + "duration": 1.975256, "exception": null, - "location": "tmp372120", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp372120:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp372120 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp384198", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp384198:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp384198 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -863,7 +830,7 @@ "status": "SUCCEEDED" } ], - "duration": 1.251817, + "duration": 1.20074, "exception": null, "id": "d1", "output": "", @@ -885,7 +852,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.47601, + "duration": 0.458937, "exception": null, "id": "ex9", "output": "", @@ -898,7 +865,7 @@ "tasks": [ { "algorithm": "KISAO_0000019", - "duration": 0.217567, + "duration": 0.218241, "exception": null, "id": "sim1_net1", "output": "\u001b[93mWARNING:\u001b[0m \u001b[93mModel does not contain SBML fbc package\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mModel does not contain SBML groups package\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo metabolites in model.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo reactions in model.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo compartments found in model. Therefore creating compartment 'compartment' for entire model.\u001b[0m\r\n", @@ -968,14 +935,11 @@ }, "netpyne": { "response": 201, - "view": "https://api.biosimulations.org/runs/672351ee5a60072d20f41765", - "download": "https://api.biosimulations.org/results/672351ee5a60072d20f41765/download", - "logs": "https://api.biosimulations.org/logs/672351ee5a60072d20f41765?includeOutput=true", - "status": "FAIL", - "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError", + "view": "https://api.biosimulations.org/runs/67235beab678b3883bb57269", + "download": "https://api.biosimulations.org/results/67235beab678b3883bb57269/download", + "logs": "https://api.biosimulations.org/logs/67235beab678b3883bb57269?includeOutput=true", "log": { - "duration": 0.042094, + "duration": 0.049734, "exception": { "message": "No module named 'libsbml'", "type": "ModuleNotFoundError" @@ -988,14 +952,11 @@ }, "neuron": { "response": 201, - "view": "https://api.biosimulations.org/runs/672351efb678b3883bb566bc", - "download": "https://api.biosimulations.org/results/672351efb678b3883bb566bc/download", - "logs": "https://api.biosimulations.org/logs/672351efb678b3883bb566bc?includeOutput=true", - "status": "FAIL", - "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError", + "view": "https://api.biosimulations.org/runs/67235becb678b3883bb5726c", + "download": "https://api.biosimulations.org/results/67235becb678b3883bb5726c/download", + "logs": "https://api.biosimulations.org/logs/67235becb678b3883bb5726c?includeOutput=true", "log": { - "duration": 0.039363, + "duration": 0.072944, "exception": { "message": "No module named 'libsbml'", "type": "ModuleNotFoundError" @@ -1008,14 +969,11 @@ }, "opencor": { "response": 201, - "view": "https://api.biosimulations.org/runs/672351f10d09353e8f0f135e", - "download": "https://api.biosimulations.org/results/672351f10d09353e8f0f135e/download", - "logs": "https://api.biosimulations.org/logs/672351f10d09353e8f0f135e?includeOutput=true", - "status": "FAIL", - "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError", + "view": "https://api.biosimulations.org/runs/67235bee5a60072d20f42269", + "download": "https://api.biosimulations.org/results/67235bee5a60072d20f42269/download", + "logs": "https://api.biosimulations.org/logs/67235bee5a60072d20f42269?includeOutput=true", "log": { - "duration": 0.019974, + "duration": 0.04185, "exception": { "message": "No module named 'libsbml'", "type": "ModuleNotFoundError" @@ -1028,14 +986,11 @@ }, "pyneuroml": { "response": 201, - "view": "https://api.biosimulations.org/runs/672351f35a60072d20f41786", - "download": "https://api.biosimulations.org/results/672351f35a60072d20f41786/download", - "logs": "https://api.biosimulations.org/logs/672351f35a60072d20f41786?includeOutput=true", - "status": "FAIL", - "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError", + "view": "https://api.biosimulations.org/runs/67235bef5a60072d20f4226c", + "download": "https://api.biosimulations.org/results/67235bef5a60072d20f4226c/download", + "logs": "https://api.biosimulations.org/logs/67235bef5a60072d20f4226c?includeOutput=true", "log": { - "duration": 0.04343, + "duration": 0.049496, "exception": { "message": "No module named 'libsbml'", "type": "ModuleNotFoundError" @@ -1048,14 +1003,11 @@ }, "pysces": { "response": 201, - "view": "https://api.biosimulations.org/runs/672351f55a60072d20f4179e", - "download": "https://api.biosimulations.org/results/672351f55a60072d20f4179e/download", - "logs": "https://api.biosimulations.org/logs/672351f55a60072d20f4179e?includeOutput=true", - "status": "FAIL", - "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", - "exception_type": "CombineArchiveExecutionError", + "view": "https://api.biosimulations.org/runs/67235bf15a60072d20f42274", + "download": "https://api.biosimulations.org/results/67235bf15a60072d20f42274/download", + "logs": "https://api.biosimulations.org/logs/67235bf15a60072d20f42274?includeOutput=true", "log": { - "duration": 1.888328, + "duration": 1.962186, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", "type": "CombineArchiveExecutionError" @@ -1063,13 +1015,13 @@ "output": "libtk8.6.so: cannot open shared object file: No such file or directory\r\n\r\nPySCeS defaults to matplotlib's TKagg backend if not specified in the user configuration file, set \"matplotlib_backend = \" \r\nMatplotlib interface loaded (pysces.plt.m)\r\nPitcon routines available\r\nNLEQ2 routines available\r\nSBML support available\r\nYou are using NumPy (2.1.2) with SciPy (1.14.1)\r\nAssimulo CVode available\r\nRateChar is available\r\nParallel scanner is available\r\n\r\nPySCeS environment\r\n******************\r\npysces.model_dir = /home/FCAM/crbmapi/Pysces/psc\r\npysces.output_dir = /home/FCAM/crbmapi/Pysces\r\n\r\n\r\n***********************************************************************\r\n* Welcome to PySCeS (1.2.2) - Python Simulator for Cellular Systems *\r\n* http://pysces.sourceforge.net *\r\n* Copyright(C) B.G. Olivier, J.M. Rohwer, J.-H.S. Hofmeyr, 2004-2024 *\r\n* Triple-J Group for Molecular Cell Physiology *\r\n* Stellenbosch University, ZA and VU University Amsterdam, NL *\r\n* PySCeS is distributed under the PySCeS (BSD style) licence, see *\r\n* LICENCE.txt (supplied with this release) for details *\r\n* Please cite PySCeS with: doi:10.1093/bioinformatics/bti046 *\r\n***********************************************************************\r\n", "sedDocuments": [ { - "duration": 1.627419, + "duration": 1.700572, "exception": { "message": "The SED document did not execute successfully:\n\n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", "type": "SedmlExecutionError" }, - "location": "tmp893693", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp893693:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp893693 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ...Check SBML support is at action level 2\r\nSBML file is L2V2\r\n\r\n*******************************************************************\r\nIssues encountered in SBML translation (model processed anyway)\r\nSBML source: /tmp/tmpgne9nqno.xml\r\n*******************************************************************\r\n\r\nNo free species!? ... help I'm confused! \r\n\r\n*******************************************************************\r\n\r\nWriting file: /tmp/tmp32uxx02_.psc\r\n\r\nSBML2PSC\r\nin : /tmp/tmpgne9nqno.xml\r\nout: /tmp/tmp32uxx02_.psc\r\nUsing model directory: /home/FCAM/crbmapi/Pysces/psc\r\n/tmp/tmp32uxx02_.psc loading ..... \r\nParsing file: /tmp/tmp32uxx02_.psc\r\nInfo: No reagents have been fixed\r\nInfo: \"I\" has been initialised but does not occur in a rate equation\r\nInfo: \"SEC\" has been initialised but does not occur in a rate equation\r\nInfo: \"V\" has been initialised but does not occur in a rate equation\r\nInfo: \"W\" has been initialised but does not occur in a rate equation\r\n \r\n \u001b[31mfailed - \r\nUnable to generate Stoichiometric Matrix! model has:\r\n0 reactions\r\n0 species\r\nwhat did you have in mind?\r\n\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp883479", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp883479:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp883479 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ...Check SBML support is at action level 2\r\nSBML file is L2V2\r\n\r\n*******************************************************************\r\nIssues encountered in SBML translation (model processed anyway)\r\nSBML source: /tmp/tmpp61rmgxb.xml\r\n*******************************************************************\r\n\r\nNo free species!? ... help I'm confused! \r\n\r\n*******************************************************************\r\n\r\nWriting file: /tmp/tmpazgjred0.psc\r\n\r\nSBML2PSC\r\nin : /tmp/tmpp61rmgxb.xml\r\nout: /tmp/tmpazgjred0.psc\r\nUsing model directory: /home/FCAM/crbmapi/Pysces/psc\r\n/tmp/tmpazgjred0.psc loading ..... \r\nParsing file: /tmp/tmpazgjred0.psc\r\nInfo: No reagents have been fixed\r\nInfo: \"I\" has been initialised but does not occur in a rate equation\r\nInfo: \"SEC\" has been initialised but does not occur in a rate equation\r\nInfo: \"V\" has been initialised but does not occur in a rate equation\r\nInfo: \"W\" has been initialised but does not occur in a rate equation\r\n \r\n \u001b[31mfailed - \r\nUnable to generate Stoichiometric Matrix! model has:\r\n0 reactions\r\n0 species\r\nwhat did you have in mind?\r\n\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -1082,7 +1034,7 @@ "status": "SKIPPED" } ], - "duration": 0.383506, + "duration": 0.450774, "exception": null, "id": "d1", "output": "", @@ -1104,7 +1056,7 @@ "status": "SKIPPED" } ], - "duration": 0.059887, + "duration": 0.065278, "exception": null, "id": "ex9", "output": "", @@ -1117,7 +1069,7 @@ "tasks": [ { "algorithm": null, - "duration": 1.096363, + "duration": 1.095578, "exception": { "message": "\nUnable to generate Stoichiometric Matrix! model has:\n0 reactions\n0 species\nwhat did you have in mind?\n", "type": "AssertionError" @@ -1137,14 +1089,11 @@ }, "rbapy": { "response": 201, - "view": "https://api.biosimulations.org/runs/672351f6b678b3883bb566e2", - "download": "https://api.biosimulations.org/results/672351f6b678b3883bb566e2/download", - "logs": "https://api.biosimulations.org/logs/672351f6b678b3883bb566e2?includeOutput=true", - "status": "FAIL", - "error_message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).", - "exception_type": "CombineArchiveExecutionError", + "view": "https://api.biosimulations.org/runs/67235bf3b678b3883bb57287", + "download": "https://api.biosimulations.org/results/67235bf3b678b3883bb57287/download", + "logs": "https://api.biosimulations.org/logs/67235bf3b678b3883bb57287?includeOutput=true", "log": { - "duration": 0.559703, + "duration": 0.56522, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).", "type": "CombineArchiveExecutionError" @@ -1152,13 +1101,13 @@ "output": "", "sedDocuments": [ { - "duration": 0.327748, + "duration": 0.316491, "exception": { "message": "The SED document did not execute successfully:\n\n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).", "type": "SedmlExecutionError" }, - "location": "tmp321123", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp321123:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp321123 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp255034", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp255034:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp255034 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -1171,7 +1120,7 @@ "status": "SKIPPED" } ], - "duration": 0.152897, + "duration": 0.147008, "exception": null, "id": "d1", "output": "", @@ -1193,7 +1142,7 @@ "status": "SKIPPED" } ], - "duration": 0.063464, + "duration": 0.059075, "exception": null, "id": "ex9", "output": "", @@ -1206,7 +1155,7 @@ "tasks": [ { "algorithm": null, - "duration": 0.026525, + "duration": 0.026538, "exception": { "message": "Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).", "type": "ValueError" @@ -1226,14 +1175,11 @@ }, "smoldyn": { "response": 201, - "view": "https://api.biosimulations.org/runs/672351f8b678b3883bb566ef", - "download": "https://api.biosimulations.org/results/672351f8b678b3883bb566ef/download", - "logs": "https://api.biosimulations.org/logs/672351f8b678b3883bb566ef?includeOutput=true", - "status": "FAIL", - "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError", + "view": "https://api.biosimulations.org/runs/67235bf45a60072d20f42295", + "download": "https://api.biosimulations.org/results/67235bf45a60072d20f42295/download", + "logs": "https://api.biosimulations.org/logs/67235bf45a60072d20f42295?includeOutput=true", "log": { - "duration": 0.057217, + "duration": 0.072518, "exception": { "message": "No module named 'libsbml'", "type": "ModuleNotFoundError" @@ -1246,22 +1192,19 @@ }, "tellurium": { "response": 201, - "view": "https://api.biosimulations.org/runs/672351fa5a60072d20f417af", - "download": "https://api.biosimulations.org/results/672351fa5a60072d20f417af/download", - "logs": "https://api.biosimulations.org/logs/672351fa5a60072d20f417af?includeOutput=true", - "status": "pass", - "error_message": "", - "exception_type": "", + "view": "https://api.biosimulations.org/runs/67235bf65a60072d20f422a2", + "download": "https://api.biosimulations.org/results/67235bf65a60072d20f422a2/download", + "logs": "https://api.biosimulations.org/logs/67235bf65a60072d20f422a2?includeOutput=true", "log": { - "duration": 1.951186, + "duration": 2.3631, "exception": null, "output": "", "sedDocuments": [ { - "duration": 1.553973, + "duration": 1.873194, "exception": null, - "location": "tmp75673", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp75673:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp75673 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp219922", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp219922:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp219922 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -1274,7 +1217,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.940259, + "duration": 1.142981, "exception": null, "id": "d1", "output": "", @@ -1296,7 +1239,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.340626, + "duration": 0.408, "exception": null, "id": "ex9", "output": "", @@ -1309,7 +1252,7 @@ "tasks": [ { "algorithm": "KISAO_0000019", - "duration": 0.180817, + "duration": 0.217414, "exception": null, "id": "sim1_net1", "output": "", @@ -1383,12 +1326,9 @@ }, "vcell": { "response": 201, - "view": "https://api.biosimulations.org/runs/672351fdb678b3883bb56709", - "download": "https://api.biosimulations.org/results/672351fdb678b3883bb56709/download", - "logs": "https://api.biosimulations.org/logs/672351fdb678b3883bb56709?includeOutput=true", - "status": null, - "error_message": "", - "exception_type": "", + "view": "https://api.biosimulations.org/runs/67235bfa0d09353e8f0f1f36", + "download": "https://api.biosimulations.org/results/67235bfa0d09353e8f0f1f36/download", + "logs": "https://api.biosimulations.org/logs/67235bfa0d09353e8f0f1f36?includeOutput=true", "log": { "duration": null, "exception": null, @@ -1400,14 +1340,11 @@ }, "xpp": { "response": 201, - "view": "https://api.biosimulations.org/runs/672351ff0d09353e8f0f13a8", - "download": "https://api.biosimulations.org/results/672351ff0d09353e8f0f13a8/download", - "logs": "https://api.biosimulations.org/logs/672351ff0d09353e8f0f13a8?includeOutput=true", - "status": "FAIL", - "error_message": "No module named 'libsbml'", - "exception_type": "ModuleNotFoundError", + "view": "https://api.biosimulations.org/runs/67235bfdb678b3883bb572d6", + "download": "https://api.biosimulations.org/results/67235bfdb678b3883bb572d6/download", + "logs": "https://api.biosimulations.org/logs/67235bfdb678b3883bb572d6?includeOutput=true", "log": { - "duration": 0.072485, + "duration": 0.094019, "exception": { "message": "No module named 'libsbml'", "type": "ModuleNotFoundError" diff --git a/utils/__init__.py b/utils/__init__.py index 67c092f7..7a2cc198 100644 --- a/utils/__init__.py +++ b/utils/__init__.py @@ -557,29 +557,8 @@ def run_biosimulators_docker(engine,sedml_filepath,sbml_filepath,output_dir='out #put the sedml and sbml into a combine archive omex_filepath = create_omex(sedml_filepath,sbml_filepath) log_yml_path = os.path.join(output_dir,"log.yml") - - status = "" - error_message = "" - exception_type = "" log_yml_dict = {} - - - try: - biosimulators_core(engine,omex_filepath,output_dir=output_dir) - except Exception as e: - #capture the error as a string which won't break markdown tables - # error_str = safe_md_string(e) - error_message = str(e) - status = "FAIL" - error_message = "did not run" - - if os.path.exists(log_yml_path): - status, error_message, exception_type = process_log_yml(log_yml_path) - with open(log_yml_path) as f: - log_yml_dict = yaml.safe_load(f) - - results_dict = {"status": status, "error_message": error_message, "exception_type": exception_type,"log":log_yml_dict} - return results_dict + exception_message = "" #ensure outputs are owned by the user if 'getuid' in dir(os) and chown_outputs: @@ -587,13 +566,16 @@ def run_biosimulators_docker(engine,sedml_filepath,sbml_filepath,output_dir='out gid = os.getgid() os.system(f'sudo chown -R {uid}:{gid} {output_dir}') + try: + biosimulators_core(engine,omex_filepath,output_dir=output_dir) + except Exception as e: + exception_message = str(e) + if os.path.exists(log_yml_path): - status, error_message, exception_type = process_log_yml(log_yml_path) with open(log_yml_path) as f: log_yml_dict = yaml.safe_load(f) - - results_dict = {"status": status, "error_message": error_message, "exception_type": exception_type,"log":log_yml_dict} - return results_dict + + return {"exception_message":exception_message,"log_yml":log_yml_dict} def biosimulators_core(engine,omex_filepath,output_dir=None): ''' @@ -1049,6 +1031,10 @@ def create_results_table(results, sbml_filepath, sedml_filepath, output_dir): warning_html = "⚠ WARNING" xfail_html = "⚠ XFAIL" + results2 = {} + for e in results.keys(): + results2[e] = process_log_yml_dict(results[e]["log_yml"]) + links = ['view', 'download', 'logs'] for e in results.keys(): if any([l in results[e].keys() for l in links]): @@ -1145,6 +1131,29 @@ def process_log_yml(log_yml_path): status = None return status, error_message, exception_type +def process_log_yml_dict(log_yml_dict): + status = "" + error_message = "" + exception_type = "" + + log_yml_str = str(log_yml_dict) + if log_yml_dict['status'] == 'SUCCEEDED': + status = 'pass' + # to deal with cases like amici where the d1 plot max x is half the expected value + pattern_max_number_of_steps = "simulation failed: Reached maximum number of steps" + pattern_match = re.search(pattern_max_number_of_steps, log_yml_str) + if pattern_match: + status = 'FAIL' + error_message = 'Reached maximum number of steps' + elif log_yml_dict['status'] == 'FAILED': + status = 'FAIL' + exception = log_yml_dict['exception'] + error_message = exception['message'] + exception_type = exception['type'] + else: + status = None + return {"status":status, "error_message":error_message,"exception_type": exception_type} + def run_biosimulators_remotely(engine_keys, sedml_file_name, @@ -1177,11 +1186,11 @@ def run_biosimulators_remotely(engine_keys, log_yml_path = find_file_in_dir('log.yml', extract_dir)[0] with open(log_yml_path) as f: log_yml_dict = yaml.safe_load(f) - status, error_message, exception_type = process_log_yml(log_yml_path) - results_remote[e]["status"] = status - results_remote[e]["error_message"] = error_message - results_remote[e]["exception_type"] = exception_type - results_remote[e]["log"] = log_yml_dict + # status, error_message, exception_type = process_log_yml(log_yml_path) + # results_remote[e]["status"] = status + # results_remote[e]["error_message"] = error_message + # results_remote[e]["exception_type"] = exception_type + results_remote[e]["log_yml"] = log_yml_dict file_paths = find_files(remote_output_dir, '.pdf') move_d1_files(file_paths, d1_plots_remote_dir) From 3ea5e09190ec4e4bc7494a5ba3b38a9c5cc926fc Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Thu, 31 Oct 2024 11:11:05 +0000 Subject: [PATCH 16/24] change log to log_yml for clarity --- SBML/tests/results_local.json | 232 ++++++++++----------- SBML/tests/results_remote.json | 366 ++++++++++++++++----------------- 2 files changed, 299 insertions(+), 299 deletions(-) diff --git a/SBML/tests/results_local.json b/SBML/tests/results_local.json index f2394fa0..65642146 100644 --- a/SBML/tests/results_local.json +++ b/SBML/tests/results_local.json @@ -2,15 +2,15 @@ "amici": { "exception_message": "", "log_yml": { - "duration": 14.477499, + "duration": 14.132747, "exception": null, "output": "", "sedDocuments": [ { - "duration": 14.07195, + "duration": 13.817007, "exception": null, - "location": "tmp447751", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp447751:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp447751 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp786909", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp786909:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp786909 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -23,7 +23,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.738736, + "duration": 0.812526, "exception": null, "id": "d1", "output": "", @@ -45,7 +45,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.334205, + "duration": 0.241448, "exception": null, "id": "ex9", "output": "", @@ -58,10 +58,10 @@ "tasks": [ { "algorithm": "KISAO_0000496", - "duration": 12.901083, + "duration": 12.641941, "exception": null, "id": "sim1_net1", - "output": "2024-10-31 10:35:24.638 - amici.swig_wrappers - ERROR - [OTHER] AMICI simulation failed: Reached maximum number of steps 10000 before reaching tout at t=99.66.\r\n2024-10-31 10:35:24.639 - amici.swig_wrappers - DEBUG - [BACKTRACE] The previous error occurred at:\r\n2 0x7fa569757a8b /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0xb5a8b) [0x7fa569757a8b]\r\n3 0x7fa56984b262 amici::Solver::run(double) const + 34\r\n4 0x7fa5698835d0 amici::ForwardProblem::workForwardProblem() + 1728\r\n5 0x7fa569837763 amici::runAmiciSimulation(amici::Solver&, amici::ExpData const*, amici::Model&, bool) + 435\r\n6 0x7fa5697e1280 /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0x13f\r\n", + "output": "2024-10-31 11:02:12.685 - amici.swig_wrappers - ERROR - [OTHER] AMICI simulation failed: Reached maximum number of steps 10000 before reaching tout at t=99.66.\r\n2024-10-31 11:02:12.685 - amici.swig_wrappers - DEBUG - [BACKTRACE] The previous error occurred at:\r\n2 0x7fa04db5fa8b /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0xb5a8b) [0x7fa04db5fa8b]\r\n3 0x7fa04dc53262 amici::Solver::run(double) const + 34\r\n4 0x7fa04dc8b5d0 amici::ForwardProblem::workForwardProblem() + 1728\r\n5 0x7fa04dc3f763 amici::runAmiciSimulation(amici::Solver&, amici::ExpData const*, amici::Model&, bool) + 435\r\n6 0x7fa04dbe9280 /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0x13f\r\n", "simulatorDetails": [ { "key": "solver", @@ -89,7 +89,7 @@ "brian2": { "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1", "log_yml": { - "duration": 0.086251, + "duration": 0.057493, "exception": { "message": "No module named 'libsbml'", "type": "ModuleNotFoundError" @@ -103,21 +103,21 @@ "bionetgen": { "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1", "log_yml": { - "duration": 0.683383, + "duration": 0.69875, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).", "type": "CombineArchiveExecutionError" }, - "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp769711` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp792365` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", "sedDocuments": [ { - "duration": 0.432255, + "duration": 0.428374, "exception": { "message": "The SED document did not execute successfully:\n\n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).", "type": "SedmlExecutionError" }, - "location": "tmp769711", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp769711:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp769711 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp792365", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp792365:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp792365 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -130,7 +130,7 @@ "status": "SKIPPED" } ], - "duration": 0.248611, + "duration": 0.234131, "exception": null, "id": "d1", "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", @@ -152,7 +152,7 @@ "status": "SKIPPED" } ], - "duration": 0.072951, + "duration": 0.083012, "exception": null, "id": "ex9", "output": "", @@ -165,7 +165,7 @@ "tasks": [ { "algorithm": null, - "duration": 0.02529, + "duration": 0.025007, "exception": { "message": "Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).", "type": "ValueError" @@ -186,21 +186,21 @@ "boolnet": { "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1", "log_yml": { - "duration": 0.934637, + "duration": 0.784272, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).", "type": "CombineArchiveExecutionError" }, - "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp867509` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp133651` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", "sedDocuments": [ { - "duration": 0.530769, + "duration": 0.497757, "exception": { "message": "The SED document did not execute successfully:\n\n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).", "type": "SedmlExecutionError" }, - "location": "tmp867509", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp867509:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp867509 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp133651", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp133651:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp133651 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -213,7 +213,7 @@ "status": "SKIPPED" } ], - "duration": 0.300042, + "duration": 0.267692, "exception": null, "id": "d1", "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", @@ -235,7 +235,7 @@ "status": "SKIPPED" } ], - "duration": 0.069848, + "duration": 0.0693, "exception": null, "id": "ex9", "output": "", @@ -248,7 +248,7 @@ "tasks": [ { "algorithm": null, - "duration": 0.032549, + "duration": 0.033814, "exception": { "message": "Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).", "type": "ValueError" @@ -269,21 +269,21 @@ "cbmpy": { "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1", "log_yml": { - "duration": 0.983548, + "duration": 0.805859, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", "type": "CombineArchiveExecutionError" }, - "output": "\r\nINFO: No xlwt module available, Excel spreadsheet creation disabled\r\n\r\n\r\n\r\nNo module named 'cplex'\r\n\r\n\r\n\r\nCPLEX not available\r\n\r\n*****\r\nUsing GLPK\r\n*****\r\n\r\n\r\nINFO: No xlrd module available, Excel spreadsheet reading disabled\r\n\r\nCBMPy environment\r\n******************\r\nRevision: r689\r\n\r\n\r\n***********************************************************************\r\n* Welcome to CBMPy (0.7.25) - PySCeS Constraint Based Modelling *\r\n* http://cbmpy.sourceforge.net *\r\n* Copyright(C) Brett G. Olivier 2014 - 2019 *\r\n* Dept. of Systems Bioinformatics *\r\n* Vrije Universiteit Amsterdam, Amsterdam, The Netherlands *\r\n* CBMPy is developed as part of the BeBasic MetaToolKit Project *\r\n* Distributed under the GNU GPL v 3.0 licence, see *\r\n* LICENCE (supplied with this release) for details *\r\n***********************************************************************\r\n\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp3439` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "output": "\r\nINFO: No xlwt module available, Excel spreadsheet creation disabled\r\n\r\n\r\n\r\nNo module named 'cplex'\r\n\r\n\r\n\r\nCPLEX not available\r\n\r\n*****\r\nUsing GLPK\r\n*****\r\n\r\n\r\nINFO: No xlrd module available, Excel spreadsheet reading disabled\r\n\r\nCBMPy environment\r\n******************\r\nRevision: r689\r\n\r\n\r\n***********************************************************************\r\n* Welcome to CBMPy (0.7.25) - PySCeS Constraint Based Modelling *\r\n* http://cbmpy.sourceforge.net *\r\n* Copyright(C) Brett G. Olivier 2014 - 2019 *\r\n* Dept. of Systems Bioinformatics *\r\n* Vrije Universiteit Amsterdam, Amsterdam, The Netherlands *\r\n* CBMPy is developed as part of the BeBasic MetaToolKit Project *\r\n* Distributed under the GNU GPL v 3.0 licence, see *\r\n* LICENCE (supplied with this release) for details *\r\n***********************************************************************\r\n\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp52097` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", "sedDocuments": [ { - "duration": 0.493139, + "duration": 0.418282, "exception": { "message": "The SED document did not execute successfully:\n\n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", "type": "SedmlExecutionError" }, - "location": "tmp3439", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp3439:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp3439 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp52097", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp52097:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp52097 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -296,7 +296,7 @@ "status": "SKIPPED" } ], - "duration": 0.26759, + "duration": 0.221309, "exception": null, "id": "d1", "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", @@ -318,7 +318,7 @@ "status": "SKIPPED" } ], - "duration": 0.060221, + "duration": 0.079128, "exception": null, "id": "ex9", "output": "", @@ -331,7 +331,7 @@ "tasks": [ { "algorithm": null, - "duration": 0.033579, + "duration": 0.030802, "exception": { "message": "UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", "type": "ValueError" @@ -352,21 +352,21 @@ "cobrapy": { "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1", "log_yml": { - "duration": 0.713108, + "duration": 0.950844, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", "type": "CombineArchiveExecutionError" }, - "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp22230` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp465546` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", "sedDocuments": [ { - "duration": 0.470406, + "duration": 0.602993, "exception": { "message": "The SED document did not execute successfully:\n\n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", "type": "SedmlExecutionError" }, - "location": "tmp22230", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp22230:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp22230 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp465546", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp465546:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp465546 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -379,7 +379,7 @@ "status": "SKIPPED" } ], - "duration": 0.285627, + "duration": 0.372064, "exception": null, "id": "d1", "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", @@ -401,7 +401,7 @@ "status": "SKIPPED" } ], - "duration": 0.069436, + "duration": 0.067376, "exception": null, "id": "ex9", "output": "", @@ -414,7 +414,7 @@ "tasks": [ { "algorithm": null, - "duration": 0.02639, + "duration": 0.028576, "exception": { "message": "UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", "type": "ValueError" @@ -435,15 +435,15 @@ "copasi": { "exception_message": "", "log_yml": { - "duration": 1.602629, + "duration": 1.737826, "exception": null, - "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp431753` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp151470` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", "sedDocuments": [ { - "duration": 1.26713, + "duration": 1.40958, "exception": null, - "location": "tmp431753", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp431753:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp431753 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp151470", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp151470:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp151470 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -456,7 +456,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.772634, + "duration": 0.935473, "exception": null, "id": "d1", "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", @@ -478,7 +478,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.241472, + "duration": 0.230881, "exception": null, "id": "ex9", "output": "", @@ -491,10 +491,10 @@ "tasks": [ { "algorithm": "KISAO_0000560", - "duration": 0.168711, + "duration": 0.149328, "exception": null, "id": "sim1_net1", - "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33m- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmpaggomud2/./LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/kisao/utils.py:518: AlgorithmSubstitutedWarning: \u001b[33m'LSODA/LSODAR hybrid method' (KISAO_0000560) will be substituted for 'CVODE' (KISAO_0000019) at substitution policy 'SIMILAR_VARIABLES'.\u001b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", + "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33m- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmp980qrvqt/./LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/kisao/utils.py:518: AlgorithmSubstitutedWarning: \u001b[33m'LSODA/LSODAR hybrid method' (KISAO_0000560) will be substituted for 'CVODE' (KISAO_0000019) at substitution policy 'SIMILAR_VARIABLES'.\u001b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", "simulatorDetails": [ { "key": "methodName", @@ -518,15 +518,15 @@ "gillespy2": { "exception_message": "", "log_yml": { - "duration": 1.487551, + "duration": 1.585368, "exception": null, - "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp903161` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp81130` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", "sedDocuments": [ { - "duration": 1.201098, + "duration": 1.223174, "exception": null, - "location": "tmp903161", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp903161:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp903161 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp81130", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp81130:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp81130 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -539,7 +539,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.671544, + "duration": 0.681741, "exception": null, "id": "d1", "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", @@ -561,7 +561,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.266753, + "duration": 0.284383, "exception": null, "id": "ex9", "output": "", @@ -574,10 +574,10 @@ "tasks": [ { "algorithm": "KISAO_0000088", - "duration": 0.16635, + "duration": 0.147057, "exception": null, "id": "sim1_net1", - "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33m- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/kisao/utils.py:477: AlgorithmSubstitutedWarning: \u001b[33m'LSODA' (KISAO_0000088) will be substituted for 'CVODE'' (KISAO_0000019) at substitution policy 'SIMILAR_VARIABLES'.\u001b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33m- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/kisao/utils.py:477: AlgorithmSubstitutedWarning: \u001b[33m'LSODA' (KISAO_0000088) will be substituted for 'CVODE'' (KISAO_0000019) at substitution policy 'SIMILAR_VARIABLES'.\u001b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", "simulatorDetails": [ { "key": "method", @@ -603,21 +603,21 @@ "ginsim": { "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1", "log_yml": { - "duration": 0.758793, + "duration": 0.83023, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000", "type": "CombineArchiveExecutionError" }, - "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp262372` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp757460` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", "sedDocuments": [ { - "duration": 0.436353, + "duration": 0.506929, "exception": { "message": "The SED document did not execute successfully:\n\n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000", "type": "SedmlExecutionError" }, - "location": "tmp262372", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp262372:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp262372 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp757460", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp757460:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp757460 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -630,7 +630,7 @@ "status": "SKIPPED" } ], - "duration": 0.227592, + "duration": 0.270793, "exception": null, "id": "d1", "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", @@ -652,7 +652,7 @@ "status": "SKIPPED" } ], - "duration": 0.079804, + "duration": 0.071177, "exception": null, "id": "ex9", "output": "", @@ -665,7 +665,7 @@ "tasks": [ { "algorithm": null, - "duration": 0.030608, + "duration": 0.027768, "exception": { "message": "Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000", "type": "ValueError" @@ -686,15 +686,15 @@ "libsbmlsim": { "exception_message": "", "log_yml": { - "duration": 4.554327, + "duration": 4.76121, "exception": null, - "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp933964` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp920471` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", "sedDocuments": [ { - "duration": 4.30064, + "duration": 4.489787, "exception": null, - "location": "tmp933964", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp933964:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp933964 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp920471", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp920471:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp920471 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -707,7 +707,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.693692, + "duration": 0.685787, "exception": null, "id": "d1", "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", @@ -729,7 +729,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.323543, + "duration": 0.34283, "exception": null, "id": "ex9", "output": "", @@ -742,10 +742,10 @@ "tasks": [ { "algorithm": "KISAO_0000086", - "duration": 3.178311, + "duration": 3.338995, "exception": null, "id": "sim1_net1", - "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33m- Variable `OUTPUT__of1_V_fnPop1_0_V` may be invalid.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` may be invalid.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` may be invalid.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` may be invalid.\r\n - XPath could not be validated.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmpv4owxjaz/./LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/kisao/utils.py:477: AlgorithmSubstitutedWarning: \u001b[33m'Fehlberg method' (KISAO_0000086) will be substituted for 'CVODE'' (KISAO_0000019) at substitution policy 'SIMILAR_VARIABLES'.\u001b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33m- Variable `OUTPUT__of1_W_fnPop1_0_W` may be invalid.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` may be invalid.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` may be invalid.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` may be invalid.\r\n - XPath could not be validated.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmp80ayhgs9/./LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/kisao/utils.py:477: AlgorithmSubstitutedWarning: \u001b[33m'Fehlberg method' (KISAO_0000086) will be substituted for 'CVODE'' (KISAO_0000019) at substitution policy 'SIMILAR_VARIABLES'.\u001b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", "simulatorDetails": [ { "key": "method", @@ -776,21 +776,21 @@ "masspy": { "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1", "log_yml": { - "duration": 0.918865, + "duration": 0.85876, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .\n \t`(model, errors) = validate_sbml_model(filename)`\n If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .", "type": "CombineArchiveExecutionError" }, - "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp267411` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp790915` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n", "sedDocuments": [ { - "duration": 0.576144, + "duration": 0.498037, "exception": { "message": "The SED document did not execute successfully:\n\n Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .\n \t`(model, errors) = validate_sbml_model(filename)`\n If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .", "type": "SedmlExecutionError" }, - "location": "tmp267411", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp267411:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp267411 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp790915", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp790915:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp790915 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -803,7 +803,7 @@ "status": "SKIPPED" } ], - "duration": 0.302285, + "duration": 0.244133, "exception": null, "id": "d1", "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mIllogicalVizWarning\u001b[0m: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mIllogicalVizWarning\u001b[0m: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mIllogicalVizWarning\u001b[0m: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mIllogicalVizWarning\u001b[0m: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n", @@ -825,7 +825,7 @@ "status": "SKIPPED" } ], - "duration": 0.069424, + "duration": 0.068723, "exception": null, "id": "ex9", "output": "", @@ -838,13 +838,13 @@ "tasks": [ { "algorithm": null, - "duration": 0.04127, + "duration": 0.055965, "exception": { "message": "Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .\n\t`(model, errors) = validate_sbml_model(filename)`\nIf the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .", "type": "MassSBMLError" }, "id": "sim1_net1", - "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33m- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmpnvujal2d/./LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mSBML model is written as Level 2 Version 2, will attempt to convert the SBML model from Level 2 Version 2 to Level 3 Version 1 before parsing\u001b[0m\r\n", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33m- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmp1pm67k8b/./LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mSBML model is written as Level 2 Version 2, will attempt to convert the SBML model from Level 2 Version 2 to Level 3 Version 1 before parsing\u001b[0m\r\n", "simulatorDetails": null, "skipReason": null, "status": "FAILED" @@ -859,7 +859,7 @@ "netpyne": { "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1", "log_yml": { - "duration": 0.051276, + "duration": 0.758953, "exception": { "message": "No module named 'libsbml'", "type": "ModuleNotFoundError" @@ -873,7 +873,7 @@ "neuron": { "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1", "log_yml": { - "duration": 0.049382, + "duration": 0.047164, "exception": { "message": "No module named 'libsbml'", "type": "ModuleNotFoundError" @@ -887,7 +887,7 @@ "opencor": { "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1", "log_yml": { - "duration": 0.042507, + "duration": 0.170558, "exception": { "message": "No module named 'libsbml'", "type": "ModuleNotFoundError" @@ -901,7 +901,7 @@ "pyneuroml": { "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1", "log_yml": { - "duration": 0.050403, + "duration": 0.195727, "exception": { "message": "No module named 'libsbml'", "type": "ModuleNotFoundError" @@ -915,21 +915,21 @@ "pysces": { "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1", "log_yml": { - "duration": 1.84604, + "duration": 1.939982, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", "type": "CombineArchiveExecutionError" }, - "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp553006` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp857735` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", "sedDocuments": [ { - "duration": 1.573917, + "duration": 1.644714, "exception": { "message": "The SED document did not execute successfully:\n\n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", "type": "SedmlExecutionError" }, - "location": "tmp553006", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp553006:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp553006 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ...Check SBML support is at action level 2\r\nSBML file is L2V2\r\n\r\n*******************************************************************\r\nIssues encountered in SBML translation (model processed anyway)\r\nSBML source: /tmp/tmp6frbr57g.xml\r\n*******************************************************************\r\n\r\nNo free species!? ... help I'm confused! \r\n\r\n*******************************************************************\r\n\r\nWriting file: /tmp/tmp3flv775d.psc\r\n\r\nSBML2PSC\r\nin : /tmp/tmp6frbr57g.xml\r\nout: /tmp/tmp3flv775d.psc\r\nUsing model directory: /Pysces/psc\r\n/tmp/tmp3flv775d.psc loading ..... \r\nParsing file: /tmp/tmp3flv775d.psc\r\nInfo: No reagents have been fixed\r\nInfo: \"I\" has been initialised but does not occur in a rate equation\r\nInfo: \"SEC\" has been initialised but does not occur in a rate equation\r\nInfo: \"V\" has been initialised but does not occur in a rate equation\r\nInfo: \"W\" has been initialised but does not occur in a rate equation\r\n \r\n \u001b[31mfailed - \r\nUnable to generate Stoichiometric Matrix! model has:\r\n0 reactions\r\n0 species\r\nwhat did you have in mind?\r\n\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp857735", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp857735:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp857735 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ...Check SBML support is at action level 2\r\nSBML file is L2V2\r\n\r\n*******************************************************************\r\nIssues encountered in SBML translation (model processed anyway)\r\nSBML source: /tmp/tmpp3desvp0.xml\r\n*******************************************************************\r\n\r\nNo free species!? ... help I'm confused! \r\n\r\n*******************************************************************\r\n\r\nWriting file: /tmp/tmpx3g93pi6.psc\r\n\r\nSBML2PSC\r\nin : /tmp/tmpp3desvp0.xml\r\nout: /tmp/tmpx3g93pi6.psc\r\nUsing model directory: /Pysces/psc\r\n/tmp/tmpx3g93pi6.psc loading ..... \r\nParsing file: /tmp/tmpx3g93pi6.psc\r\nInfo: No reagents have been fixed\r\nInfo: \"I\" has been initialised but does not occur in a rate equation\r\nInfo: \"SEC\" has been initialised but does not occur in a rate equation\r\nInfo: \"V\" has been initialised but does not occur in a rate equation\r\nInfo: \"W\" has been initialised but does not occur in a rate equation\r\n \r\n \u001b[31mfailed - \r\nUnable to generate Stoichiometric Matrix! model has:\r\n0 reactions\r\n0 species\r\nwhat did you have in mind?\r\n\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -942,7 +942,7 @@ "status": "SKIPPED" } ], - "duration": 0.317681, + "duration": 0.358815, "exception": null, "id": "d1", "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", @@ -964,7 +964,7 @@ "status": "SKIPPED" } ], - "duration": 0.044094, + "duration": 0.099216, "exception": null, "id": "ex9", "output": "", @@ -977,7 +977,7 @@ "tasks": [ { "algorithm": null, - "duration": 1.103688, + "duration": 1.069666, "exception": { "message": "\nUnable to generate Stoichiometric Matrix! model has:\n0 reactions\n0 species\nwhat did you have in mind?\n", "type": "AssertionError" @@ -998,21 +998,21 @@ "rbapy": { "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1", "log_yml": { - "duration": 0.762289, + "duration": 0.954315, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).", "type": "CombineArchiveExecutionError" }, - "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp225479` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp358640` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", "sedDocuments": [ { - "duration": 0.515191, + "duration": 0.425598, "exception": { "message": "The SED document did not execute successfully:\n\n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).", "type": "SedmlExecutionError" }, - "location": "tmp225479", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp225479:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp225479 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp358640", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp358640:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp358640 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -1025,7 +1025,7 @@ "status": "SKIPPED" } ], - "duration": 0.29526, + "duration": 0.224934, "exception": null, "id": "d1", "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", @@ -1047,7 +1047,7 @@ "status": "SKIPPED" } ], - "duration": 0.075917, + "duration": 0.072813, "exception": null, "id": "ex9", "output": "", @@ -1060,7 +1060,7 @@ "tasks": [ { "algorithm": null, - "duration": 0.024634, + "duration": 0.024417, "exception": { "message": "Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).", "type": "ValueError" @@ -1085,15 +1085,15 @@ "tellurium": { "exception_message": "", "log_yml": { - "duration": 1.66226, + "duration": 1.715951, "exception": null, - "output": "/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n\r\n/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp444204` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n\r\n", + "output": "/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n\r\n/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp485772` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n\r\n", "sedDocuments": [ { - "duration": 1.233869, + "duration": 1.298982, "exception": null, - "location": "tmp444204", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp444204:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp444204 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp485772", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp485772:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp485772 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -1106,7 +1106,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.733761, + "duration": 0.751484, "exception": null, "id": "d1", "output": "/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning:\r\n\r\n\u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n\r\n", @@ -1128,7 +1128,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.229049, + "duration": 0.246958, "exception": null, "id": "ex9", "output": "", @@ -1141,10 +1141,10 @@ "tasks": [ { "algorithm": "KISAO_0000019", - "duration": 0.175954, + "duration": 0.175517, "exception": null, "id": "sim1_net1", - "output": "/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33m- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n\r\n/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmp7opm6_44/./LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n\r\n", + "output": "/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33m- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n\r\n/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmpovmjj26r/./LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n\r\n", "simulatorDetails": [ { "key": "method", @@ -1218,7 +1218,7 @@ "log_yml": { "duration": 2, "exception": null, - "output": "Processing tmp712577. Done", + "output": "Processing tmp232535. Done", "sedDocuments": [], "skipReason": null, "status": "SUCCEEDED" @@ -1227,7 +1227,7 @@ "xpp": { "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1", "log_yml": { - "duration": 0.057562, + "duration": 0.076306, "exception": { "message": "No module named 'libsbml'", "type": "ModuleNotFoundError" diff --git a/SBML/tests/results_remote.json b/SBML/tests/results_remote.json index b0fdef6a..67ba91e4 100644 --- a/SBML/tests/results_remote.json +++ b/SBML/tests/results_remote.json @@ -1,19 +1,19 @@ { "amici": { "response": 201, - "view": "https://api.biosimulations.org/runs/67235bd70d09353e8f0f1ebc", - "download": "https://api.biosimulations.org/results/67235bd70d09353e8f0f1ebc/download", - "logs": "https://api.biosimulations.org/logs/67235bd70d09353e8f0f1ebc?includeOutput=true", - "log": { - "duration": 22.469637, + "view": "https://api.biosimulations.org/runs/672364ffb678b3883bb574ba", + "download": "https://api.biosimulations.org/results/672364ffb678b3883bb574ba/download", + "logs": "https://api.biosimulations.org/logs/672364ffb678b3883bb574ba?includeOutput=true", + "log_yml": { + "duration": 19.478039, "exception": null, "output": "", "sedDocuments": [ { - "duration": 22.095105, + "duration": 19.098796, "exception": null, - "location": "tmp290190", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp290190:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp290190 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp395914", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp395914:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp395914 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -26,7 +26,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.832109, + "duration": 0.756623, "exception": null, "id": "d1", "output": "", @@ -48,7 +48,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.325257, + "duration": 0.296161, "exception": null, "id": "ex9", "output": "", @@ -61,10 +61,10 @@ "tasks": [ { "algorithm": "KISAO_0000496", - "duration": 20.850944, + "duration": 17.966963, "exception": null, "id": "sim1_net1", - "output": "2024-10-31 06:29:07.615 - amici.swig_wrappers - ERROR - [OTHER] AMICI simulation failed: Reached maximum number of steps 10000 before reaching tout at t=99.66.\r\n2024-10-31 06:29:07.615 - amici.swig_wrappers - DEBUG - [BACKTRACE] The previous error occurred at:\r\n2 0x7ffff3462a8b /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0xb5a8b) [0x7ffff3462a8b]\r\n3 0x7ffff3556262 amici::Solver::run(double) const + 34\r\n4 0x7ffff358e5d0 amici::ForwardProblem::workForwardProblem() + 1728\r\n5 0x7ffff3542763 amici::runAmiciSimulation(amici::Solver&, amici::ExpData const*, amici::Model&, bool) + 435\r\n6 0x7ffff34ec280 /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0x13f\r\n", + "output": "2024-10-31 07:08:08.154 - amici.swig_wrappers - ERROR - [OTHER] AMICI simulation failed: Reached maximum number of steps 10000 before reaching tout at t=99.66.\r\n2024-10-31 07:08:08.154 - amici.swig_wrappers - DEBUG - [BACKTRACE] The previous error occurred at:\r\n2 0x7ffff3462a8b /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0xb5a8b) [0x7ffff3462a8b]\r\n3 0x7ffff3556262 amici::Solver::run(double) const + 34\r\n4 0x7ffff358e5d0 amici::ForwardProblem::workForwardProblem() + 1728\r\n5 0x7ffff3542763 amici::runAmiciSimulation(amici::Solver&, amici::ExpData const*, amici::Model&, bool) + 435\r\n6 0x7ffff34ec280 /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0x13f\r\n", "simulatorDetails": [ { "key": "solver", @@ -91,11 +91,11 @@ }, "brian2": { "response": 201, - "view": "https://api.biosimulations.org/runs/67235bd80d09353e8f0f1ebf", - "download": "https://api.biosimulations.org/results/67235bd80d09353e8f0f1ebf/download", - "logs": "https://api.biosimulations.org/logs/67235bd80d09353e8f0f1ebf?includeOutput=true", - "log": { - "duration": 0.054302, + "view": "https://api.biosimulations.org/runs/67236501b678b3883bb574bd", + "download": "https://api.biosimulations.org/results/67236501b678b3883bb574bd/download", + "logs": "https://api.biosimulations.org/logs/67236501b678b3883bb574bd?includeOutput=true", + "log_yml": { + "duration": 0.049725, "exception": { "message": "No module named 'libsbml'", "type": "ModuleNotFoundError" @@ -108,11 +108,11 @@ }, "bionetgen": { "response": 201, - "view": "https://api.biosimulations.org/runs/67235bdab678b3883bb57253", - "download": "https://api.biosimulations.org/results/67235bdab678b3883bb57253/download", - "logs": "https://api.biosimulations.org/logs/67235bdab678b3883bb57253?includeOutput=true", - "log": { - "duration": 0.657178, + "view": "https://api.biosimulations.org/runs/672365030d09353e8f0f21c1", + "download": "https://api.biosimulations.org/results/672365030d09353e8f0f21c1/download", + "logs": "https://api.biosimulations.org/logs/672365030d09353e8f0f21c1?includeOutput=true", + "log_yml": { + "duration": 0.56944, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).", "type": "CombineArchiveExecutionError" @@ -120,13 +120,13 @@ "output": "", "sedDocuments": [ { - "duration": 0.376992, + "duration": 0.32309, "exception": { "message": "The SED document did not execute successfully:\n\n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).", "type": "SedmlExecutionError" }, - "location": "tmp298526", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp298526:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp298526 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp908348", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp908348:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp908348 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -139,7 +139,7 @@ "status": "SKIPPED" } ], - "duration": 0.198092, + "duration": 0.148064, "exception": null, "id": "d1", "output": "", @@ -161,7 +161,7 @@ "status": "SKIPPED" } ], - "duration": 0.060861, + "duration": 0.05807, "exception": null, "id": "ex9", "output": "", @@ -174,7 +174,7 @@ "tasks": [ { "algorithm": null, - "duration": 0.028534, + "duration": 0.026347, "exception": { "message": "Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).", "type": "ValueError" @@ -194,11 +194,11 @@ }, "boolnet": { "response": 201, - "view": "https://api.biosimulations.org/runs/67235bdc0d09353e8f0f1ec2", - "download": "https://api.biosimulations.org/results/67235bdc0d09353e8f0f1ec2/download", - "logs": "https://api.biosimulations.org/logs/67235bdc0d09353e8f0f1ec2?includeOutput=true", - "log": { - "duration": 0.635009, + "view": "https://api.biosimulations.org/runs/672365055a60072d20f42483", + "download": "https://api.biosimulations.org/results/672365055a60072d20f42483/download", + "logs": "https://api.biosimulations.org/logs/672365055a60072d20f42483?includeOutput=true", + "log_yml": { + "duration": 0.576474, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).", "type": "CombineArchiveExecutionError" @@ -206,13 +206,13 @@ "output": "", "sedDocuments": [ { - "duration": 0.370856, + "duration": 0.331967, "exception": { "message": "The SED document did not execute successfully:\n\n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).", "type": "SedmlExecutionError" }, - "location": "tmp847144", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp847144:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp847144 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp444384", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp444384:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp444384 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -225,7 +225,7 @@ "status": "SKIPPED" } ], - "duration": 0.177922, + "duration": 0.148167, "exception": null, "id": "d1", "output": "", @@ -247,7 +247,7 @@ "status": "SKIPPED" } ], - "duration": 0.063579, + "duration": 0.065588, "exception": null, "id": "ex9", "output": "", @@ -260,7 +260,7 @@ "tasks": [ { "algorithm": null, - "duration": 0.03315, + "duration": 0.028671, "exception": { "message": "Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).", "type": "ValueError" @@ -280,11 +280,11 @@ }, "cbmpy": { "response": 201, - "view": "https://api.biosimulations.org/runs/67235bdd0d09353e8f0f1ec8", - "download": "https://api.biosimulations.org/results/67235bdd0d09353e8f0f1ec8/download", - "logs": "https://api.biosimulations.org/logs/67235bdd0d09353e8f0f1ec8?includeOutput=true", - "log": { - "duration": 0.799338, + "view": "https://api.biosimulations.org/runs/67236507b678b3883bb574c0", + "download": "https://api.biosimulations.org/results/67236507b678b3883bb574c0/download", + "logs": "https://api.biosimulations.org/logs/67236507b678b3883bb574c0?includeOutput=true", + "log_yml": { + "duration": 0.63583, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", "type": "CombineArchiveExecutionError" @@ -292,13 +292,13 @@ "output": "\r\nINFO: No xlwt module available, Excel spreadsheet creation disabled\r\n\r\n\r\n\r\nNo module named 'cplex'\r\n\r\n\r\n\r\nCPLEX not available\r\n\r\n*****\r\nUsing GLPK\r\n*****\r\n\r\n\r\nINFO: No xlrd module available, Excel spreadsheet reading disabled\r\n\r\nCBMPy environment\r\n******************\r\nRevision: r689\r\n\r\n\r\n***********************************************************************\r\n* Welcome to CBMPy (0.7.25) - PySCeS Constraint Based Modelling *\r\n* http://cbmpy.sourceforge.net *\r\n* Copyright(C) Brett G. Olivier 2014 - 2019 *\r\n* Dept. of Systems Bioinformatics *\r\n* Vrije Universiteit Amsterdam, Amsterdam, The Netherlands *\r\n* CBMPy is developed as part of the BeBasic MetaToolKit Project *\r\n* Distributed under the GNU GPL v 3.0 licence, see *\r\n* LICENCE (supplied with this release) for details *\r\n***********************************************************************\r\n\r\n", "sedDocuments": [ { - "duration": 0.352543, + "duration": 0.30786, "exception": { "message": "The SED document did not execute successfully:\n\n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", "type": "SedmlExecutionError" }, - "location": "tmp306807", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp306807:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp306807 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp689225", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp689225:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp689225 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -311,7 +311,7 @@ "status": "SKIPPED" } ], - "duration": 0.171323, + "duration": 0.14713, "exception": null, "id": "d1", "output": "", @@ -333,7 +333,7 @@ "status": "SKIPPED" } ], - "duration": 0.061586, + "duration": 0.054685, "exception": null, "id": "ex9", "output": "", @@ -346,7 +346,7 @@ "tasks": [ { "algorithm": null, - "duration": 0.030277, + "duration": 0.027038, "exception": { "message": "UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", "type": "ValueError" @@ -366,11 +366,11 @@ }, "cobrapy": { "response": 201, - "view": "https://api.biosimulations.org/runs/67235bdfb678b3883bb57258", - "download": "https://api.biosimulations.org/results/67235bdfb678b3883bb57258/download", - "logs": "https://api.biosimulations.org/logs/67235bdfb678b3883bb57258?includeOutput=true", - "log": { - "duration": 0.558301, + "view": "https://api.biosimulations.org/runs/672365095a60072d20f42488", + "download": "https://api.biosimulations.org/results/672365095a60072d20f42488/download", + "logs": "https://api.biosimulations.org/logs/672365095a60072d20f42488?includeOutput=true", + "log_yml": { + "duration": 0.617545, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", "type": "CombineArchiveExecutionError" @@ -378,13 +378,13 @@ "output": "", "sedDocuments": [ { - "duration": 0.313628, + "duration": 0.342356, "exception": { "message": "The SED document did not execute successfully:\n\n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", "type": "SedmlExecutionError" }, - "location": "tmp88202", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp88202:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp88202 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp889066", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp889066:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp889066 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -397,7 +397,7 @@ "status": "SKIPPED" } ], - "duration": 0.144807, + "duration": 0.170833, "exception": null, "id": "d1", "output": "", @@ -419,7 +419,7 @@ "status": "SKIPPED" } ], - "duration": 0.0628, + "duration": 0.05885, "exception": null, "id": "ex9", "output": "", @@ -432,7 +432,7 @@ "tasks": [ { "algorithm": null, - "duration": 0.027209, + "duration": 0.02883, "exception": { "message": "UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", "type": "ValueError" @@ -452,19 +452,19 @@ }, "copasi": { "response": 201, - "view": "https://api.biosimulations.org/runs/67235be25a60072d20f42258", - "download": "https://api.biosimulations.org/results/67235be25a60072d20f42258/download", - "logs": "https://api.biosimulations.org/logs/67235be25a60072d20f42258?includeOutput=true", - "log": { - "duration": 1.79918, + "view": "https://api.biosimulations.org/runs/6723650bb678b3883bb574c7", + "download": "https://api.biosimulations.org/results/6723650bb678b3883bb574c7/download", + "logs": "https://api.biosimulations.org/logs/6723650bb678b3883bb574c7?includeOutput=true", + "log_yml": { + "duration": 2.244487, "exception": null, "output": "", "sedDocuments": [ { - "duration": 1.545066, + "duration": 1.940251, "exception": null, - "location": "tmp635551", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp635551:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp635551 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp197540", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp197540:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp197540 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -477,7 +477,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.962088, + "duration": 1.235795, "exception": null, "id": "d1", "output": "", @@ -499,7 +499,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.324752, + "duration": 0.395562, "exception": null, "id": "ex9", "output": "", @@ -512,7 +512,7 @@ "tasks": [ { "algorithm": "KISAO_0000560", - "duration": 0.187069, + "duration": 0.23162, "exception": null, "id": "sim1_net1", "output": "", @@ -538,19 +538,19 @@ }, "gillespy2": { "response": 201, - "view": "https://api.biosimulations.org/runs/67235be3b678b3883bb57260", - "download": "https://api.biosimulations.org/results/67235be3b678b3883bb57260/download", - "logs": "https://api.biosimulations.org/logs/67235be3b678b3883bb57260?includeOutput=true", - "log": { - "duration": 1.81448, + "view": "https://api.biosimulations.org/runs/6723650db678b3883bb574cc", + "download": "https://api.biosimulations.org/results/6723650db678b3883bb574cc/download", + "logs": "https://api.biosimulations.org/logs/6723650db678b3883bb574cc?includeOutput=true", + "log_yml": { + "duration": 1.691113, "exception": null, "output": "", "sedDocuments": [ { - "duration": 1.5565, + "duration": 1.441249, "exception": null, - "location": "tmp328214", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp328214:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp328214 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp273421", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp273421:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp273421 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -563,7 +563,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.888546, + "duration": 0.823184, "exception": null, "id": "d1", "output": "", @@ -585,7 +585,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.398553, + "duration": 0.374279, "exception": null, "id": "ex9", "output": "", @@ -598,7 +598,7 @@ "tasks": [ { "algorithm": "KISAO_0000088", - "duration": 0.178899, + "duration": 0.165247, "exception": null, "id": "sim1_net1", "output": "", @@ -626,11 +626,11 @@ }, "ginsim": { "response": 201, - "view": "https://api.biosimulations.org/runs/67235be55a60072d20f4225d", - "download": "https://api.biosimulations.org/results/67235be55a60072d20f4225d/download", - "logs": "https://api.biosimulations.org/logs/67235be55a60072d20f4225d?includeOutput=true", - "log": { - "duration": 0.517596, + "view": "https://api.biosimulations.org/runs/6723650f0d09353e8f0f21cc", + "download": "https://api.biosimulations.org/results/6723650f0d09353e8f0f21cc/download", + "logs": "https://api.biosimulations.org/logs/6723650f0d09353e8f0f21cc?includeOutput=true", + "log_yml": { + "duration": 0.637362, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000", "type": "CombineArchiveExecutionError" @@ -638,13 +638,13 @@ "output": "", "sedDocuments": [ { - "duration": 0.302227, + "duration": 0.35478, "exception": { "message": "The SED document did not execute successfully:\n\n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000", "type": "SedmlExecutionError" }, - "location": "tmp626357", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp626357:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp626357 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp464659", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp464659:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp464659 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -657,7 +657,7 @@ "status": "SKIPPED" } ], - "duration": 0.140789, + "duration": 0.175627, "exception": null, "id": "d1", "output": "", @@ -679,7 +679,7 @@ "status": "SKIPPED" } ], - "duration": 0.056111, + "duration": 0.06116, "exception": null, "id": "ex9", "output": "", @@ -692,7 +692,7 @@ "tasks": [ { "algorithm": null, - "duration": 0.026936, + "duration": 0.030889, "exception": { "message": "Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000", "type": "ValueError" @@ -712,19 +712,19 @@ }, "libsbmlsim": { "response": 201, - "view": "https://api.biosimulations.org/runs/67235be70d09353e8f0f1ed1", - "download": "https://api.biosimulations.org/results/67235be70d09353e8f0f1ed1/download", - "logs": "https://api.biosimulations.org/logs/67235be70d09353e8f0f1ed1?includeOutput=true", - "log": { - "duration": 7.623497, + "view": "https://api.biosimulations.org/runs/672365110d09353e8f0f21d1", + "download": "https://api.biosimulations.org/results/672365110d09353e8f0f21d1/download", + "logs": "https://api.biosimulations.org/logs/672365110d09353e8f0f21d1?includeOutput=true", + "log_yml": { + "duration": 9.430935, "exception": null, "output": "", "sedDocuments": [ { - "duration": 7.411016, + "duration": 9.147262, "exception": null, - "location": "tmp113634", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp113634:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp113634 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp293345", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp293345:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp293345 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -737,7 +737,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.893917, + "duration": 1.069012, "exception": null, "id": "d1", "output": "", @@ -759,7 +759,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.39097, + "duration": 0.462325, "exception": null, "id": "ex9", "output": "", @@ -772,7 +772,7 @@ "tasks": [ { "algorithm": "KISAO_0000086", - "duration": 6.043146, + "duration": 7.510757, "exception": null, "id": "sim1_net1", "output": "", @@ -805,19 +805,19 @@ }, "masspy": { "response": 201, - "view": "https://api.biosimulations.org/runs/67235be90d09353e8f0f1ed5", - "download": "https://api.biosimulations.org/results/67235be90d09353e8f0f1ed5/download", - "logs": "https://api.biosimulations.org/logs/67235be90d09353e8f0f1ed5?includeOutput=true", - "log": { - "duration": 2.454737, + "view": "https://api.biosimulations.org/runs/672365125a60072d20f42493", + "download": "https://api.biosimulations.org/results/672365125a60072d20f42493/download", + "logs": "https://api.biosimulations.org/logs/672365125a60072d20f42493?includeOutput=true", + "log_yml": { + "duration": 2.548897, "exception": null, "output": "", "sedDocuments": [ { - "duration": 1.975256, + "duration": 1.975757, "exception": null, - "location": "tmp384198", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp384198:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp384198 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp318145", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp318145:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp318145 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -830,7 +830,7 @@ "status": "SUCCEEDED" } ], - "duration": 1.20074, + "duration": 1.190302, "exception": null, "id": "d1", "output": "", @@ -852,7 +852,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.458937, + "duration": 0.460042, "exception": null, "id": "ex9", "output": "", @@ -865,7 +865,7 @@ "tasks": [ { "algorithm": "KISAO_0000019", - "duration": 0.218241, + "duration": 0.219986, "exception": null, "id": "sim1_net1", "output": "\u001b[93mWARNING:\u001b[0m \u001b[93mModel does not contain SBML fbc package\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mModel does not contain SBML groups package\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo metabolites in model.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo reactions in model.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mNo compartments found in model. Therefore creating compartment 'compartment' for entire model.\u001b[0m\r\n", @@ -935,11 +935,11 @@ }, "netpyne": { "response": 201, - "view": "https://api.biosimulations.org/runs/67235beab678b3883bb57269", - "download": "https://api.biosimulations.org/results/67235beab678b3883bb57269/download", - "logs": "https://api.biosimulations.org/logs/67235beab678b3883bb57269?includeOutput=true", - "log": { - "duration": 0.049734, + "view": "https://api.biosimulations.org/runs/672365140d09353e8f0f21e0", + "download": "https://api.biosimulations.org/results/672365140d09353e8f0f21e0/download", + "logs": "https://api.biosimulations.org/logs/672365140d09353e8f0f21e0?includeOutput=true", + "log_yml": { + "duration": 0.063245, "exception": { "message": "No module named 'libsbml'", "type": "ModuleNotFoundError" @@ -952,11 +952,11 @@ }, "neuron": { "response": 201, - "view": "https://api.biosimulations.org/runs/67235becb678b3883bb5726c", - "download": "https://api.biosimulations.org/results/67235becb678b3883bb5726c/download", - "logs": "https://api.biosimulations.org/logs/67235becb678b3883bb5726c?includeOutput=true", - "log": { - "duration": 0.072944, + "view": "https://api.biosimulations.org/runs/67236516b678b3883bb574de", + "download": "https://api.biosimulations.org/results/67236516b678b3883bb574de/download", + "logs": "https://api.biosimulations.org/logs/67236516b678b3883bb574de?includeOutput=true", + "log_yml": { + "duration": 0.04694, "exception": { "message": "No module named 'libsbml'", "type": "ModuleNotFoundError" @@ -969,11 +969,11 @@ }, "opencor": { "response": 201, - "view": "https://api.biosimulations.org/runs/67235bee5a60072d20f42269", - "download": "https://api.biosimulations.org/results/67235bee5a60072d20f42269/download", - "logs": "https://api.biosimulations.org/logs/67235bee5a60072d20f42269?includeOutput=true", - "log": { - "duration": 0.04185, + "view": "https://api.biosimulations.org/runs/672365170d09353e8f0f21fb", + "download": "https://api.biosimulations.org/results/672365170d09353e8f0f21fb/download", + "logs": "https://api.biosimulations.org/logs/672365170d09353e8f0f21fb?includeOutput=true", + "log_yml": { + "duration": 0.018708, "exception": { "message": "No module named 'libsbml'", "type": "ModuleNotFoundError" @@ -986,11 +986,11 @@ }, "pyneuroml": { "response": 201, - "view": "https://api.biosimulations.org/runs/67235bef5a60072d20f4226c", - "download": "https://api.biosimulations.org/results/67235bef5a60072d20f4226c/download", - "logs": "https://api.biosimulations.org/logs/67235bef5a60072d20f4226c?includeOutput=true", - "log": { - "duration": 0.049496, + "view": "https://api.biosimulations.org/runs/672365195a60072d20f424b8", + "download": "https://api.biosimulations.org/results/672365195a60072d20f424b8/download", + "logs": "https://api.biosimulations.org/logs/672365195a60072d20f424b8?includeOutput=true", + "log_yml": { + "duration": 0.041127, "exception": { "message": "No module named 'libsbml'", "type": "ModuleNotFoundError" @@ -1003,11 +1003,11 @@ }, "pysces": { "response": 201, - "view": "https://api.biosimulations.org/runs/67235bf15a60072d20f42274", - "download": "https://api.biosimulations.org/results/67235bf15a60072d20f42274/download", - "logs": "https://api.biosimulations.org/logs/67235bf15a60072d20f42274?includeOutput=true", - "log": { - "duration": 1.962186, + "view": "https://api.biosimulations.org/runs/6723651bb678b3883bb57503", + "download": "https://api.biosimulations.org/results/6723651bb678b3883bb57503/download", + "logs": "https://api.biosimulations.org/logs/6723651bb678b3883bb57503?includeOutput=true", + "log_yml": { + "duration": 1.79334, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", "type": "CombineArchiveExecutionError" @@ -1015,13 +1015,13 @@ "output": "libtk8.6.so: cannot open shared object file: No such file or directory\r\n\r\nPySCeS defaults to matplotlib's TKagg backend if not specified in the user configuration file, set \"matplotlib_backend = \" \r\nMatplotlib interface loaded (pysces.plt.m)\r\nPitcon routines available\r\nNLEQ2 routines available\r\nSBML support available\r\nYou are using NumPy (2.1.2) with SciPy (1.14.1)\r\nAssimulo CVode available\r\nRateChar is available\r\nParallel scanner is available\r\n\r\nPySCeS environment\r\n******************\r\npysces.model_dir = /home/FCAM/crbmapi/Pysces/psc\r\npysces.output_dir = /home/FCAM/crbmapi/Pysces\r\n\r\n\r\n***********************************************************************\r\n* Welcome to PySCeS (1.2.2) - Python Simulator for Cellular Systems *\r\n* http://pysces.sourceforge.net *\r\n* Copyright(C) B.G. Olivier, J.M. Rohwer, J.-H.S. Hofmeyr, 2004-2024 *\r\n* Triple-J Group for Molecular Cell Physiology *\r\n* Stellenbosch University, ZA and VU University Amsterdam, NL *\r\n* PySCeS is distributed under the PySCeS (BSD style) licence, see *\r\n* LICENCE.txt (supplied with this release) for details *\r\n* Please cite PySCeS with: doi:10.1093/bioinformatics/bti046 *\r\n***********************************************************************\r\n", "sedDocuments": [ { - "duration": 1.700572, + "duration": 1.570343, "exception": { "message": "The SED document did not execute successfully:\n\n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", "type": "SedmlExecutionError" }, - "location": "tmp883479", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp883479:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp883479 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ...Check SBML support is at action level 2\r\nSBML file is L2V2\r\n\r\n*******************************************************************\r\nIssues encountered in SBML translation (model processed anyway)\r\nSBML source: /tmp/tmpp61rmgxb.xml\r\n*******************************************************************\r\n\r\nNo free species!? ... help I'm confused! \r\n\r\n*******************************************************************\r\n\r\nWriting file: /tmp/tmpazgjred0.psc\r\n\r\nSBML2PSC\r\nin : /tmp/tmpp61rmgxb.xml\r\nout: /tmp/tmpazgjred0.psc\r\nUsing model directory: /home/FCAM/crbmapi/Pysces/psc\r\n/tmp/tmpazgjred0.psc loading ..... \r\nParsing file: /tmp/tmpazgjred0.psc\r\nInfo: No reagents have been fixed\r\nInfo: \"I\" has been initialised but does not occur in a rate equation\r\nInfo: \"SEC\" has been initialised but does not occur in a rate equation\r\nInfo: \"V\" has been initialised but does not occur in a rate equation\r\nInfo: \"W\" has been initialised but does not occur in a rate equation\r\n \r\n \u001b[31mfailed - \r\nUnable to generate Stoichiometric Matrix! model has:\r\n0 reactions\r\n0 species\r\nwhat did you have in mind?\r\n\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp334490", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp334490:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp334490 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ...Check SBML support is at action level 2\r\nSBML file is L2V2\r\n\r\n*******************************************************************\r\nIssues encountered in SBML translation (model processed anyway)\r\nSBML source: /tmp/tmpyxj7t8de.xml\r\n*******************************************************************\r\n\r\nNo free species!? ... help I'm confused! \r\n\r\n*******************************************************************\r\n\r\nWriting file: /tmp/tmpcqqq_2ah.psc\r\n\r\nSBML2PSC\r\nin : /tmp/tmpyxj7t8de.xml\r\nout: /tmp/tmpcqqq_2ah.psc\r\nUsing model directory: /home/FCAM/crbmapi/Pysces/psc\r\n/tmp/tmpcqqq_2ah.psc loading ..... \r\nParsing file: /tmp/tmpcqqq_2ah.psc\r\nInfo: No reagents have been fixed\r\nInfo: \"I\" has been initialised but does not occur in a rate equation\r\nInfo: \"SEC\" has been initialised but does not occur in a rate equation\r\nInfo: \"V\" has been initialised but does not occur in a rate equation\r\nInfo: \"W\" has been initialised but does not occur in a rate equation\r\n \r\n \u001b[31mfailed - \r\nUnable to generate Stoichiometric Matrix! model has:\r\n0 reactions\r\n0 species\r\nwhat did you have in mind?\r\n\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -1034,7 +1034,7 @@ "status": "SKIPPED" } ], - "duration": 0.450774, + "duration": 0.355719, "exception": null, "id": "d1", "output": "", @@ -1056,7 +1056,7 @@ "status": "SKIPPED" } ], - "duration": 0.065278, + "duration": 0.053872, "exception": null, "id": "ex9", "output": "", @@ -1069,7 +1069,7 @@ "tasks": [ { "algorithm": null, - "duration": 1.095578, + "duration": 1.084021, "exception": { "message": "\nUnable to generate Stoichiometric Matrix! model has:\n0 reactions\n0 species\nwhat did you have in mind?\n", "type": "AssertionError" @@ -1089,11 +1089,11 @@ }, "rbapy": { "response": 201, - "view": "https://api.biosimulations.org/runs/67235bf3b678b3883bb57287", - "download": "https://api.biosimulations.org/results/67235bf3b678b3883bb57287/download", - "logs": "https://api.biosimulations.org/logs/67235bf3b678b3883bb57287?includeOutput=true", - "log": { - "duration": 0.56522, + "view": "https://api.biosimulations.org/runs/6723651cb678b3883bb57506", + "download": "https://api.biosimulations.org/results/6723651cb678b3883bb57506/download", + "logs": "https://api.biosimulations.org/logs/6723651cb678b3883bb57506?includeOutput=true", + "log_yml": { + "duration": 0.631232, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).", "type": "CombineArchiveExecutionError" @@ -1101,13 +1101,13 @@ "output": "", "sedDocuments": [ { - "duration": 0.316491, + "duration": 0.35197, "exception": { "message": "The SED document did not execute successfully:\n\n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).", "type": "SedmlExecutionError" }, - "location": "tmp255034", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp255034:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp255034 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp674654", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp674654:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp674654 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -1120,7 +1120,7 @@ "status": "SKIPPED" } ], - "duration": 0.147008, + "duration": 0.173169, "exception": null, "id": "d1", "output": "", @@ -1142,7 +1142,7 @@ "status": "SKIPPED" } ], - "duration": 0.059075, + "duration": 0.060541, "exception": null, "id": "ex9", "output": "", @@ -1155,7 +1155,7 @@ "tasks": [ { "algorithm": null, - "duration": 0.026538, + "duration": 0.029105, "exception": { "message": "Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).", "type": "ValueError" @@ -1175,11 +1175,11 @@ }, "smoldyn": { "response": 201, - "view": "https://api.biosimulations.org/runs/67235bf45a60072d20f42295", - "download": "https://api.biosimulations.org/results/67235bf45a60072d20f42295/download", - "logs": "https://api.biosimulations.org/logs/67235bf45a60072d20f42295?includeOutput=true", - "log": { - "duration": 0.072518, + "view": "https://api.biosimulations.org/runs/6723651e0d09353e8f0f2222", + "download": "https://api.biosimulations.org/results/6723651e0d09353e8f0f2222/download", + "logs": "https://api.biosimulations.org/logs/6723651e0d09353e8f0f2222?includeOutput=true", + "log_yml": { + "duration": 0.062326, "exception": { "message": "No module named 'libsbml'", "type": "ModuleNotFoundError" @@ -1192,19 +1192,19 @@ }, "tellurium": { "response": 201, - "view": "https://api.biosimulations.org/runs/67235bf65a60072d20f422a2", - "download": "https://api.biosimulations.org/results/67235bf65a60072d20f422a2/download", - "logs": "https://api.biosimulations.org/logs/67235bf65a60072d20f422a2?includeOutput=true", - "log": { - "duration": 2.3631, + "view": "https://api.biosimulations.org/runs/672365200d09353e8f0f222c", + "download": "https://api.biosimulations.org/results/672365200d09353e8f0f222c/download", + "logs": "https://api.biosimulations.org/logs/672365200d09353e8f0f222c?includeOutput=true", + "log_yml": { + "duration": 1.783607, "exception": null, "output": "", "sedDocuments": [ { - "duration": 1.873194, + "duration": 1.4455, "exception": null, - "location": "tmp219922", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp219922:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp219922 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp860726", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp860726:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp860726 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -1217,7 +1217,7 @@ "status": "SUCCEEDED" } ], - "duration": 1.142981, + "duration": 0.872073, "exception": null, "id": "d1", "output": "", @@ -1239,7 +1239,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.408, + "duration": 0.321507, "exception": null, "id": "ex9", "output": "", @@ -1252,7 +1252,7 @@ "tasks": [ { "algorithm": "KISAO_0000019", - "duration": 0.217414, + "duration": 0.165095, "exception": null, "id": "sim1_net1", "output": "", @@ -1326,10 +1326,10 @@ }, "vcell": { "response": 201, - "view": "https://api.biosimulations.org/runs/67235bfa0d09353e8f0f1f36", - "download": "https://api.biosimulations.org/results/67235bfa0d09353e8f0f1f36/download", - "logs": "https://api.biosimulations.org/logs/67235bfa0d09353e8f0f1f36?includeOutput=true", - "log": { + "view": "https://api.biosimulations.org/runs/67236523b678b3883bb57531", + "download": "https://api.biosimulations.org/results/67236523b678b3883bb57531/download", + "logs": "https://api.biosimulations.org/logs/67236523b678b3883bb57531?includeOutput=true", + "log_yml": { "duration": null, "exception": null, "output": null, @@ -1340,11 +1340,11 @@ }, "xpp": { "response": 201, - "view": "https://api.biosimulations.org/runs/67235bfdb678b3883bb572d6", - "download": "https://api.biosimulations.org/results/67235bfdb678b3883bb572d6/download", - "logs": "https://api.biosimulations.org/logs/67235bfdb678b3883bb572d6?includeOutput=true", - "log": { - "duration": 0.094019, + "view": "https://api.biosimulations.org/runs/672365250d09353e8f0f2240", + "download": "https://api.biosimulations.org/results/672365250d09353e8f0f2240/download", + "logs": "https://api.biosimulations.org/logs/672365250d09353e8f0f2240?includeOutput=true", + "log_yml": { + "duration": 0.060589, "exception": { "message": "No module named 'libsbml'", "type": "ModuleNotFoundError" From 23a313a3c2a0a00a53aec8f99e52bc3548cf9507 Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Thu, 31 Oct 2024 11:26:00 +0000 Subject: [PATCH 17/24] Update results processing and handle empty log_yml_dict case --- .../results_compatibility_biosimulators.md | 46 +++++++++---------- SBML/tests/results_local.md | 46 +++++++++---------- SBML/tests/results_remote.md | 46 +++++++++---------- utils/__init__.py | 6 ++- 4 files changed, 73 insertions(+), 71 deletions(-) diff --git a/SBML/tests/results_compatibility_biosimulators.md b/SBML/tests/results_compatibility_biosimulators.md index 1b4c96dd..c674642c 100644 --- a/SBML/tests/results_compatibility_biosimulators.md +++ b/SBML/tests/results_compatibility_biosimulators.md @@ -1,23 +1,23 @@ -| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | -|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/

|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
|
❌ FAILview
download
logs

ERROR MESSAGE:
Reached maximum number of steps
|
❌ FAIL

ERROR MESSAGE:
Reached maximum number of steps
| plot | plot | -| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
did not run
| | | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | -| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
Noneview
download
logs
| ✅ PASS | | | -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file +| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | +|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------| +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
|
❌ FAILview
download
logs

ERROR MESSAGE:
Reached maximum number of steps
|
❌ FAIL

ERROR MESSAGE:
Reached maximum number of steps
| plot | plot | +| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|
✅ PASSview
download
logs
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.
| | | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | +| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
Noneview
download
logs
| ✅ PASS | | | +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file diff --git a/SBML/tests/results_local.md b/SBML/tests/results_local.md index 7aba4aed..9249bdcb 100644 --- a/SBML/tests/results_local.md +++ b/SBML/tests/results_local.md @@ -1,23 +1,23 @@ -| | Engine | pass / FAIL | Error | Type | d1 | Compatibility | links_error | -|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------|:----------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
❌ FAIL

ERROR MESSAGE:
Reached maximum number of steps
| Reached maximum number of steps | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
|

ERROR MESSAGE:
Reached maximum number of steps | -| 1 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 2 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`). | CombineArchiveExecutionError | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError | -| 3 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0). | CombineArchiveExecutionError | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError | -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | CombineArchiveExecutionError | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | CombineArchiveExecutionError | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
| ✅ PASS | | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
| ✅ PASS | | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000 | CombineArchiveExecutionError | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
| ✅ PASS | | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues . | CombineArchiveExecutionError | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError | -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
| CombineArchiveExecutionError | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError | -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`). | CombineArchiveExecutionError | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError | -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAIL

ERROR MESSAGE:
did not run
| did not run | | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|

ERROR MESSAGE:
did not run | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
| ✅ PASS | | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| | -| 19 |
vcellhttps://github.com/virtualcell/vcell
| ✅ PASS | | | |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
| | -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | \ No newline at end of file +| | Engine | exception_message | log_yml | pass / FAIL | Error | Type | d1 | Compatibility | links_error | +|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------|:----------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
| | {'duration': 14.132747, 'exception': None, 'output': '', 'sedDocuments': [{'duration': 13.817007, 'exception': None, 'location': 'tmp786909', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp786909:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp786909 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 0.812526, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.241448, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000496', 'duration': 12.641941, 'exception': None, 'id': 'sim1_net1', 'output': '2024-10-31 11:02:12.685 - amici.swig_wrappers - ERROR - [OTHER] AMICI simulation failed: Reached maximum number of steps 10000 before reaching tout at t=99.66.\r\n2024-10-31 11:02:12.685 - amici.swig_wrappers - DEBUG - [BACKTRACE] The previous error occurred at:\r\n2 0x7fa04db5fa8b /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0xb5a8b) [0x7fa04db5fa8b]\r\n3 0x7fa04dc53262 amici::Solver::run(double) const + 34\r\n4 0x7fa04dc8b5d0 amici::ForwardProblem::workForwardProblem() + 1728\r\n5 0x7fa04dc3f763 amici::runAmiciSimulation(amici::Solver&, amici::ExpData const*, amici::Model&, bool) + 435\r\n6 0x7fa04dbe9280 /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0x13f\r\n', 'simulatorDetails': [{'key': 'solver', 'value': 'amici.amici.CVodeSolver'}, {'key': 'method', 'value': 'amici.swig_wrappers.runAmiciSimulation'}, {'key': 'arguments', 'value': {}}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} |
❌ FAIL

ERROR MESSAGE:
Reached maximum number of steps
| Reached maximum number of steps | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
|

ERROR MESSAGE:
Reached maximum number of steps | +| 1 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1 | {'duration': 0.057493, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 2 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1 | {'duration': 0.69875, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).', 'type': 'CombineArchiveExecutionError'}, 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp792365` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 0.428374, 'exception': {'message': 'The SED document did not execute successfully:\n\n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).', 'type': 'SedmlExecutionError'}, 'location': 'tmp792365', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp792365:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp792365 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.234131, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.083012, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.025007, 'exception': {'message': 'Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL


ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError | The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`). | CombineArchiveExecutionError | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError | +| 3 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1 | {'duration': 0.784272, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).', 'type': 'CombineArchiveExecutionError'}, 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp133651` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 0.497757, 'exception': {'message': 'The SED document did not execute successfully:\n\n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).', 'type': 'SedmlExecutionError'}, 'location': 'tmp133651', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp133651:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp133651 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.267692, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.0693, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.033814, 'exception': {'message': 'Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL


ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError | The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0). | CombineArchiveExecutionError | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1 | {'duration': 0.805859, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'CombineArchiveExecutionError'}, 'output': "\r\nINFO: No xlwt module available, Excel spreadsheet creation disabled\r\n\r\n\r\n\r\nNo module named 'cplex'\r\n\r\n\r\n\r\nCPLEX not available\r\n\r\n*****\r\nUsing GLPK\r\n*****\r\n\r\n\r\nINFO: No xlrd module available, Excel spreadsheet reading disabled\r\n\r\nCBMPy environment\r\n******************\r\nRevision: r689\r\n\r\n\r\n***********************************************************************\r\n* Welcome to CBMPy (0.7.25) - PySCeS Constraint Based Modelling *\r\n* http://cbmpy.sourceforge.net *\r\n* Copyright(C) Brett G. Olivier 2014 - 2019 *\r\n* Dept. of Systems Bioinformatics *\r\n* Vrije Universiteit Amsterdam, Amsterdam, The Netherlands *\r\n* CBMPy is developed as part of the BeBasic MetaToolKit Project *\r\n* Distributed under the GNU GPL v 3.0 licence, see *\r\n* LICENCE (supplied with this release) for details *\r\n***********************************************************************\r\n\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp52097` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 0.418282, 'exception': {'message': 'The SED document did not execute successfully:\n\n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'SedmlExecutionError'}, 'location': 'tmp52097', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp52097:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp52097 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.221309, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.079128, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.030802, 'exception': {'message': 'UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
❌ FAIL


ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | CombineArchiveExecutionError | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1 | {'duration': 0.950844, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'CombineArchiveExecutionError'}, 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp465546` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 0.602993, 'exception': {'message': 'The SED document did not execute successfully:\n\n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'SedmlExecutionError'}, 'location': 'tmp465546', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp465546:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp465546 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.372064, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.067376, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.028576, 'exception': {'message': 'UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
❌ FAIL


ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | CombineArchiveExecutionError | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
| | {'duration': 1.737826, 'exception': None, 'output': "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp151470` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 1.40958, 'exception': None, 'location': 'tmp151470', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp151470:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp151470 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 0.935473, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.230881, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000560', 'duration': 0.149328, 'exception': None, 'id': 'sim1_net1', 'output': "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33m- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmp980qrvqt/./LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/kisao/utils.py:518: AlgorithmSubstitutedWarning: \x1b[33m'LSODA/LSODAR hybrid method' (KISAO_0000560) will be substituted for 'CVODE' (KISAO_0000019) at substitution policy 'SIMILAR_VARIABLES'.\x1b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", 'simulatorDetails': [{'key': 'methodName', 'value': 'lsoda'}, {'key': 'parameters', 'value': None}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} | ✅ PASS | | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/

| | {'duration': 1.585368, 'exception': None, 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp81130` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 1.223174, 'exception': None, 'location': 'tmp81130', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp81130:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp81130 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 0.681741, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.284383, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000088', 'duration': 0.147057, 'exception': None, 'id': 'sim1_net1', 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33m- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/kisao/utils.py:477: AlgorithmSubstitutedWarning: \x1b[33m'LSODA' (KISAO_0000088) will be substituted for 'CVODE'' (KISAO_0000019) at substitution policy 'SIMILAR_VARIABLES'.\x1b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", 'simulatorDetails': [{'key': 'method', 'value': 'gillespy2.solvers.numpy.ode_solver.ODESolver'}, {'key': 'arguments', 'value': {'integrator': 'lsoda'}}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} | ✅ PASS | | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/

| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1 | {'duration': 0.83023, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000', 'type': 'CombineArchiveExecutionError'}, 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp757460` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 0.506929, 'exception': {'message': 'The SED document did not execute successfully:\n\n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000', 'type': 'SedmlExecutionError'}, 'location': 'tmp757460', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp757460:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp757460 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.270793, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.071177, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.027768, 'exception': {'message': 'Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL


ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError | The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000 | CombineArchiveExecutionError | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
| | {'duration': 4.76121, 'exception': None, 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp920471` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 4.489787, 'exception': None, 'location': 'tmp920471', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp920471:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp920471 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 0.685787, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.34283, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000086', 'duration': 3.338995, 'exception': None, 'id': 'sim1_net1', 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33m- Variable `OUTPUT__of1_W_fnPop1_0_W` may be invalid.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` may be invalid.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` may be invalid.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` may be invalid.\r\n - XPath could not be validated.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmp80ayhgs9/./LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/kisao/utils.py:477: AlgorithmSubstitutedWarning: \x1b[33m'Fehlberg method' (KISAO_0000086) will be substituted for 'CVODE'' (KISAO_0000019) at substitution policy 'SIMILAR_VARIABLES'.\x1b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", 'simulatorDetails': [{'key': 'method', 'value': 'simulateSBMLFromFile'}, {'key': 'arguments', 'value': {'dt': 0.0001, 'method': 51, 'print_amount': 0, 'print_interval': 100, 'sim_time': 200.0, 'use_lazy_method': 0}}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} | ✅ PASS | | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/

| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1 | {'duration': 0.85876, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .\n \t`(model, errors) = validate_sbml_model(filename)`\n If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .', 'type': 'CombineArchiveExecutionError'}, 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \x1b[1;31mBioSimulatorsWarning\x1b[0m: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \x1b[1;31mBioSimulatorsWarning\x1b[0m: \x1b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp790915` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n", 'sedDocuments': [{'duration': 0.498037, 'exception': {'message': 'The SED document did not execute successfully:\n\n Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .\n \t`(model, errors) = validate_sbml_model(filename)`\n If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .', 'type': 'SedmlExecutionError'}, 'location': 'tmp790915', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp790915:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp790915 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.244133, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \x1b[1;31mIllogicalVizWarning\x1b[0m: \x1b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\x1b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \x1b[1;31mIllogicalVizWarning\x1b[0m: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \x1b[1;31mIllogicalVizWarning\x1b[0m: \x1b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \x1b[1;31mIllogicalVizWarning\x1b[0m: \x1b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.068723, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.055965, 'exception': {'message': 'Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .\n\t`(model, errors) = validate_sbml_model(filename)`\nIf the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .', 'type': 'MassSBMLError'}, 'id': 'sim1_net1', 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \x1b[1;31mBioSimulatorsWarning\x1b[0m: \x1b[33m- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\x1b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \x1b[1;31mBioSimulatorsWarning\x1b[0m: \x1b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmp1pm67k8b/./LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n\x1b[93mWARNING:\x1b[0m \x1b[93mSBML model is written as Level 2 Version 2, will attempt to convert the SBML model from Level 2 Version 2 to Level 3 Version 1 before parsing\x1b[0m\r\n", 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
❌ FAIL


ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError | The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues . | CombineArchiveExecutionError | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1 | {'duration': 0.758953, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1 | {'duration': 0.047164, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1 | {'duration': 0.170558, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1 | {'duration': 0.195727, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1 | {'duration': 1.939982, 'exception': {'message': "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", 'type': 'CombineArchiveExecutionError'}, 'output': "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp857735` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 1.644714, 'exception': {'message': "The SED document did not execute successfully:\n\n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", 'type': 'SedmlExecutionError'}, 'location': 'tmp857735', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp857735:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp857735 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ...Check SBML support is at action level 2\r\nSBML file is L2V2\r\n\r\n*******************************************************************\r\nIssues encountered in SBML translation (model processed anyway)\r\nSBML source: /tmp/tmpp3desvp0.xml\r\n*******************************************************************\r\n\r\nNo free species!? ... help I\'m confused! \r\n\r\n*******************************************************************\r\n\r\nWriting file: /tmp/tmpx3g93pi6.psc\r\n\r\nSBML2PSC\r\nin : /tmp/tmpp3desvp0.xml\r\nout: /tmp/tmpx3g93pi6.psc\r\nUsing model directory: /Pysces/psc\r\n/tmp/tmpx3g93pi6.psc loading ..... \r\nParsing file: /tmp/tmpx3g93pi6.psc\r\nInfo: No reagents have been fixed\r\nInfo: "I" has been initialised but does not occur in a rate equation\r\nInfo: "SEC" has been initialised but does not occur in a rate equation\r\nInfo: "V" has been initialised but does not occur in a rate equation\r\nInfo: "W" has been initialised but does not occur in a rate equation\r\n \r\n \x1b[31mfailed - \r\nUnable to generate Stoichiometric Matrix! model has:\r\n0 reactions\r\n0 species\r\nwhat did you have in mind?\r\n\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.358815, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.099216, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 1.069666, 'exception': {'message': '\nUnable to generate Stoichiometric Matrix! model has:\n0 reactions\n0 species\nwhat did you have in mind?\n', 'type': 'AssertionError'}, 'id': 'sim1_net1', 'output': '/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33m- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
❌ FAIL


ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError | The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
| CombineArchiveExecutionError | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError | +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1 | {'duration': 0.954315, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).', 'type': 'CombineArchiveExecutionError'}, 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp358640` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 0.425598, 'exception': {'message': 'The SED document did not execute successfully:\n\n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).', 'type': 'SedmlExecutionError'}, 'location': 'tmp358640', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp358640:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp358640 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.224934, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.072813, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.024417, 'exception': {'message': 'Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL


ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError | The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`). | CombineArchiveExecutionError | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1 | {} |
⚠ XFAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.
| Error unknown. The log.yml containing error information was not found. | | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found. | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
| | {'duration': 1.715951, 'exception': None, 'output': "/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n\r\n/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\x1b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp485772` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n\r\n", 'sedDocuments': [{'duration': 1.298982, 'exception': None, 'location': 'tmp485772', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp485772:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp485772 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 0.751484, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning:\r\n\r\n\x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n\r\n', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.246958, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000019', 'duration': 0.175517, 'exception': None, 'id': 'sim1_net1', 'output': "/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\x1b[33m- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\x1b[0m\r\n\r\n/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\x1b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmpovmjj26r/./LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n\r\n", 'simulatorDetails': [{'key': 'method', 'value': 'simulate'}, {'key': 'solver', 'value': 'cvode'}, {'key': 'relative_tolerance', 'value': 1e-06}, {'key': 'absolute_tolerance', 'value': 1e-12}, {'key': 'stiff', 'value': True}, {'key': 'maximum_bdf_order', 'value': 5}, {'key': 'maximum_adams_order', 'value': 12}, {'key': 'maximum_num_steps', 'value': 20000}, {'key': 'maximum_time_step', 'value': 0.0}, {'key': 'minimum_time_step', 'value': 0.0}, {'key': 'initial_time_step', 'value': 0.0}, {'key': 'multiple_steps', 'value': False}, {'key': 'variable_step_size', 'value': False}, {'key': 'max_output_rows', 'value': 100000}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} | ✅ PASS | | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| | +| 19 |
vcellhttps://github.com/virtualcell/vcell

| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1 | {'duration': 2, 'exception': None, 'output': 'Processing tmp232535. Done', 'sedDocuments': [], 'skipReason': None, 'status': 'SUCCEEDED'} | ✅ PASS | | | |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
| | +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1 | {'duration': 0.076306, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | \ No newline at end of file diff --git a/SBML/tests/results_remote.md b/SBML/tests/results_remote.md index 0388c0a8..0f3d0f2b 100644 --- a/SBML/tests/results_remote.md +++ b/SBML/tests/results_remote.md @@ -1,23 +1,23 @@ -| | Engine | response | view | download | logs | pass / FAIL | Error | Type | links | d1 | Compatibility | links_error | -|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|-----------:|:-------------------------------------------------------------|:-------------------------------------------------------------------------|:--------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
| 201 | https://api.biosimulations.org/runs/67224a98953bc3bf105ef9c7 | https://api.biosimulations.org/results/67224a98953bc3bf105ef9c7/download | https://api.biosimulations.org/logs/67224a98953bc3bf105ef9c7?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
Reached maximum number of steps
| Reached maximum number of steps | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
| view
download
logs

ERROR MESSAGE:
Reached maximum number of steps | -| 1 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/67224a9a953bc3bf105ef9ca | https://api.biosimulations.org/results/67224a9a953bc3bf105ef9ca/download | https://api.biosimulations.org/logs/67224a9a953bc3bf105ef9ca?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 2 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
| 201 | https://api.biosimulations.org/runs/67224a9cf9c43d155d41d432 | https://api.biosimulations.org/results/67224a9cf9c43d155d41d432/download | https://api.biosimulations.org/logs/67224a9cf9c43d155d41d432?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`). | CombineArchiveExecutionError | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError | -| 3 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
| 201 | https://api.biosimulations.org/runs/67224a9ff9c43d155d41d435 | https://api.biosimulations.org/results/67224a9ff9c43d155d41d435/download | https://api.biosimulations.org/logs/67224a9ff9c43d155d41d435?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0). | CombineArchiveExecutionError | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError | -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
| 201 | https://api.biosimulations.org/runs/67224aa12e0c0591a7c89863 | https://api.biosimulations.org/results/67224aa12e0c0591a7c89863/download | https://api.biosimulations.org/logs/67224aa12e0c0591a7c89863?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | CombineArchiveExecutionError | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
| 201 | https://api.biosimulations.org/runs/67224aa32e0c0591a7c89869 | https://api.biosimulations.org/results/67224aa32e0c0591a7c89869/download | https://api.biosimulations.org/logs/67224aa32e0c0591a7c89869?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | CombineArchiveExecutionError | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
| 201 | https://api.biosimulations.org/runs/67224aa6f9c43d155d41d43e | https://api.biosimulations.org/results/67224aa6f9c43d155d41d43e/download | https://api.biosimulations.org/logs/67224aa6f9c43d155d41d43e?includeOutput=true |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| view
download
logs | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
| 201 | https://api.biosimulations.org/runs/67224aa82e0c0591a7c8986f | https://api.biosimulations.org/results/67224aa82e0c0591a7c8986f/download | https://api.biosimulations.org/logs/67224aa82e0c0591a7c8986f?includeOutput=true |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| view
download
logs | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
| 201 | https://api.biosimulations.org/runs/67224aaaf9c43d155d41d448 | https://api.biosimulations.org/results/67224aaaf9c43d155d41d448/download | https://api.biosimulations.org/logs/67224aaaf9c43d155d41d448?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000 | CombineArchiveExecutionError | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
| 201 | https://api.biosimulations.org/runs/67224aac953bc3bf105ef9ed | https://api.biosimulations.org/results/67224aac953bc3bf105ef9ed/download | https://api.biosimulations.org/logs/67224aac953bc3bf105ef9ed?includeOutput=true |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| view
download
logs | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
| 201 | https://api.biosimulations.org/runs/67224aae2e0c0591a7c8988a | https://api.biosimulations.org/results/67224aae2e0c0591a7c8988a/download | https://api.biosimulations.org/logs/67224aae2e0c0591a7c8988a?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W | CombineArchiveExecutionError | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

The following targets are not supported:
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='V']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']
- /sbml:sbml/sbml:model/sbml:listOfParameters/sbml:parameter[@id='W']

Only following targets are supported:
- I
- SEC
- V
- W

ERROR TYPE:
CombineArchiveExecutionError | -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/67224ab0953bc3bf105efa03 | https://api.biosimulations.org/results/67224ab0953bc3bf105efa03/download | https://api.biosimulations.org/logs/67224ab0953bc3bf105efa03?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/67224ab22e0c0591a7c89898 | https://api.biosimulations.org/results/67224ab22e0c0591a7c89898/download | https://api.biosimulations.org/logs/67224ab22e0c0591a7c89898?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
| 201 | https://api.biosimulations.org/runs/67224ab5f9c43d155d41d476 | https://api.biosimulations.org/results/67224ab5f9c43d155d41d476/download | https://api.biosimulations.org/logs/67224ab5f9c43d155d41d476?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/67224ab7f9c43d155d41d47c | https://api.biosimulations.org/results/67224ab7f9c43d155d41d47c/download | https://api.biosimulations.org/logs/67224ab7f9c43d155d41d47c?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
| 201 | https://api.biosimulations.org/runs/67224ab9f9c43d155d41d48a | https://api.biosimulations.org/results/67224ab9f9c43d155d41d48a/download | https://api.biosimulations.org/logs/67224ab9f9c43d155d41d48a?includeOutput=true |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
| CombineArchiveExecutionError | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError | -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
| 201 | https://api.biosimulations.org/runs/67224abb2e0c0591a7c898cb | https://api.biosimulations.org/results/67224abb2e0c0591a7c898cb/download | https://api.biosimulations.org/logs/67224abb2e0c0591a7c898cb?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`). | CombineArchiveExecutionError | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError | -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
| 201 | https://api.biosimulations.org/runs/67224abef9c43d155d41d4a1 | https://api.biosimulations.org/results/67224abef9c43d155d41d4a1/download | https://api.biosimulations.org/logs/67224abef9c43d155d41d4a1?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
| 201 | https://api.biosimulations.org/runs/67224ac02e0c0591a7c898d7 | https://api.biosimulations.org/results/67224ac02e0c0591a7c898d7/download | https://api.biosimulations.org/logs/67224ac02e0c0591a7c898d7?includeOutput=true |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| view
download
logs | -| 19 |
vcellhttps://github.com/virtualcell/vcell
| 201 | https://api.biosimulations.org/runs/67224ac3f9c43d155d41d4be | https://api.biosimulations.org/results/67224ac3f9c43d155d41d4be/download | https://api.biosimulations.org/logs/67224ac3f9c43d155d41d4be?includeOutput=true |
Noneview
download
logs
| | | view
download
logs | |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
| view
download
logs | -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
| 201 | https://api.biosimulations.org/runs/67224ac6953bc3bf105efa68 | https://api.biosimulations.org/results/67224ac6953bc3bf105efa68/download | https://api.biosimulations.org/logs/67224ac6953bc3bf105efa68?includeOutput=true |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | \ No newline at end of file +| | Engine | response | view | download | logs | log_yml | pass / FAIL | Error | Type | links | d1 | Compatibility | links_error | +|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|-----------:|:-------------------------------------------------------------|:-------------------------------------------------------------------------|:--------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
| 201 | https://api.biosimulations.org/runs/672364ffb678b3883bb574ba | https://api.biosimulations.org/results/672364ffb678b3883bb574ba/download | https://api.biosimulations.org/logs/672364ffb678b3883bb574ba?includeOutput=true | {'duration': 19.478039, 'exception': None, 'output': '', 'sedDocuments': [{'duration': 19.098796, 'exception': None, 'location': 'tmp395914', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp395914:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp395914 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 0.756623, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.296161, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000496', 'duration': 17.966963, 'exception': None, 'id': 'sim1_net1', 'output': '2024-10-31 07:08:08.154 - amici.swig_wrappers - ERROR - [OTHER] AMICI simulation failed: Reached maximum number of steps 10000 before reaching tout at t=99.66.\r\n2024-10-31 07:08:08.154 - amici.swig_wrappers - DEBUG - [BACKTRACE] The previous error occurred at:\r\n2 0x7ffff3462a8b /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0xb5a8b) [0x7ffff3462a8b]\r\n3 0x7ffff3556262 amici::Solver::run(double) const + 34\r\n4 0x7ffff358e5d0 amici::ForwardProblem::workForwardProblem() + 1728\r\n5 0x7ffff3542763 amici::runAmiciSimulation(amici::Solver&, amici::ExpData const*, amici::Model&, bool) + 435\r\n6 0x7ffff34ec280 /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0x13f\r\n', 'simulatorDetails': [{'key': 'solver', 'value': 'amici.amici.CVodeSolver'}, {'key': 'method', 'value': 'amici.swig_wrappers.runAmiciSimulation'}, {'key': 'arguments', 'value': {}}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} |
❌ FAILview
download
logs

ERROR MESSAGE:
Reached maximum number of steps
| Reached maximum number of steps | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
| view
download
logs

ERROR MESSAGE:
Reached maximum number of steps | +| 1 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/67236501b678b3883bb574bd | https://api.biosimulations.org/results/67236501b678b3883bb574bd/download | https://api.biosimulations.org/logs/67236501b678b3883bb574bd?includeOutput=true | {'duration': 0.049725, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 2 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
| 201 | https://api.biosimulations.org/runs/672365030d09353e8f0f21c1 | https://api.biosimulations.org/results/672365030d09353e8f0f21c1/download | https://api.biosimulations.org/logs/672365030d09353e8f0f21c1?includeOutput=true | {'duration': 0.56944, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).', 'type': 'CombineArchiveExecutionError'}, 'output': '', 'sedDocuments': [{'duration': 0.32309, 'exception': {'message': 'The SED document did not execute successfully:\n\n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).', 'type': 'SedmlExecutionError'}, 'location': 'tmp908348', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp908348:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp908348 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.148064, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.05807, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.026347, 'exception': {'message': 'Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`). | CombineArchiveExecutionError | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError | +| 3 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
| 201 | https://api.biosimulations.org/runs/672365055a60072d20f42483 | https://api.biosimulations.org/results/672365055a60072d20f42483/download | https://api.biosimulations.org/logs/672365055a60072d20f42483?includeOutput=true | {'duration': 0.576474, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).', 'type': 'CombineArchiveExecutionError'}, 'output': '', 'sedDocuments': [{'duration': 0.331967, 'exception': {'message': 'The SED document did not execute successfully:\n\n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).', 'type': 'SedmlExecutionError'}, 'location': 'tmp444384', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp444384:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp444384 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.148167, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.065588, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.028671, 'exception': {'message': 'Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0). | CombineArchiveExecutionError | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
| 201 | https://api.biosimulations.org/runs/67236507b678b3883bb574c0 | https://api.biosimulations.org/results/67236507b678b3883bb574c0/download | https://api.biosimulations.org/logs/67236507b678b3883bb574c0?includeOutput=true | {'duration': 0.63583, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'CombineArchiveExecutionError'}, 'output': "\r\nINFO: No xlwt module available, Excel spreadsheet creation disabled\r\n\r\n\r\n\r\nNo module named 'cplex'\r\n\r\n\r\n\r\nCPLEX not available\r\n\r\n*****\r\nUsing GLPK\r\n*****\r\n\r\n\r\nINFO: No xlrd module available, Excel spreadsheet reading disabled\r\n\r\nCBMPy environment\r\n******************\r\nRevision: r689\r\n\r\n\r\n***********************************************************************\r\n* Welcome to CBMPy (0.7.25) - PySCeS Constraint Based Modelling *\r\n* http://cbmpy.sourceforge.net *\r\n* Copyright(C) Brett G. Olivier 2014 - 2019 *\r\n* Dept. of Systems Bioinformatics *\r\n* Vrije Universiteit Amsterdam, Amsterdam, The Netherlands *\r\n* CBMPy is developed as part of the BeBasic MetaToolKit Project *\r\n* Distributed under the GNU GPL v 3.0 licence, see *\r\n* LICENCE (supplied with this release) for details *\r\n***********************************************************************\r\n\r\n", 'sedDocuments': [{'duration': 0.30786, 'exception': {'message': 'The SED document did not execute successfully:\n\n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'SedmlExecutionError'}, 'location': 'tmp689225', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp689225:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp689225 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.14713, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.054685, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.027038, 'exception': {'message': 'UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | CombineArchiveExecutionError | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
| 201 | https://api.biosimulations.org/runs/672365095a60072d20f42488 | https://api.biosimulations.org/results/672365095a60072d20f42488/download | https://api.biosimulations.org/logs/672365095a60072d20f42488?includeOutput=true | {'duration': 0.617545, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'CombineArchiveExecutionError'}, 'output': '', 'sedDocuments': [{'duration': 0.342356, 'exception': {'message': 'The SED document did not execute successfully:\n\n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'SedmlExecutionError'}, 'location': 'tmp889066', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp889066:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp889066 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.170833, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.05885, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.02883, 'exception': {'message': 'UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | CombineArchiveExecutionError | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
| 201 | https://api.biosimulations.org/runs/6723650bb678b3883bb574c7 | https://api.biosimulations.org/results/6723650bb678b3883bb574c7/download | https://api.biosimulations.org/logs/6723650bb678b3883bb574c7?includeOutput=true | {'duration': 2.244487, 'exception': None, 'output': '', 'sedDocuments': [{'duration': 1.940251, 'exception': None, 'location': 'tmp197540', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp197540:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp197540 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 1.235795, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.395562, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000560', 'duration': 0.23162, 'exception': None, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': [{'key': 'methodName', 'value': 'lsoda'}, {'key': 'parameters', 'value': None}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| view
download
logs | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
| 201 | https://api.biosimulations.org/runs/6723650db678b3883bb574cc | https://api.biosimulations.org/results/6723650db678b3883bb574cc/download | https://api.biosimulations.org/logs/6723650db678b3883bb574cc?includeOutput=true | {'duration': 1.691113, 'exception': None, 'output': '', 'sedDocuments': [{'duration': 1.441249, 'exception': None, 'location': 'tmp273421', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp273421:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp273421 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 0.823184, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.374279, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000088', 'duration': 0.165247, 'exception': None, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': [{'key': 'method', 'value': 'gillespy2.solvers.numpy.ode_solver.ODESolver'}, {'key': 'arguments', 'value': {'integrator': 'lsoda'}}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| view
download
logs | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
| 201 | https://api.biosimulations.org/runs/6723650f0d09353e8f0f21cc | https://api.biosimulations.org/results/6723650f0d09353e8f0f21cc/download | https://api.biosimulations.org/logs/6723650f0d09353e8f0f21cc?includeOutput=true | {'duration': 0.637362, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000', 'type': 'CombineArchiveExecutionError'}, 'output': '', 'sedDocuments': [{'duration': 0.35478, 'exception': {'message': 'The SED document did not execute successfully:\n\n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000', 'type': 'SedmlExecutionError'}, 'location': 'tmp464659', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp464659:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp464659 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.175627, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.06116, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.030889, 'exception': {'message': 'Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000 | CombineArchiveExecutionError | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
| 201 | https://api.biosimulations.org/runs/672365110d09353e8f0f21d1 | https://api.biosimulations.org/results/672365110d09353e8f0f21d1/download | https://api.biosimulations.org/logs/672365110d09353e8f0f21d1?includeOutput=true | {'duration': 9.430935, 'exception': None, 'output': '', 'sedDocuments': [{'duration': 9.147262, 'exception': None, 'location': 'tmp293345', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp293345:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp293345 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 1.069012, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.462325, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000086', 'duration': 7.510757, 'exception': None, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': [{'key': 'method', 'value': 'simulateSBMLFromFile'}, {'key': 'arguments', 'value': {'dt': 0.0001, 'method': 51, 'print_amount': 0, 'print_interval': 100, 'sim_time': 200.0, 'use_lazy_method': 0}}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| view
download
logs | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
| 201 | https://api.biosimulations.org/runs/672365125a60072d20f42493 | https://api.biosimulations.org/results/672365125a60072d20f42493/download | https://api.biosimulations.org/logs/672365125a60072d20f42493?includeOutput=true | {'duration': 2.548897, 'exception': None, 'output': '', 'sedDocuments': [{'duration': 1.975757, 'exception': None, 'location': 'tmp318145', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp318145:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp318145 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 1.190302, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.460042, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000019', 'duration': 0.219986, 'exception': None, 'id': 'sim1_net1', 'output': "\x1b[93mWARNING:\x1b[0m \x1b[93mModel does not contain SBML fbc package\x1b[0m\r\n\x1b[93mWARNING:\x1b[0m \x1b[93mModel does not contain SBML groups package\x1b[0m\r\n\x1b[93mWARNING:\x1b[0m \x1b[93mNo metabolites in model.\x1b[0m\r\n\x1b[93mWARNING:\x1b[0m \x1b[93mNo reactions in model.\x1b[0m\r\n\x1b[93mWARNING:\x1b[0m \x1b[93mNo compartments found in model. Therefore creating compartment 'compartment' for entire model.\x1b[0m\r\n", 'simulatorDetails': [{'key': 'integrator', 'value': 'cvode'}, {'key': 'relative_tolerance', 'value': 1e-06}, {'key': 'absolute_tolerance', 'value': 1e-12}, {'key': 'stiff', 'value': True}, {'key': 'maximum_bdf_order', 'value': 5}, {'key': 'maximum_adams_order', 'value': 12}, {'key': 'maximum_num_steps', 'value': 20000}, {'key': 'maximum_time_step', 'value': 0.0}, {'key': 'minimum_time_step', 'value': 0.0}, {'key': 'initial_time_step', 'value': 0.0}, {'key': 'multiple_steps', 'value': False}, {'key': 'variable_step_size', 'value': False}, {'key': 'max_output_rows', 'value': 100000}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
| view
download
logs | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/672365140d09353e8f0f21e0 | https://api.biosimulations.org/results/672365140d09353e8f0f21e0/download | https://api.biosimulations.org/logs/672365140d09353e8f0f21e0?includeOutput=true | {'duration': 0.063245, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/67236516b678b3883bb574de | https://api.biosimulations.org/results/67236516b678b3883bb574de/download | https://api.biosimulations.org/logs/67236516b678b3883bb574de?includeOutput=true | {'duration': 0.04694, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
| 201 | https://api.biosimulations.org/runs/672365170d09353e8f0f21fb | https://api.biosimulations.org/results/672365170d09353e8f0f21fb/download | https://api.biosimulations.org/logs/672365170d09353e8f0f21fb?includeOutput=true | {'duration': 0.018708, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/672365195a60072d20f424b8 | https://api.biosimulations.org/results/672365195a60072d20f424b8/download | https://api.biosimulations.org/logs/672365195a60072d20f424b8?includeOutput=true | {'duration': 0.041127, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
| 201 | https://api.biosimulations.org/runs/6723651bb678b3883bb57503 | https://api.biosimulations.org/results/6723651bb678b3883bb57503/download | https://api.biosimulations.org/logs/6723651bb678b3883bb57503?includeOutput=true | {'duration': 1.79334, 'exception': {'message': "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", 'type': 'CombineArchiveExecutionError'}, 'output': 'libtk8.6.so: cannot open shared object file: No such file or directory\r\n\r\nPySCeS defaults to matplotlib\'s TKagg backend if not specified in the user configuration file, set "matplotlib_backend = " \r\nMatplotlib interface loaded (pysces.plt.m)\r\nPitcon routines available\r\nNLEQ2 routines available\r\nSBML support available\r\nYou are using NumPy (2.1.2) with SciPy (1.14.1)\r\nAssimulo CVode available\r\nRateChar is available\r\nParallel scanner is available\r\n\r\nPySCeS environment\r\n******************\r\npysces.model_dir = /home/FCAM/crbmapi/Pysces/psc\r\npysces.output_dir = /home/FCAM/crbmapi/Pysces\r\n\r\n\r\n***********************************************************************\r\n* Welcome to PySCeS (1.2.2) - Python Simulator for Cellular Systems *\r\n* http://pysces.sourceforge.net *\r\n* Copyright(C) B.G. Olivier, J.M. Rohwer, J.-H.S. Hofmeyr, 2004-2024 *\r\n* Triple-J Group for Molecular Cell Physiology *\r\n* Stellenbosch University, ZA and VU University Amsterdam, NL *\r\n* PySCeS is distributed under the PySCeS (BSD style) licence, see *\r\n* LICENCE.txt (supplied with this release) for details *\r\n* Please cite PySCeS with: doi:10.1093/bioinformatics/bti046 *\r\n***********************************************************************\r\n', 'sedDocuments': [{'duration': 1.570343, 'exception': {'message': "The SED document did not execute successfully:\n\n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", 'type': 'SedmlExecutionError'}, 'location': 'tmp334490', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp334490:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp334490 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ...Check SBML support is at action level 2\r\nSBML file is L2V2\r\n\r\n*******************************************************************\r\nIssues encountered in SBML translation (model processed anyway)\r\nSBML source: /tmp/tmpyxj7t8de.xml\r\n*******************************************************************\r\n\r\nNo free species!? ... help I\'m confused! \r\n\r\n*******************************************************************\r\n\r\nWriting file: /tmp/tmpcqqq_2ah.psc\r\n\r\nSBML2PSC\r\nin : /tmp/tmpyxj7t8de.xml\r\nout: /tmp/tmpcqqq_2ah.psc\r\nUsing model directory: /home/FCAM/crbmapi/Pysces/psc\r\n/tmp/tmpcqqq_2ah.psc loading ..... \r\nParsing file: /tmp/tmpcqqq_2ah.psc\r\nInfo: No reagents have been fixed\r\nInfo: "I" has been initialised but does not occur in a rate equation\r\nInfo: "SEC" has been initialised but does not occur in a rate equation\r\nInfo: "V" has been initialised but does not occur in a rate equation\r\nInfo: "W" has been initialised but does not occur in a rate equation\r\n \r\n \x1b[31mfailed - \r\nUnable to generate Stoichiometric Matrix! model has:\r\n0 reactions\r\n0 species\r\nwhat did you have in mind?\r\n\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.355719, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.053872, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 1.084021, 'exception': {'message': '\nUnable to generate Stoichiometric Matrix! model has:\n0 reactions\n0 species\nwhat did you have in mind?\n', 'type': 'AssertionError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
| CombineArchiveExecutionError | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError | +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
| 201 | https://api.biosimulations.org/runs/6723651cb678b3883bb57506 | https://api.biosimulations.org/results/6723651cb678b3883bb57506/download | https://api.biosimulations.org/logs/6723651cb678b3883bb57506?includeOutput=true | {'duration': 0.631232, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).', 'type': 'CombineArchiveExecutionError'}, 'output': '', 'sedDocuments': [{'duration': 0.35197, 'exception': {'message': 'The SED document did not execute successfully:\n\n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).', 'type': 'SedmlExecutionError'}, 'location': 'tmp674654', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp674654:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp674654 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.173169, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.060541, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.029105, 'exception': {'message': 'Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`). | CombineArchiveExecutionError | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
| 201 | https://api.biosimulations.org/runs/6723651e0d09353e8f0f2222 | https://api.biosimulations.org/results/6723651e0d09353e8f0f2222/download | https://api.biosimulations.org/logs/6723651e0d09353e8f0f2222?includeOutput=true | {'duration': 0.062326, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
| 201 | https://api.biosimulations.org/runs/672365200d09353e8f0f222c | https://api.biosimulations.org/results/672365200d09353e8f0f222c/download | https://api.biosimulations.org/logs/672365200d09353e8f0f222c?includeOutput=true | {'duration': 1.783607, 'exception': None, 'output': '', 'sedDocuments': [{'duration': 1.4455, 'exception': None, 'location': 'tmp860726', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp860726:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp860726 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 0.872073, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.321507, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000019', 'duration': 0.165095, 'exception': None, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': [{'key': 'method', 'value': 'simulate'}, {'key': 'solver', 'value': 'cvode'}, {'key': 'relative_tolerance', 'value': 1e-06}, {'key': 'absolute_tolerance', 'value': 1e-12}, {'key': 'stiff', 'value': True}, {'key': 'maximum_bdf_order', 'value': 5}, {'key': 'maximum_adams_order', 'value': 12}, {'key': 'maximum_num_steps', 'value': 20000}, {'key': 'maximum_time_step', 'value': 0.0}, {'key': 'minimum_time_step', 'value': 0.0}, {'key': 'initial_time_step', 'value': 0.0}, {'key': 'multiple_steps', 'value': False}, {'key': 'variable_step_size', 'value': False}, {'key': 'max_output_rows', 'value': 100000}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| view
download
logs | +| 19 |
vcellhttps://github.com/virtualcell/vcell
| 201 | https://api.biosimulations.org/runs/67236523b678b3883bb57531 | https://api.biosimulations.org/results/67236523b678b3883bb57531/download | https://api.biosimulations.org/logs/67236523b678b3883bb57531?includeOutput=true | {'duration': None, 'exception': None, 'output': None, 'sedDocuments': [], 'skipReason': None, 'status': 'QUEUED'} |
Noneview
download
logs
| | | view
download
logs | |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
| view
download
logs | +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
| 201 | https://api.biosimulations.org/runs/672365250d09353e8f0f2240 | https://api.biosimulations.org/results/672365250d09353e8f0f2240/download | https://api.biosimulations.org/logs/672365250d09353e8f0f2240?includeOutput=true | {'duration': 0.060589, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | \ No newline at end of file diff --git a/utils/__init__.py b/utils/__init__.py index 7a2cc198..6d1eaddf 100644 --- a/utils/__init__.py +++ b/utils/__init__.py @@ -1031,9 +1031,8 @@ def create_results_table(results, sbml_filepath, sedml_filepath, output_dir): warning_html = "⚠ WARNING" xfail_html = "⚠ XFAIL" - results2 = {} for e in results.keys(): - results2[e] = process_log_yml_dict(results[e]["log_yml"]) + results[e].update(process_log_yml_dict(results[e]["log_yml"])) links = ['view', 'download', 'logs'] for e in results.keys(): @@ -1136,6 +1135,9 @@ def process_log_yml_dict(log_yml_dict): error_message = "" exception_type = "" + if log_yml_dict == {}: + return {"status":"FAIL", "error_message":"Error unknown. The log.yml containing error information was not found.","exception_type": ""} + log_yml_str = str(log_yml_dict) if log_yml_dict['status'] == 'SUCCEEDED': status = 'pass' From 052a952844cc33c7c5b252f10f03906e41ce9eee Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Thu, 31 Oct 2024 11:42:01 +0000 Subject: [PATCH 18/24] remove replaced function and update results tables --- .../results_compatibility_biosimulators.md | 42 ++++++++--------- SBML/tests/results_local.md | 46 +++++++++---------- SBML/tests/results_remote.md | 46 +++++++++---------- utils/__init__.py | 35 +------------- 4 files changed, 68 insertions(+), 101 deletions(-) diff --git a/SBML/tests/results_compatibility_biosimulators.md b/SBML/tests/results_compatibility_biosimulators.md index c674642c..1c4cae6c 100644 --- a/SBML/tests/results_compatibility_biosimulators.md +++ b/SBML/tests/results_compatibility_biosimulators.md @@ -1,23 +1,23 @@ | | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | |---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
|
❌ FAILview
download
logs

ERROR MESSAGE:
Reached maximum number of steps
|
❌ FAIL

ERROR MESSAGE:
Reached maximum number of steps
| plot | plot | -| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|
✅ PASSview
download
logs
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.
| | | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | -| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
Noneview
download
logs
| ✅ PASS | | | -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
|
❌ FAILview
download
logs

ERROR MESSAGE:
Reached maximum number of steps
|
❌ FAIL

ERROR MESSAGE:
Reached maximum number of steps
| plot | plot | +| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|
✅ PASSview
download
logs
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.
| | | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | +| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
Noneview
download
logs
| ✅ PASS | | | +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file diff --git a/SBML/tests/results_local.md b/SBML/tests/results_local.md index 9249bdcb..e28233b6 100644 --- a/SBML/tests/results_local.md +++ b/SBML/tests/results_local.md @@ -1,23 +1,23 @@ -| | Engine | exception_message | log_yml | pass / FAIL | Error | Type | d1 | Compatibility | links_error | -|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------|:----------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
| | {'duration': 14.132747, 'exception': None, 'output': '', 'sedDocuments': [{'duration': 13.817007, 'exception': None, 'location': 'tmp786909', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp786909:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp786909 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 0.812526, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.241448, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000496', 'duration': 12.641941, 'exception': None, 'id': 'sim1_net1', 'output': '2024-10-31 11:02:12.685 - amici.swig_wrappers - ERROR - [OTHER] AMICI simulation failed: Reached maximum number of steps 10000 before reaching tout at t=99.66.\r\n2024-10-31 11:02:12.685 - amici.swig_wrappers - DEBUG - [BACKTRACE] The previous error occurred at:\r\n2 0x7fa04db5fa8b /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0xb5a8b) [0x7fa04db5fa8b]\r\n3 0x7fa04dc53262 amici::Solver::run(double) const + 34\r\n4 0x7fa04dc8b5d0 amici::ForwardProblem::workForwardProblem() + 1728\r\n5 0x7fa04dc3f763 amici::runAmiciSimulation(amici::Solver&, amici::ExpData const*, amici::Model&, bool) + 435\r\n6 0x7fa04dbe9280 /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0x13f\r\n', 'simulatorDetails': [{'key': 'solver', 'value': 'amici.amici.CVodeSolver'}, {'key': 'method', 'value': 'amici.swig_wrappers.runAmiciSimulation'}, {'key': 'arguments', 'value': {}}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} |
❌ FAIL

ERROR MESSAGE:
Reached maximum number of steps
| Reached maximum number of steps | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
|

ERROR MESSAGE:
Reached maximum number of steps | -| 1 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1 | {'duration': 0.057493, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 2 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1 | {'duration': 0.69875, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).', 'type': 'CombineArchiveExecutionError'}, 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp792365` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 0.428374, 'exception': {'message': 'The SED document did not execute successfully:\n\n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).', 'type': 'SedmlExecutionError'}, 'location': 'tmp792365', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp792365:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp792365 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.234131, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.083012, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.025007, 'exception': {'message': 'Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL


ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError | The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`). | CombineArchiveExecutionError | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError | -| 3 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1 | {'duration': 0.784272, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).', 'type': 'CombineArchiveExecutionError'}, 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp133651` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 0.497757, 'exception': {'message': 'The SED document did not execute successfully:\n\n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).', 'type': 'SedmlExecutionError'}, 'location': 'tmp133651', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp133651:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp133651 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.267692, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.0693, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.033814, 'exception': {'message': 'Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL


ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError | The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0). | CombineArchiveExecutionError | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError | -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1 | {'duration': 0.805859, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'CombineArchiveExecutionError'}, 'output': "\r\nINFO: No xlwt module available, Excel spreadsheet creation disabled\r\n\r\n\r\n\r\nNo module named 'cplex'\r\n\r\n\r\n\r\nCPLEX not available\r\n\r\n*****\r\nUsing GLPK\r\n*****\r\n\r\n\r\nINFO: No xlrd module available, Excel spreadsheet reading disabled\r\n\r\nCBMPy environment\r\n******************\r\nRevision: r689\r\n\r\n\r\n***********************************************************************\r\n* Welcome to CBMPy (0.7.25) - PySCeS Constraint Based Modelling *\r\n* http://cbmpy.sourceforge.net *\r\n* Copyright(C) Brett G. Olivier 2014 - 2019 *\r\n* Dept. of Systems Bioinformatics *\r\n* Vrije Universiteit Amsterdam, Amsterdam, The Netherlands *\r\n* CBMPy is developed as part of the BeBasic MetaToolKit Project *\r\n* Distributed under the GNU GPL v 3.0 licence, see *\r\n* LICENCE (supplied with this release) for details *\r\n***********************************************************************\r\n\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp52097` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 0.418282, 'exception': {'message': 'The SED document did not execute successfully:\n\n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'SedmlExecutionError'}, 'location': 'tmp52097', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp52097:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp52097 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.221309, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.079128, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.030802, 'exception': {'message': 'UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
❌ FAIL


ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | CombineArchiveExecutionError | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1 | {'duration': 0.950844, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'CombineArchiveExecutionError'}, 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp465546` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 0.602993, 'exception': {'message': 'The SED document did not execute successfully:\n\n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'SedmlExecutionError'}, 'location': 'tmp465546', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp465546:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp465546 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.372064, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.067376, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.028576, 'exception': {'message': 'UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
❌ FAIL


ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | CombineArchiveExecutionError | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
| | {'duration': 1.737826, 'exception': None, 'output': "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp151470` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 1.40958, 'exception': None, 'location': 'tmp151470', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp151470:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp151470 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 0.935473, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.230881, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000560', 'duration': 0.149328, 'exception': None, 'id': 'sim1_net1', 'output': "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33m- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmp980qrvqt/./LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/kisao/utils.py:518: AlgorithmSubstitutedWarning: \x1b[33m'LSODA/LSODAR hybrid method' (KISAO_0000560) will be substituted for 'CVODE' (KISAO_0000019) at substitution policy 'SIMILAR_VARIABLES'.\x1b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", 'simulatorDetails': [{'key': 'methodName', 'value': 'lsoda'}, {'key': 'parameters', 'value': None}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} | ✅ PASS | | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/

| | {'duration': 1.585368, 'exception': None, 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp81130` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 1.223174, 'exception': None, 'location': 'tmp81130', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp81130:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp81130 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 0.681741, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.284383, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000088', 'duration': 0.147057, 'exception': None, 'id': 'sim1_net1', 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33m- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/kisao/utils.py:477: AlgorithmSubstitutedWarning: \x1b[33m'LSODA' (KISAO_0000088) will be substituted for 'CVODE'' (KISAO_0000019) at substitution policy 'SIMILAR_VARIABLES'.\x1b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", 'simulatorDetails': [{'key': 'method', 'value': 'gillespy2.solvers.numpy.ode_solver.ODESolver'}, {'key': 'arguments', 'value': {'integrator': 'lsoda'}}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} | ✅ PASS | | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/

| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1 | {'duration': 0.83023, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000', 'type': 'CombineArchiveExecutionError'}, 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp757460` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 0.506929, 'exception': {'message': 'The SED document did not execute successfully:\n\n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000', 'type': 'SedmlExecutionError'}, 'location': 'tmp757460', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp757460:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp757460 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.270793, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.071177, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.027768, 'exception': {'message': 'Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL


ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError | The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000 | CombineArchiveExecutionError | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
| | {'duration': 4.76121, 'exception': None, 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp920471` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 4.489787, 'exception': None, 'location': 'tmp920471', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp920471:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp920471 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 0.685787, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.34283, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000086', 'duration': 3.338995, 'exception': None, 'id': 'sim1_net1', 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33m- Variable `OUTPUT__of1_W_fnPop1_0_W` may be invalid.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` may be invalid.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` may be invalid.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` may be invalid.\r\n - XPath could not be validated.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmp80ayhgs9/./LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/kisao/utils.py:477: AlgorithmSubstitutedWarning: \x1b[33m'Fehlberg method' (KISAO_0000086) will be substituted for 'CVODE'' (KISAO_0000019) at substitution policy 'SIMILAR_VARIABLES'.\x1b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", 'simulatorDetails': [{'key': 'method', 'value': 'simulateSBMLFromFile'}, {'key': 'arguments', 'value': {'dt': 0.0001, 'method': 51, 'print_amount': 0, 'print_interval': 100, 'sim_time': 200.0, 'use_lazy_method': 0}}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} | ✅ PASS | | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/

| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1 | {'duration': 0.85876, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .\n \t`(model, errors) = validate_sbml_model(filename)`\n If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .', 'type': 'CombineArchiveExecutionError'}, 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \x1b[1;31mBioSimulatorsWarning\x1b[0m: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \x1b[1;31mBioSimulatorsWarning\x1b[0m: \x1b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp790915` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n", 'sedDocuments': [{'duration': 0.498037, 'exception': {'message': 'The SED document did not execute successfully:\n\n Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .\n \t`(model, errors) = validate_sbml_model(filename)`\n If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .', 'type': 'SedmlExecutionError'}, 'location': 'tmp790915', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp790915:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp790915 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.244133, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \x1b[1;31mIllogicalVizWarning\x1b[0m: \x1b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\x1b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \x1b[1;31mIllogicalVizWarning\x1b[0m: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \x1b[1;31mIllogicalVizWarning\x1b[0m: \x1b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \x1b[1;31mIllogicalVizWarning\x1b[0m: \x1b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.068723, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.055965, 'exception': {'message': 'Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .\n\t`(model, errors) = validate_sbml_model(filename)`\nIf the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .', 'type': 'MassSBMLError'}, 'id': 'sim1_net1', 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \x1b[1;31mBioSimulatorsWarning\x1b[0m: \x1b[33m- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\x1b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \x1b[1;31mBioSimulatorsWarning\x1b[0m: \x1b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmp1pm67k8b/./LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n\x1b[93mWARNING:\x1b[0m \x1b[93mSBML model is written as Level 2 Version 2, will attempt to convert the SBML model from Level 2 Version 2 to Level 3 Version 1 before parsing\x1b[0m\r\n", 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
❌ FAIL


ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError | The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues . | CombineArchiveExecutionError | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError | -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1 | {'duration': 0.758953, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1 | {'duration': 0.047164, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1 | {'duration': 0.170558, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1 | {'duration': 0.195727, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1 | {'duration': 1.939982, 'exception': {'message': "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", 'type': 'CombineArchiveExecutionError'}, 'output': "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp857735` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 1.644714, 'exception': {'message': "The SED document did not execute successfully:\n\n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", 'type': 'SedmlExecutionError'}, 'location': 'tmp857735', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp857735:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp857735 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ...Check SBML support is at action level 2\r\nSBML file is L2V2\r\n\r\n*******************************************************************\r\nIssues encountered in SBML translation (model processed anyway)\r\nSBML source: /tmp/tmpp3desvp0.xml\r\n*******************************************************************\r\n\r\nNo free species!? ... help I\'m confused! \r\n\r\n*******************************************************************\r\n\r\nWriting file: /tmp/tmpx3g93pi6.psc\r\n\r\nSBML2PSC\r\nin : /tmp/tmpp3desvp0.xml\r\nout: /tmp/tmpx3g93pi6.psc\r\nUsing model directory: /Pysces/psc\r\n/tmp/tmpx3g93pi6.psc loading ..... \r\nParsing file: /tmp/tmpx3g93pi6.psc\r\nInfo: No reagents have been fixed\r\nInfo: "I" has been initialised but does not occur in a rate equation\r\nInfo: "SEC" has been initialised but does not occur in a rate equation\r\nInfo: "V" has been initialised but does not occur in a rate equation\r\nInfo: "W" has been initialised but does not occur in a rate equation\r\n \r\n \x1b[31mfailed - \r\nUnable to generate Stoichiometric Matrix! model has:\r\n0 reactions\r\n0 species\r\nwhat did you have in mind?\r\n\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.358815, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.099216, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 1.069666, 'exception': {'message': '\nUnable to generate Stoichiometric Matrix! model has:\n0 reactions\n0 species\nwhat did you have in mind?\n', 'type': 'AssertionError'}, 'id': 'sim1_net1', 'output': '/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33m- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
❌ FAIL


ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError | The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
| CombineArchiveExecutionError | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError | -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1 | {'duration': 0.954315, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).', 'type': 'CombineArchiveExecutionError'}, 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp358640` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 0.425598, 'exception': {'message': 'The SED document did not execute successfully:\n\n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).', 'type': 'SedmlExecutionError'}, 'location': 'tmp358640', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp358640:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp358640 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.224934, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.072813, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.024417, 'exception': {'message': 'Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL


ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError | The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`). | CombineArchiveExecutionError | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError | -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1 | {} |
⚠ XFAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.
| Error unknown. The log.yml containing error information was not found. | | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found. | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
| | {'duration': 1.715951, 'exception': None, 'output': "/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n\r\n/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\x1b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp485772` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n\r\n", 'sedDocuments': [{'duration': 1.298982, 'exception': None, 'location': 'tmp485772', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp485772:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp485772 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 0.751484, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning:\r\n\r\n\x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n\r\n', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.246958, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000019', 'duration': 0.175517, 'exception': None, 'id': 'sim1_net1', 'output': "/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\x1b[33m- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\x1b[0m\r\n\r\n/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\x1b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmpovmjj26r/./LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n\r\n", 'simulatorDetails': [{'key': 'method', 'value': 'simulate'}, {'key': 'solver', 'value': 'cvode'}, {'key': 'relative_tolerance', 'value': 1e-06}, {'key': 'absolute_tolerance', 'value': 1e-12}, {'key': 'stiff', 'value': True}, {'key': 'maximum_bdf_order', 'value': 5}, {'key': 'maximum_adams_order', 'value': 12}, {'key': 'maximum_num_steps', 'value': 20000}, {'key': 'maximum_time_step', 'value': 0.0}, {'key': 'minimum_time_step', 'value': 0.0}, {'key': 'initial_time_step', 'value': 0.0}, {'key': 'multiple_steps', 'value': False}, {'key': 'variable_step_size', 'value': False}, {'key': 'max_output_rows', 'value': 100000}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} | ✅ PASS | | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| | -| 19 |
vcellhttps://github.com/virtualcell/vcell

| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1 | {'duration': 2, 'exception': None, 'output': 'Processing tmp232535. Done', 'sedDocuments': [], 'skipReason': None, 'status': 'SUCCEEDED'} | ✅ PASS | | | |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
| | -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1 | {'duration': 0.076306, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | \ No newline at end of file +| | Engine | exception_message | log_yml | pass / FAIL | Error | Type | d1 | Compatibility | links_error | +|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------|:----------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
| | {'duration': 13.105656, 'exception': None, 'output': '', 'sedDocuments': [{'duration': 12.727079, 'exception': None, 'location': 'tmp350269', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp350269:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp350269 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 0.72873, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.248659, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000496', 'duration': 11.606177, 'exception': None, 'id': 'sim1_net1', 'output': '2024-10-31 11:38:40.691 - amici.swig_wrappers - ERROR - [OTHER] AMICI simulation failed: Reached maximum number of steps 10000 before reaching tout at t=99.66.\r\n2024-10-31 11:38:40.692 - amici.swig_wrappers - DEBUG - [BACKTRACE] The previous error occurred at:\r\n2 0x7f17ea4eaa8b /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0xb5a8b) [0x7f17ea4eaa8b]\r\n3 0x7f17ea5de262 amici::Solver::run(double) const + 34\r\n4 0x7f17ea6165d0 amici::ForwardProblem::workForwardProblem() + 1728\r\n5 0x7f17ea5ca763 amici::runAmiciSimulation(amici::Solver&, amici::ExpData const*, amici::Model&, bool) + 435\r\n6 0x7f17ea574280 /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0x13f\r\n', 'simulatorDetails': [{'key': 'solver', 'value': 'amici.amici.CVodeSolver'}, {'key': 'method', 'value': 'amici.swig_wrappers.runAmiciSimulation'}, {'key': 'arguments', 'value': {}}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} |
❌ FAIL

ERROR MESSAGE:
Reached maximum number of steps
| Reached maximum number of steps | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
|

ERROR MESSAGE:
Reached maximum number of steps | +| 1 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1 | {'duration': 0.067568, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 2 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1 | {'duration': 0.737087, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).', 'type': 'CombineArchiveExecutionError'}, 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp608921` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 0.43764, 'exception': {'message': 'The SED document did not execute successfully:\n\n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).', 'type': 'SedmlExecutionError'}, 'location': 'tmp608921', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp608921:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp608921 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.236605, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.06783, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.02659, 'exception': {'message': 'Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL


ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError | The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`). | CombineArchiveExecutionError | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError | +| 3 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1 | {'duration': 0.816819, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).', 'type': 'CombineArchiveExecutionError'}, 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp501315` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 0.515492, 'exception': {'message': 'The SED document did not execute successfully:\n\n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).', 'type': 'SedmlExecutionError'}, 'location': 'tmp501315', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp501315:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp501315 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.31831, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.069656, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.027044, 'exception': {'message': 'Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL


ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError | The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0). | CombineArchiveExecutionError | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1 | {'duration': 0.961768, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'CombineArchiveExecutionError'}, 'output': "\r\nINFO: No xlwt module available, Excel spreadsheet creation disabled\r\n\r\n\r\n\r\nNo module named 'cplex'\r\n\r\n\r\n\r\nCPLEX not available\r\n\r\n*****\r\nUsing GLPK\r\n*****\r\n\r\n\r\nINFO: No xlrd module available, Excel spreadsheet reading disabled\r\n\r\nCBMPy environment\r\n******************\r\nRevision: r689\r\n\r\n\r\n***********************************************************************\r\n* Welcome to CBMPy (0.7.25) - PySCeS Constraint Based Modelling *\r\n* http://cbmpy.sourceforge.net *\r\n* Copyright(C) Brett G. Olivier 2014 - 2019 *\r\n* Dept. of Systems Bioinformatics *\r\n* Vrije Universiteit Amsterdam, Amsterdam, The Netherlands *\r\n* CBMPy is developed as part of the BeBasic MetaToolKit Project *\r\n* Distributed under the GNU GPL v 3.0 licence, see *\r\n* LICENCE (supplied with this release) for details *\r\n***********************************************************************\r\n\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp942400` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 0.484646, 'exception': {'message': 'The SED document did not execute successfully:\n\n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'SedmlExecutionError'}, 'location': 'tmp942400', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp942400:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp942400 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.2609, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.070918, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.02734, 'exception': {'message': 'UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
❌ FAIL


ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | CombineArchiveExecutionError | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1 | {'duration': 0.701509, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'CombineArchiveExecutionError'}, 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp159295` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 0.457999, 'exception': {'message': 'The SED document did not execute successfully:\n\n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'SedmlExecutionError'}, 'location': 'tmp159295', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp159295:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp159295 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.249986, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.076034, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.029343, 'exception': {'message': 'UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
❌ FAIL


ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | CombineArchiveExecutionError | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
| | {'duration': 1.812219, 'exception': None, 'output': "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp471146` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 1.486698, 'exception': None, 'location': 'tmp471146', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp471146:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp471146 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 0.940914, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.31251, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000560', 'duration': 0.148386, 'exception': None, 'id': 'sim1_net1', 'output': "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33m- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmp9ba4jon_/./LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/kisao/utils.py:518: AlgorithmSubstitutedWarning: \x1b[33m'LSODA/LSODAR hybrid method' (KISAO_0000560) will be substituted for 'CVODE' (KISAO_0000019) at substitution policy 'SIMILAR_VARIABLES'.\x1b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", 'simulatorDetails': [{'key': 'methodName', 'value': 'lsoda'}, {'key': 'parameters', 'value': None}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} | ✅ PASS | | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/

| | {'duration': 1.483088, 'exception': None, 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp929877` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 1.186108, 'exception': None, 'location': 'tmp929877', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp929877:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp929877 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 0.67845, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.273456, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000088', 'duration': 0.145111, 'exception': None, 'id': 'sim1_net1', 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33m- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/kisao/utils.py:477: AlgorithmSubstitutedWarning: \x1b[33m'LSODA' (KISAO_0000088) will be substituted for 'CVODE'' (KISAO_0000019) at substitution policy 'SIMILAR_VARIABLES'.\x1b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", 'simulatorDetails': [{'key': 'method', 'value': 'gillespy2.solvers.numpy.ode_solver.ODESolver'}, {'key': 'arguments', 'value': {'integrator': 'lsoda'}}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} | ✅ PASS | | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/

| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1 | {'duration': 0.648261, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000', 'type': 'CombineArchiveExecutionError'}, 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp912433` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 0.422886, 'exception': {'message': 'The SED document did not execute successfully:\n\n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000', 'type': 'SedmlExecutionError'}, 'location': 'tmp912433', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp912433:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp912433 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.255004, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.060209, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.028571, 'exception': {'message': 'Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL


ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError | The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000 | CombineArchiveExecutionError | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
| | {'duration': 4.565781, 'exception': None, 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp25687` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 4.26234, 'exception': None, 'location': 'tmp25687', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp25687:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp25687 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 0.691012, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.293304, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000086', 'duration': 3.163668, 'exception': None, 'id': 'sim1_net1', 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33m- Variable `DISPLAY__d1_W_fnPop1_0_W` may be invalid.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` may be invalid.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` may be invalid.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` may be invalid.\r\n - XPath could not be validated.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmppsvngun3/./LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/kisao/utils.py:477: AlgorithmSubstitutedWarning: \x1b[33m'Fehlberg method' (KISAO_0000086) will be substituted for 'CVODE'' (KISAO_0000019) at substitution policy 'SIMILAR_VARIABLES'.\x1b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", 'simulatorDetails': [{'key': 'method', 'value': 'simulateSBMLFromFile'}, {'key': 'arguments', 'value': {'dt': 0.0001, 'method': 51, 'print_amount': 0, 'print_interval': 100, 'sim_time': 200.0, 'use_lazy_method': 0}}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} | ✅ PASS | | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/

| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1 | {'duration': 0.724746, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .\n \t`(model, errors) = validate_sbml_model(filename)`\n If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .', 'type': 'CombineArchiveExecutionError'}, 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \x1b[1;31mBioSimulatorsWarning\x1b[0m: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \x1b[1;31mBioSimulatorsWarning\x1b[0m: \x1b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp506340` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n", 'sedDocuments': [{'duration': 0.456899, 'exception': {'message': 'The SED document did not execute successfully:\n\n Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .\n \t`(model, errors) = validate_sbml_model(filename)`\n If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .', 'type': 'SedmlExecutionError'}, 'location': 'tmp506340', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp506340:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp506340 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.241869, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \x1b[1;31mIllogicalVizWarning\x1b[0m: \x1b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\x1b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \x1b[1;31mIllogicalVizWarning\x1b[0m: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \x1b[1;31mIllogicalVizWarning\x1b[0m: \x1b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \x1b[1;31mIllogicalVizWarning\x1b[0m: \x1b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.061892, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.046902, 'exception': {'message': 'Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .\n\t`(model, errors) = validate_sbml_model(filename)`\nIf the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .', 'type': 'MassSBMLError'}, 'id': 'sim1_net1', 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \x1b[1;31mBioSimulatorsWarning\x1b[0m: \x1b[33m- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\x1b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \x1b[1;31mBioSimulatorsWarning\x1b[0m: \x1b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmpwky52hzk/./LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n\x1b[93mWARNING:\x1b[0m \x1b[93mSBML model is written as Level 2 Version 2, will attempt to convert the SBML model from Level 2 Version 2 to Level 3 Version 1 before parsing\x1b[0m\r\n", 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
❌ FAIL


ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError | The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues . | CombineArchiveExecutionError | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1 | {'duration': 0.049017, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1 | {'duration': 0.048303, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1 | {'duration': 0.044421, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1 | {'duration': 0.049457, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1 | {'duration': 2.024443, 'exception': {'message': "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", 'type': 'CombineArchiveExecutionError'}, 'output': "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp646866` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 1.715831, 'exception': {'message': "The SED document did not execute successfully:\n\n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", 'type': 'SedmlExecutionError'}, 'location': 'tmp646866', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp646866:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp646866 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ...Check SBML support is at action level 2\r\nSBML file is L2V2\r\n\r\n*******************************************************************\r\nIssues encountered in SBML translation (model processed anyway)\r\nSBML source: /tmp/tmp2f5_yedq.xml\r\n*******************************************************************\r\n\r\nNo free species!? ... help I\'m confused! \r\n\r\n*******************************************************************\r\n\r\nWriting file: /tmp/tmp5bkpfssd.psc\r\n\r\nSBML2PSC\r\nin : /tmp/tmp2f5_yedq.xml\r\nout: /tmp/tmp5bkpfssd.psc\r\nUsing model directory: /Pysces/psc\r\n/tmp/tmp5bkpfssd.psc loading ..... \r\nParsing file: /tmp/tmp5bkpfssd.psc\r\nInfo: No reagents have been fixed\r\nInfo: "I" has been initialised but does not occur in a rate equation\r\nInfo: "SEC" has been initialised but does not occur in a rate equation\r\nInfo: "V" has been initialised but does not occur in a rate equation\r\nInfo: "W" has been initialised but does not occur in a rate equation\r\n \r\n \x1b[31mfailed - \r\nUnable to generate Stoichiometric Matrix! model has:\r\n0 reactions\r\n0 species\r\nwhat did you have in mind?\r\n\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.280421, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.058464, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 1.164507, 'exception': {'message': '\nUnable to generate Stoichiometric Matrix! model has:\n0 reactions\n0 species\nwhat did you have in mind?\n', 'type': 'AssertionError'}, 'id': 'sim1_net1', 'output': '/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33m- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
❌ FAIL


ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError | The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
| CombineArchiveExecutionError | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError | +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1 | {'duration': 0.796532, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).', 'type': 'CombineArchiveExecutionError'}, 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp955994` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 0.432037, 'exception': {'message': 'The SED document did not execute successfully:\n\n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).', 'type': 'SedmlExecutionError'}, 'location': 'tmp955994', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp955994:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp955994 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.260269, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.067685, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.026084, 'exception': {'message': 'Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL


ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError | The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`). | CombineArchiveExecutionError | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1 | {} |
⚠ XFAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.
| Error unknown. The log.yml containing error information was not found. | | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found. | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
| | {'duration': 1.716917, 'exception': None, 'output': "/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n\r\n/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\x1b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp939328` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n\r\n", 'sedDocuments': [{'duration': 1.277972, 'exception': None, 'location': 'tmp939328', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp939328:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp939328 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 0.717851, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning:\r\n\r\n\x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n\r\n', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.276434, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000019', 'duration': 0.177556, 'exception': None, 'id': 'sim1_net1', 'output': "/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\x1b[33m- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\x1b[0m\r\n\r\n/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\x1b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmppw4b118x/./LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n\r\n", 'simulatorDetails': [{'key': 'method', 'value': 'simulate'}, {'key': 'solver', 'value': 'cvode'}, {'key': 'relative_tolerance', 'value': 1e-06}, {'key': 'absolute_tolerance', 'value': 1e-12}, {'key': 'stiff', 'value': True}, {'key': 'maximum_bdf_order', 'value': 5}, {'key': 'maximum_adams_order', 'value': 12}, {'key': 'maximum_num_steps', 'value': 20000}, {'key': 'maximum_time_step', 'value': 0.0}, {'key': 'minimum_time_step', 'value': 0.0}, {'key': 'initial_time_step', 'value': 0.0}, {'key': 'multiple_steps', 'value': False}, {'key': 'variable_step_size', 'value': False}, {'key': 'max_output_rows', 'value': 100000}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} | ✅ PASS | | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| | +| 19 |
vcellhttps://github.com/virtualcell/vcell

| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1 | {'duration': 2, 'exception': None, 'output': 'Processing tmp676765. Done', 'sedDocuments': [], 'skipReason': None, 'status': 'SUCCEEDED'} | ✅ PASS | | | |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
| | +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1 | {'duration': 0.053755, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | \ No newline at end of file diff --git a/SBML/tests/results_remote.md b/SBML/tests/results_remote.md index 0f3d0f2b..a3e13150 100644 --- a/SBML/tests/results_remote.md +++ b/SBML/tests/results_remote.md @@ -1,23 +1,23 @@ -| | Engine | response | view | download | logs | log_yml | pass / FAIL | Error | Type | links | d1 | Compatibility | links_error | -|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|-----------:|:-------------------------------------------------------------|:-------------------------------------------------------------------------|:--------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
| 201 | https://api.biosimulations.org/runs/672364ffb678b3883bb574ba | https://api.biosimulations.org/results/672364ffb678b3883bb574ba/download | https://api.biosimulations.org/logs/672364ffb678b3883bb574ba?includeOutput=true | {'duration': 19.478039, 'exception': None, 'output': '', 'sedDocuments': [{'duration': 19.098796, 'exception': None, 'location': 'tmp395914', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp395914:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp395914 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 0.756623, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.296161, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000496', 'duration': 17.966963, 'exception': None, 'id': 'sim1_net1', 'output': '2024-10-31 07:08:08.154 - amici.swig_wrappers - ERROR - [OTHER] AMICI simulation failed: Reached maximum number of steps 10000 before reaching tout at t=99.66.\r\n2024-10-31 07:08:08.154 - amici.swig_wrappers - DEBUG - [BACKTRACE] The previous error occurred at:\r\n2 0x7ffff3462a8b /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0xb5a8b) [0x7ffff3462a8b]\r\n3 0x7ffff3556262 amici::Solver::run(double) const + 34\r\n4 0x7ffff358e5d0 amici::ForwardProblem::workForwardProblem() + 1728\r\n5 0x7ffff3542763 amici::runAmiciSimulation(amici::Solver&, amici::ExpData const*, amici::Model&, bool) + 435\r\n6 0x7ffff34ec280 /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0x13f\r\n', 'simulatorDetails': [{'key': 'solver', 'value': 'amici.amici.CVodeSolver'}, {'key': 'method', 'value': 'amici.swig_wrappers.runAmiciSimulation'}, {'key': 'arguments', 'value': {}}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} |
❌ FAILview
download
logs

ERROR MESSAGE:
Reached maximum number of steps
| Reached maximum number of steps | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
| view
download
logs

ERROR MESSAGE:
Reached maximum number of steps | -| 1 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/67236501b678b3883bb574bd | https://api.biosimulations.org/results/67236501b678b3883bb574bd/download | https://api.biosimulations.org/logs/67236501b678b3883bb574bd?includeOutput=true | {'duration': 0.049725, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 2 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
| 201 | https://api.biosimulations.org/runs/672365030d09353e8f0f21c1 | https://api.biosimulations.org/results/672365030d09353e8f0f21c1/download | https://api.biosimulations.org/logs/672365030d09353e8f0f21c1?includeOutput=true | {'duration': 0.56944, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).', 'type': 'CombineArchiveExecutionError'}, 'output': '', 'sedDocuments': [{'duration': 0.32309, 'exception': {'message': 'The SED document did not execute successfully:\n\n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).', 'type': 'SedmlExecutionError'}, 'location': 'tmp908348', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp908348:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp908348 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.148064, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.05807, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.026347, 'exception': {'message': 'Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`). | CombineArchiveExecutionError | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError | -| 3 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
| 201 | https://api.biosimulations.org/runs/672365055a60072d20f42483 | https://api.biosimulations.org/results/672365055a60072d20f42483/download | https://api.biosimulations.org/logs/672365055a60072d20f42483?includeOutput=true | {'duration': 0.576474, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).', 'type': 'CombineArchiveExecutionError'}, 'output': '', 'sedDocuments': [{'duration': 0.331967, 'exception': {'message': 'The SED document did not execute successfully:\n\n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).', 'type': 'SedmlExecutionError'}, 'location': 'tmp444384', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp444384:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp444384 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.148167, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.065588, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.028671, 'exception': {'message': 'Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0). | CombineArchiveExecutionError | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError | -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
| 201 | https://api.biosimulations.org/runs/67236507b678b3883bb574c0 | https://api.biosimulations.org/results/67236507b678b3883bb574c0/download | https://api.biosimulations.org/logs/67236507b678b3883bb574c0?includeOutput=true | {'duration': 0.63583, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'CombineArchiveExecutionError'}, 'output': "\r\nINFO: No xlwt module available, Excel spreadsheet creation disabled\r\n\r\n\r\n\r\nNo module named 'cplex'\r\n\r\n\r\n\r\nCPLEX not available\r\n\r\n*****\r\nUsing GLPK\r\n*****\r\n\r\n\r\nINFO: No xlrd module available, Excel spreadsheet reading disabled\r\n\r\nCBMPy environment\r\n******************\r\nRevision: r689\r\n\r\n\r\n***********************************************************************\r\n* Welcome to CBMPy (0.7.25) - PySCeS Constraint Based Modelling *\r\n* http://cbmpy.sourceforge.net *\r\n* Copyright(C) Brett G. Olivier 2014 - 2019 *\r\n* Dept. of Systems Bioinformatics *\r\n* Vrije Universiteit Amsterdam, Amsterdam, The Netherlands *\r\n* CBMPy is developed as part of the BeBasic MetaToolKit Project *\r\n* Distributed under the GNU GPL v 3.0 licence, see *\r\n* LICENCE (supplied with this release) for details *\r\n***********************************************************************\r\n\r\n", 'sedDocuments': [{'duration': 0.30786, 'exception': {'message': 'The SED document did not execute successfully:\n\n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'SedmlExecutionError'}, 'location': 'tmp689225', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp689225:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp689225 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.14713, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.054685, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.027038, 'exception': {'message': 'UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | CombineArchiveExecutionError | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
| 201 | https://api.biosimulations.org/runs/672365095a60072d20f42488 | https://api.biosimulations.org/results/672365095a60072d20f42488/download | https://api.biosimulations.org/logs/672365095a60072d20f42488?includeOutput=true | {'duration': 0.617545, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'CombineArchiveExecutionError'}, 'output': '', 'sedDocuments': [{'duration': 0.342356, 'exception': {'message': 'The SED document did not execute successfully:\n\n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'SedmlExecutionError'}, 'location': 'tmp889066', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp889066:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp889066 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.170833, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.05885, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.02883, 'exception': {'message': 'UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | CombineArchiveExecutionError | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
| 201 | https://api.biosimulations.org/runs/6723650bb678b3883bb574c7 | https://api.biosimulations.org/results/6723650bb678b3883bb574c7/download | https://api.biosimulations.org/logs/6723650bb678b3883bb574c7?includeOutput=true | {'duration': 2.244487, 'exception': None, 'output': '', 'sedDocuments': [{'duration': 1.940251, 'exception': None, 'location': 'tmp197540', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp197540:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp197540 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 1.235795, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.395562, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000560', 'duration': 0.23162, 'exception': None, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': [{'key': 'methodName', 'value': 'lsoda'}, {'key': 'parameters', 'value': None}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| view
download
logs | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
| 201 | https://api.biosimulations.org/runs/6723650db678b3883bb574cc | https://api.biosimulations.org/results/6723650db678b3883bb574cc/download | https://api.biosimulations.org/logs/6723650db678b3883bb574cc?includeOutput=true | {'duration': 1.691113, 'exception': None, 'output': '', 'sedDocuments': [{'duration': 1.441249, 'exception': None, 'location': 'tmp273421', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp273421:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp273421 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 0.823184, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.374279, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000088', 'duration': 0.165247, 'exception': None, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': [{'key': 'method', 'value': 'gillespy2.solvers.numpy.ode_solver.ODESolver'}, {'key': 'arguments', 'value': {'integrator': 'lsoda'}}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| view
download
logs | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
| 201 | https://api.biosimulations.org/runs/6723650f0d09353e8f0f21cc | https://api.biosimulations.org/results/6723650f0d09353e8f0f21cc/download | https://api.biosimulations.org/logs/6723650f0d09353e8f0f21cc?includeOutput=true | {'duration': 0.637362, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000', 'type': 'CombineArchiveExecutionError'}, 'output': '', 'sedDocuments': [{'duration': 0.35478, 'exception': {'message': 'The SED document did not execute successfully:\n\n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000', 'type': 'SedmlExecutionError'}, 'location': 'tmp464659', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp464659:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp464659 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.175627, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.06116, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.030889, 'exception': {'message': 'Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000 | CombineArchiveExecutionError | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
| 201 | https://api.biosimulations.org/runs/672365110d09353e8f0f21d1 | https://api.biosimulations.org/results/672365110d09353e8f0f21d1/download | https://api.biosimulations.org/logs/672365110d09353e8f0f21d1?includeOutput=true | {'duration': 9.430935, 'exception': None, 'output': '', 'sedDocuments': [{'duration': 9.147262, 'exception': None, 'location': 'tmp293345', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp293345:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp293345 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 1.069012, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.462325, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000086', 'duration': 7.510757, 'exception': None, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': [{'key': 'method', 'value': 'simulateSBMLFromFile'}, {'key': 'arguments', 'value': {'dt': 0.0001, 'method': 51, 'print_amount': 0, 'print_interval': 100, 'sim_time': 200.0, 'use_lazy_method': 0}}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| view
download
logs | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
| 201 | https://api.biosimulations.org/runs/672365125a60072d20f42493 | https://api.biosimulations.org/results/672365125a60072d20f42493/download | https://api.biosimulations.org/logs/672365125a60072d20f42493?includeOutput=true | {'duration': 2.548897, 'exception': None, 'output': '', 'sedDocuments': [{'duration': 1.975757, 'exception': None, 'location': 'tmp318145', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp318145:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp318145 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 1.190302, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.460042, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000019', 'duration': 0.219986, 'exception': None, 'id': 'sim1_net1', 'output': "\x1b[93mWARNING:\x1b[0m \x1b[93mModel does not contain SBML fbc package\x1b[0m\r\n\x1b[93mWARNING:\x1b[0m \x1b[93mModel does not contain SBML groups package\x1b[0m\r\n\x1b[93mWARNING:\x1b[0m \x1b[93mNo metabolites in model.\x1b[0m\r\n\x1b[93mWARNING:\x1b[0m \x1b[93mNo reactions in model.\x1b[0m\r\n\x1b[93mWARNING:\x1b[0m \x1b[93mNo compartments found in model. Therefore creating compartment 'compartment' for entire model.\x1b[0m\r\n", 'simulatorDetails': [{'key': 'integrator', 'value': 'cvode'}, {'key': 'relative_tolerance', 'value': 1e-06}, {'key': 'absolute_tolerance', 'value': 1e-12}, {'key': 'stiff', 'value': True}, {'key': 'maximum_bdf_order', 'value': 5}, {'key': 'maximum_adams_order', 'value': 12}, {'key': 'maximum_num_steps', 'value': 20000}, {'key': 'maximum_time_step', 'value': 0.0}, {'key': 'minimum_time_step', 'value': 0.0}, {'key': 'initial_time_step', 'value': 0.0}, {'key': 'multiple_steps', 'value': False}, {'key': 'variable_step_size', 'value': False}, {'key': 'max_output_rows', 'value': 100000}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
| view
download
logs | -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/672365140d09353e8f0f21e0 | https://api.biosimulations.org/results/672365140d09353e8f0f21e0/download | https://api.biosimulations.org/logs/672365140d09353e8f0f21e0?includeOutput=true | {'duration': 0.063245, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/67236516b678b3883bb574de | https://api.biosimulations.org/results/67236516b678b3883bb574de/download | https://api.biosimulations.org/logs/67236516b678b3883bb574de?includeOutput=true | {'duration': 0.04694, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
| 201 | https://api.biosimulations.org/runs/672365170d09353e8f0f21fb | https://api.biosimulations.org/results/672365170d09353e8f0f21fb/download | https://api.biosimulations.org/logs/672365170d09353e8f0f21fb?includeOutput=true | {'duration': 0.018708, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/672365195a60072d20f424b8 | https://api.biosimulations.org/results/672365195a60072d20f424b8/download | https://api.biosimulations.org/logs/672365195a60072d20f424b8?includeOutput=true | {'duration': 0.041127, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
| 201 | https://api.biosimulations.org/runs/6723651bb678b3883bb57503 | https://api.biosimulations.org/results/6723651bb678b3883bb57503/download | https://api.biosimulations.org/logs/6723651bb678b3883bb57503?includeOutput=true | {'duration': 1.79334, 'exception': {'message': "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", 'type': 'CombineArchiveExecutionError'}, 'output': 'libtk8.6.so: cannot open shared object file: No such file or directory\r\n\r\nPySCeS defaults to matplotlib\'s TKagg backend if not specified in the user configuration file, set "matplotlib_backend = " \r\nMatplotlib interface loaded (pysces.plt.m)\r\nPitcon routines available\r\nNLEQ2 routines available\r\nSBML support available\r\nYou are using NumPy (2.1.2) with SciPy (1.14.1)\r\nAssimulo CVode available\r\nRateChar is available\r\nParallel scanner is available\r\n\r\nPySCeS environment\r\n******************\r\npysces.model_dir = /home/FCAM/crbmapi/Pysces/psc\r\npysces.output_dir = /home/FCAM/crbmapi/Pysces\r\n\r\n\r\n***********************************************************************\r\n* Welcome to PySCeS (1.2.2) - Python Simulator for Cellular Systems *\r\n* http://pysces.sourceforge.net *\r\n* Copyright(C) B.G. Olivier, J.M. Rohwer, J.-H.S. Hofmeyr, 2004-2024 *\r\n* Triple-J Group for Molecular Cell Physiology *\r\n* Stellenbosch University, ZA and VU University Amsterdam, NL *\r\n* PySCeS is distributed under the PySCeS (BSD style) licence, see *\r\n* LICENCE.txt (supplied with this release) for details *\r\n* Please cite PySCeS with: doi:10.1093/bioinformatics/bti046 *\r\n***********************************************************************\r\n', 'sedDocuments': [{'duration': 1.570343, 'exception': {'message': "The SED document did not execute successfully:\n\n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", 'type': 'SedmlExecutionError'}, 'location': 'tmp334490', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp334490:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp334490 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ...Check SBML support is at action level 2\r\nSBML file is L2V2\r\n\r\n*******************************************************************\r\nIssues encountered in SBML translation (model processed anyway)\r\nSBML source: /tmp/tmpyxj7t8de.xml\r\n*******************************************************************\r\n\r\nNo free species!? ... help I\'m confused! \r\n\r\n*******************************************************************\r\n\r\nWriting file: /tmp/tmpcqqq_2ah.psc\r\n\r\nSBML2PSC\r\nin : /tmp/tmpyxj7t8de.xml\r\nout: /tmp/tmpcqqq_2ah.psc\r\nUsing model directory: /home/FCAM/crbmapi/Pysces/psc\r\n/tmp/tmpcqqq_2ah.psc loading ..... \r\nParsing file: /tmp/tmpcqqq_2ah.psc\r\nInfo: No reagents have been fixed\r\nInfo: "I" has been initialised but does not occur in a rate equation\r\nInfo: "SEC" has been initialised but does not occur in a rate equation\r\nInfo: "V" has been initialised but does not occur in a rate equation\r\nInfo: "W" has been initialised but does not occur in a rate equation\r\n \r\n \x1b[31mfailed - \r\nUnable to generate Stoichiometric Matrix! model has:\r\n0 reactions\r\n0 species\r\nwhat did you have in mind?\r\n\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.355719, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.053872, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 1.084021, 'exception': {'message': '\nUnable to generate Stoichiometric Matrix! model has:\n0 reactions\n0 species\nwhat did you have in mind?\n', 'type': 'AssertionError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
| CombineArchiveExecutionError | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError | -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
| 201 | https://api.biosimulations.org/runs/6723651cb678b3883bb57506 | https://api.biosimulations.org/results/6723651cb678b3883bb57506/download | https://api.biosimulations.org/logs/6723651cb678b3883bb57506?includeOutput=true | {'duration': 0.631232, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).', 'type': 'CombineArchiveExecutionError'}, 'output': '', 'sedDocuments': [{'duration': 0.35197, 'exception': {'message': 'The SED document did not execute successfully:\n\n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).', 'type': 'SedmlExecutionError'}, 'location': 'tmp674654', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp674654:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp674654 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.173169, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.060541, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.029105, 'exception': {'message': 'Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`). | CombineArchiveExecutionError | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError | -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
| 201 | https://api.biosimulations.org/runs/6723651e0d09353e8f0f2222 | https://api.biosimulations.org/results/6723651e0d09353e8f0f2222/download | https://api.biosimulations.org/logs/6723651e0d09353e8f0f2222?includeOutput=true | {'duration': 0.062326, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
| 201 | https://api.biosimulations.org/runs/672365200d09353e8f0f222c | https://api.biosimulations.org/results/672365200d09353e8f0f222c/download | https://api.biosimulations.org/logs/672365200d09353e8f0f222c?includeOutput=true | {'duration': 1.783607, 'exception': None, 'output': '', 'sedDocuments': [{'duration': 1.4455, 'exception': None, 'location': 'tmp860726', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp860726:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp860726 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 0.872073, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.321507, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000019', 'duration': 0.165095, 'exception': None, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': [{'key': 'method', 'value': 'simulate'}, {'key': 'solver', 'value': 'cvode'}, {'key': 'relative_tolerance', 'value': 1e-06}, {'key': 'absolute_tolerance', 'value': 1e-12}, {'key': 'stiff', 'value': True}, {'key': 'maximum_bdf_order', 'value': 5}, {'key': 'maximum_adams_order', 'value': 12}, {'key': 'maximum_num_steps', 'value': 20000}, {'key': 'maximum_time_step', 'value': 0.0}, {'key': 'minimum_time_step', 'value': 0.0}, {'key': 'initial_time_step', 'value': 0.0}, {'key': 'multiple_steps', 'value': False}, {'key': 'variable_step_size', 'value': False}, {'key': 'max_output_rows', 'value': 100000}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| view
download
logs | -| 19 |
vcellhttps://github.com/virtualcell/vcell
| 201 | https://api.biosimulations.org/runs/67236523b678b3883bb57531 | https://api.biosimulations.org/results/67236523b678b3883bb57531/download | https://api.biosimulations.org/logs/67236523b678b3883bb57531?includeOutput=true | {'duration': None, 'exception': None, 'output': None, 'sedDocuments': [], 'skipReason': None, 'status': 'QUEUED'} |
Noneview
download
logs
| | | view
download
logs | |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
| view
download
logs | -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
| 201 | https://api.biosimulations.org/runs/672365250d09353e8f0f2240 | https://api.biosimulations.org/results/672365250d09353e8f0f2240/download | https://api.biosimulations.org/logs/672365250d09353e8f0f2240?includeOutput=true | {'duration': 0.060589, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | \ No newline at end of file +| | Engine | response | view | download | logs | log_yml | pass / FAIL | Error | Type | links | d1 | Compatibility | links_error | +|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|-----------:|:-------------------------------------------------------------|:-------------------------------------------------------------------------|:--------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
| 201 | https://api.biosimulations.org/runs/67236be3b678b3883bb58255 | https://api.biosimulations.org/results/67236be3b678b3883bb58255/download | https://api.biosimulations.org/logs/67236be3b678b3883bb58255?includeOutput=true | {'duration': 19.462887, 'exception': None, 'output': '', 'sedDocuments': [{'duration': 19.087105, 'exception': None, 'location': 'tmp272581', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp272581:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp272581 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 0.76949, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.30808, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000496', 'duration': 17.918194, 'exception': None, 'id': 'sim1_net1', 'output': '2024-10-31 07:37:31.795 - amici.swig_wrappers - ERROR - [OTHER] AMICI simulation failed: Reached maximum number of steps 10000 before reaching tout at t=99.66.\r\n2024-10-31 07:37:31.795 - amici.swig_wrappers - DEBUG - [BACKTRACE] The previous error occurred at:\r\n2 0x7ffff3462a8b /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0xb5a8b) [0x7ffff3462a8b]\r\n3 0x7ffff3556262 amici::Solver::run(double) const + 34\r\n4 0x7ffff358e5d0 amici::ForwardProblem::workForwardProblem() + 1728\r\n5 0x7ffff3542763 amici::runAmiciSimulation(amici::Solver&, amici::ExpData const*, amici::Model&, bool) + 435\r\n6 0x7ffff34ec280 /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0x13f\r\n', 'simulatorDetails': [{'key': 'solver', 'value': 'amici.amici.CVodeSolver'}, {'key': 'method', 'value': 'amici.swig_wrappers.runAmiciSimulation'}, {'key': 'arguments', 'value': {}}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} |
❌ FAILview
download
logs

ERROR MESSAGE:
Reached maximum number of steps
| Reached maximum number of steps | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
| view
download
logs

ERROR MESSAGE:
Reached maximum number of steps | +| 1 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/67236be50d09353e8f0f2f1b | https://api.biosimulations.org/results/67236be50d09353e8f0f2f1b/download | https://api.biosimulations.org/logs/67236be50d09353e8f0f2f1b?includeOutput=true | {'duration': 0.057608, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 2 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
| 201 | https://api.biosimulations.org/runs/67236be75a60072d20f43152 | https://api.biosimulations.org/results/67236be75a60072d20f43152/download | https://api.biosimulations.org/logs/67236be75a60072d20f43152?includeOutput=true | {'duration': 0.629798, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).', 'type': 'CombineArchiveExecutionError'}, 'output': '', 'sedDocuments': [{'duration': 0.355116, 'exception': {'message': 'The SED document did not execute successfully:\n\n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).', 'type': 'SedmlExecutionError'}, 'location': 'tmp592148', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp592148:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp592148 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.183017, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.059794, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.028318, 'exception': {'message': 'Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`). | CombineArchiveExecutionError | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError | +| 3 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
| 201 | https://api.biosimulations.org/runs/67236be8b678b3883bb5825b | https://api.biosimulations.org/results/67236be8b678b3883bb5825b/download | https://api.biosimulations.org/logs/67236be8b678b3883bb5825b?includeOutput=true | {'duration': 0.648446, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).', 'type': 'CombineArchiveExecutionError'}, 'output': '', 'sedDocuments': [{'duration': 0.378495, 'exception': {'message': 'The SED document did not execute successfully:\n\n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).', 'type': 'SedmlExecutionError'}, 'location': 'tmp294989', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp294989:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp294989 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.18909, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.066243, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.032772, 'exception': {'message': 'Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0). | CombineArchiveExecutionError | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
| 201 | https://api.biosimulations.org/runs/67236bea0d09353e8f0f2f1f | https://api.biosimulations.org/results/67236bea0d09353e8f0f2f1f/download | https://api.biosimulations.org/logs/67236bea0d09353e8f0f2f1f?includeOutput=true | {'duration': 0.824589, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'CombineArchiveExecutionError'}, 'output': "\r\nINFO: No xlwt module available, Excel spreadsheet creation disabled\r\n\r\n\r\n\r\nNo module named 'cplex'\r\n\r\n\r\n\r\nCPLEX not available\r\n\r\n*****\r\nUsing GLPK\r\n*****\r\n\r\n\r\nINFO: No xlrd module available, Excel spreadsheet reading disabled\r\n\r\nCBMPy environment\r\n******************\r\nRevision: r689\r\n\r\n\r\n***********************************************************************\r\n* Welcome to CBMPy (0.7.25) - PySCeS Constraint Based Modelling *\r\n* http://cbmpy.sourceforge.net *\r\n* Copyright(C) Brett G. Olivier 2014 - 2019 *\r\n* Dept. of Systems Bioinformatics *\r\n* Vrije Universiteit Amsterdam, Amsterdam, The Netherlands *\r\n* CBMPy is developed as part of the BeBasic MetaToolKit Project *\r\n* Distributed under the GNU GPL v 3.0 licence, see *\r\n* LICENCE (supplied with this release) for details *\r\n***********************************************************************\r\n\r\n", 'sedDocuments': [{'duration': 0.36662, 'exception': {'message': 'The SED document did not execute successfully:\n\n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'SedmlExecutionError'}, 'location': 'tmp68415', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp68415:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp68415 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.185024, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.06203, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.030037, 'exception': {'message': 'UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | CombineArchiveExecutionError | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
| 201 | https://api.biosimulations.org/runs/67236bec0d09353e8f0f2f22 | https://api.biosimulations.org/results/67236bec0d09353e8f0f2f22/download | https://api.biosimulations.org/logs/67236bec0d09353e8f0f2f22?includeOutput=true | {'duration': 0.618921, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'CombineArchiveExecutionError'}, 'output': '', 'sedDocuments': [{'duration': 0.34842, 'exception': {'message': 'The SED document did not execute successfully:\n\n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'SedmlExecutionError'}, 'location': 'tmp729767', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp729767:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp729767 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.176036, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.060621, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.03115, 'exception': {'message': 'UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | CombineArchiveExecutionError | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
| 201 | https://api.biosimulations.org/runs/67236bee5a60072d20f43156 | https://api.biosimulations.org/results/67236bee5a60072d20f43156/download | https://api.biosimulations.org/logs/67236bee5a60072d20f43156?includeOutput=true | {'duration': 1.921198, 'exception': None, 'output': '', 'sedDocuments': [{'duration': 1.674781, 'exception': None, 'location': 'tmp683755', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp683755:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp683755 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 1.092146, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.328085, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000560', 'duration': 0.182535, 'exception': None, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': [{'key': 'methodName', 'value': 'lsoda'}, {'key': 'parameters', 'value': None}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| view
download
logs | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
| 201 | https://api.biosimulations.org/runs/67236bf00d09353e8f0f2f2b | https://api.biosimulations.org/results/67236bf00d09353e8f0f2f2b/download | https://api.biosimulations.org/logs/67236bf00d09353e8f0f2f2b?includeOutput=true | {'duration': 1.769227, 'exception': None, 'output': '', 'sedDocuments': [{'duration': 1.50523, 'exception': None, 'location': 'tmp965687', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp965687:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp965687 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 0.863854, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.387174, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000088', 'duration': 0.171114, 'exception': None, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': [{'key': 'method', 'value': 'gillespy2.solvers.numpy.ode_solver.ODESolver'}, {'key': 'arguments', 'value': {'integrator': 'lsoda'}}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| view
download
logs | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
| 201 | https://api.biosimulations.org/runs/67236bf20d09353e8f0f2f30 | https://api.biosimulations.org/results/67236bf20d09353e8f0f2f30/download | https://api.biosimulations.org/logs/67236bf20d09353e8f0f2f30?includeOutput=true | {'duration': 0.583545, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000', 'type': 'CombineArchiveExecutionError'}, 'output': '', 'sedDocuments': [{'duration': 0.327922, 'exception': {'message': 'The SED document did not execute successfully:\n\n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000', 'type': 'SedmlExecutionError'}, 'location': 'tmp619720', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp619720:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp619720 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.160031, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.057259, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.027538, 'exception': {'message': 'Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000 | CombineArchiveExecutionError | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
| 201 | https://api.biosimulations.org/runs/67236bf45a60072d20f4315e | https://api.biosimulations.org/results/67236bf45a60072d20f4315e/download | https://api.biosimulations.org/logs/67236bf45a60072d20f4315e?includeOutput=true | {'duration': 7.991115, 'exception': None, 'output': '', 'sedDocuments': [{'duration': 7.724422, 'exception': None, 'location': 'tmp339367', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp339367:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp339367 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 0.930744, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.418791, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000086', 'duration': 6.279131, 'exception': None, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': [{'key': 'method', 'value': 'simulateSBMLFromFile'}, {'key': 'arguments', 'value': {'dt': 0.0001, 'method': 51, 'print_amount': 0, 'print_interval': 100, 'sim_time': 200.0, 'use_lazy_method': 0}}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| view
download
logs | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
| 201 | https://api.biosimulations.org/runs/67236bf65a60072d20f43165 | https://api.biosimulations.org/results/67236bf65a60072d20f43165/download | https://api.biosimulations.org/logs/67236bf65a60072d20f43165?includeOutput=true | {'duration': 2.497808, 'exception': None, 'output': '', 'sedDocuments': [{'duration': 1.949708, 'exception': None, 'location': 'tmp317536', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp317536:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp317536 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 1.172358, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.453667, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000019', 'duration': 0.222991, 'exception': None, 'id': 'sim1_net1', 'output': "\x1b[93mWARNING:\x1b[0m \x1b[93mModel does not contain SBML fbc package\x1b[0m\r\n\x1b[93mWARNING:\x1b[0m \x1b[93mModel does not contain SBML groups package\x1b[0m\r\n\x1b[93mWARNING:\x1b[0m \x1b[93mNo metabolites in model.\x1b[0m\r\n\x1b[93mWARNING:\x1b[0m \x1b[93mNo reactions in model.\x1b[0m\r\n\x1b[93mWARNING:\x1b[0m \x1b[93mNo compartments found in model. Therefore creating compartment 'compartment' for entire model.\x1b[0m\r\n", 'simulatorDetails': [{'key': 'integrator', 'value': 'cvode'}, {'key': 'relative_tolerance', 'value': 1e-06}, {'key': 'absolute_tolerance', 'value': 1e-12}, {'key': 'stiff', 'value': True}, {'key': 'maximum_bdf_order', 'value': 5}, {'key': 'maximum_adams_order', 'value': 12}, {'key': 'maximum_num_steps', 'value': 20000}, {'key': 'maximum_time_step', 'value': 0.0}, {'key': 'minimum_time_step', 'value': 0.0}, {'key': 'initial_time_step', 'value': 0.0}, {'key': 'multiple_steps', 'value': False}, {'key': 'variable_step_size', 'value': False}, {'key': 'max_output_rows', 'value': 100000}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
| view
download
logs | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/67236bf75a60072d20f4316e | https://api.biosimulations.org/results/67236bf75a60072d20f4316e/download | https://api.biosimulations.org/logs/67236bf75a60072d20f4316e?includeOutput=true | {'duration': 0.045122, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/67236bf95a60072d20f43179 | https://api.biosimulations.org/results/67236bf95a60072d20f43179/download | https://api.biosimulations.org/logs/67236bf95a60072d20f43179?includeOutput=true | {'duration': 0.046823, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
| 201 | https://api.biosimulations.org/runs/67236bfbb678b3883bb5827f | https://api.biosimulations.org/results/67236bfbb678b3883bb5827f/download | https://api.biosimulations.org/logs/67236bfbb678b3883bb5827f?includeOutput=true | {'duration': 0.023465, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/67236bfd0d09353e8f0f2f67 | https://api.biosimulations.org/results/67236bfd0d09353e8f0f2f67/download | https://api.biosimulations.org/logs/67236bfd0d09353e8f0f2f67?includeOutput=true | {'duration': 0.049696, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
| 201 | https://api.biosimulations.org/runs/67236bff5a60072d20f43190 | https://api.biosimulations.org/results/67236bff5a60072d20f43190/download | https://api.biosimulations.org/logs/67236bff5a60072d20f43190?includeOutput=true | {'duration': 1.904896, 'exception': {'message': "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", 'type': 'CombineArchiveExecutionError'}, 'output': 'libtk8.6.so: cannot open shared object file: No such file or directory\r\n\r\nPySCeS defaults to matplotlib\'s TKagg backend if not specified in the user configuration file, set "matplotlib_backend = " \r\nMatplotlib interface loaded (pysces.plt.m)\r\nPitcon routines available\r\nNLEQ2 routines available\r\nSBML support available\r\nYou are using NumPy (2.1.2) with SciPy (1.14.1)\r\nAssimulo CVode available\r\nRateChar is available\r\nParallel scanner is available\r\n\r\nPySCeS environment\r\n******************\r\npysces.model_dir = /home/FCAM/crbmapi/Pysces/psc\r\npysces.output_dir = /home/FCAM/crbmapi/Pysces\r\n\r\n\r\n***********************************************************************\r\n* Welcome to PySCeS (1.2.2) - Python Simulator for Cellular Systems *\r\n* http://pysces.sourceforge.net *\r\n* Copyright(C) B.G. Olivier, J.M. Rohwer, J.-H.S. Hofmeyr, 2004-2024 *\r\n* Triple-J Group for Molecular Cell Physiology *\r\n* Stellenbosch University, ZA and VU University Amsterdam, NL *\r\n* PySCeS is distributed under the PySCeS (BSD style) licence, see *\r\n* LICENCE.txt (supplied with this release) for details *\r\n* Please cite PySCeS with: doi:10.1093/bioinformatics/bti046 *\r\n***********************************************************************\r\n', 'sedDocuments': [{'duration': 1.66697, 'exception': {'message': "The SED document did not execute successfully:\n\n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", 'type': 'SedmlExecutionError'}, 'location': 'tmp622954', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp622954:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp622954 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ...Check SBML support is at action level 2\r\nSBML file is L2V2\r\n\r\n*******************************************************************\r\nIssues encountered in SBML translation (model processed anyway)\r\nSBML source: /tmp/tmpa5bjmb7u.xml\r\n*******************************************************************\r\n\r\nNo free species!? ... help I\'m confused! \r\n\r\n*******************************************************************\r\n\r\nWriting file: /tmp/tmp_hzmd6te.psc\r\n\r\nSBML2PSC\r\nin : /tmp/tmpa5bjmb7u.xml\r\nout: /tmp/tmp_hzmd6te.psc\r\nUsing model directory: /home/FCAM/crbmapi/Pysces/psc\r\n/tmp/tmp_hzmd6te.psc loading ..... \r\nParsing file: /tmp/tmp_hzmd6te.psc\r\nInfo: No reagents have been fixed\r\nInfo: "I" has been initialised but does not occur in a rate equation\r\nInfo: "SEC" has been initialised but does not occur in a rate equation\r\nInfo: "V" has been initialised but does not occur in a rate equation\r\nInfo: "W" has been initialised but does not occur in a rate equation\r\n \r\n \x1b[31mfailed - \r\nUnable to generate Stoichiometric Matrix! model has:\r\n0 reactions\r\n0 species\r\nwhat did you have in mind?\r\n\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.40649, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.059545, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 1.111955, 'exception': {'message': '\nUnable to generate Stoichiometric Matrix! model has:\n0 reactions\n0 species\nwhat did you have in mind?\n', 'type': 'AssertionError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
| CombineArchiveExecutionError | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError | +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
| 201 | https://api.biosimulations.org/runs/67236c000d09353e8f0f2f7d | https://api.biosimulations.org/results/67236c000d09353e8f0f2f7d/download | https://api.biosimulations.org/logs/67236c000d09353e8f0f2f7d?includeOutput=true | {'duration': 0.541316, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).', 'type': 'CombineArchiveExecutionError'}, 'output': '', 'sedDocuments': [{'duration': 0.302992, 'exception': {'message': 'The SED document did not execute successfully:\n\n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).', 'type': 'SedmlExecutionError'}, 'location': 'tmp274281', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp274281:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp274281 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.142987, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.056954, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.025798, 'exception': {'message': 'Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`). | CombineArchiveExecutionError | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
| 201 | https://api.biosimulations.org/runs/67236c025a60072d20f431ab | https://api.biosimulations.org/results/67236c025a60072d20f431ab/download | https://api.biosimulations.org/logs/67236c025a60072d20f431ab?includeOutput=true | {'duration': 0.059642, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
| 201 | https://api.biosimulations.org/runs/67236c045a60072d20f431c1 | https://api.biosimulations.org/results/67236c045a60072d20f431c1/download | https://api.biosimulations.org/logs/67236c045a60072d20f431c1?includeOutput=true | {'duration': 2.269569, 'exception': None, 'output': '', 'sedDocuments': [{'duration': 1.79682, 'exception': None, 'location': 'tmp942070', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp942070:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp942070 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 1.085349, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.39383, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000019', 'duration': 0.210348, 'exception': None, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': [{'key': 'method', 'value': 'simulate'}, {'key': 'solver', 'value': 'cvode'}, {'key': 'relative_tolerance', 'value': 1e-06}, {'key': 'absolute_tolerance', 'value': 1e-12}, {'key': 'stiff', 'value': True}, {'key': 'maximum_bdf_order', 'value': 5}, {'key': 'maximum_adams_order', 'value': 12}, {'key': 'maximum_num_steps', 'value': 20000}, {'key': 'maximum_time_step', 'value': 0.0}, {'key': 'minimum_time_step', 'value': 0.0}, {'key': 'initial_time_step', 'value': 0.0}, {'key': 'multiple_steps', 'value': False}, {'key': 'variable_step_size', 'value': False}, {'key': 'max_output_rows', 'value': 100000}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| view
download
logs | +| 19 |
vcellhttps://github.com/virtualcell/vcell
| 201 | https://api.biosimulations.org/runs/67236c075a60072d20f431cb | https://api.biosimulations.org/results/67236c075a60072d20f431cb/download | https://api.biosimulations.org/logs/67236c075a60072d20f431cb?includeOutput=true | {'duration': None, 'exception': None, 'output': None, 'sedDocuments': [], 'skipReason': None, 'status': 'QUEUED'} |
Noneview
download
logs
| | | view
download
logs | |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
| view
download
logs | +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
| 201 | https://api.biosimulations.org/runs/67236c09b678b3883bb582d8 | https://api.biosimulations.org/results/67236c09b678b3883bb582d8/download | https://api.biosimulations.org/logs/67236c09b678b3883bb582d8?includeOutput=true | {'duration': 0.060764, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | \ No newline at end of file diff --git a/utils/__init__.py b/utils/__init__.py index 6d1eaddf..aebbf366 100644 --- a/utils/__init__.py +++ b/utils/__init__.py @@ -157,7 +157,7 @@ # (currently only tellurium) # key is the tag/category used to report the category, value is a regex matching the error message # see MarkdownTable.process_engine_outcomes -# TODO: use error categories in process_log_yml +# TODO: use error categories in process_log_yml_dict error_categories=\ { "tellurium": @@ -1101,35 +1101,6 @@ def create_results_table(results, sbml_filepath, sedml_filepath, output_dir): return results_table -def process_log_yml(log_yml_path): - status = "" - error_message = "" - exception_type = "" - - if not log_yml_path: - status = None - error_message = 'log.yml not found' - else: - with open(log_yml_path) as f: - log_yml_dict = yaml.safe_load(f) - log_yml_str = str(log_yml_dict) - if log_yml_dict['status'] == 'SUCCEEDED': - status = 'pass' - # to deal with cases like amici where the d1 plot max x is half the expected value - pattern_max_number_of_steps = "simulation failed: Reached maximum number of steps" - pattern_match = re.search(pattern_max_number_of_steps, log_yml_str) - if pattern_match: - status = 'FAIL' - error_message = 'Reached maximum number of steps' - elif log_yml_dict['status'] == 'FAILED': - status = 'FAIL' - exception = log_yml_dict['exception'] - error_message = exception['message'] - exception_type = exception['type'] - else: - status = None - return status, error_message, exception_type - def process_log_yml_dict(log_yml_dict): status = "" error_message = "" @@ -1188,10 +1159,6 @@ def run_biosimulators_remotely(engine_keys, log_yml_path = find_file_in_dir('log.yml', extract_dir)[0] with open(log_yml_path) as f: log_yml_dict = yaml.safe_load(f) - # status, error_message, exception_type = process_log_yml(log_yml_path) - # results_remote[e]["status"] = status - # results_remote[e]["error_message"] = error_message - # results_remote[e]["exception_type"] = exception_type results_remote[e]["log_yml"] = log_yml_dict file_paths = find_files(remote_output_dir, '.pdf') From bb5bf4131e8590e0ab12d30268a6e93fa874ed4d Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Thu, 31 Oct 2024 16:28:39 +0000 Subject: [PATCH 19/24] fix permission issues by ensuring outputs owned by user --- utils/__init__.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/utils/__init__.py b/utils/__init__.py index aebbf366..025b7b76 100644 --- a/utils/__init__.py +++ b/utils/__init__.py @@ -560,17 +560,17 @@ def run_biosimulators_docker(engine,sedml_filepath,sbml_filepath,output_dir='out log_yml_dict = {} exception_message = "" + try: + biosimulators_core(engine,omex_filepath,output_dir=output_dir) + except Exception as e: + exception_message = str(e) + #ensure outputs are owned by the user if 'getuid' in dir(os) and chown_outputs: uid = os.getuid() gid = os.getgid() os.system(f'sudo chown -R {uid}:{gid} {output_dir}') - try: - biosimulators_core(engine,omex_filepath,output_dir=output_dir) - except Exception as e: - exception_message = str(e) - if os.path.exists(log_yml_path): with open(log_yml_path) as f: log_yml_dict = yaml.safe_load(f) From d2cf22226e3f9a76a148715a186d05a1a9994324 Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Fri, 1 Nov 2024 14:40:44 +0000 Subject: [PATCH 20/24] process detailedErrorLog txt file generated in vcell and adjust table to deal with Runtime Exception --- .../results_compatibility_biosimulators.md | 42 +-- SBML/tests/results_local.json | 300 ++++++++++-------- utils/__init__.py | 31 +- 3 files changed, 203 insertions(+), 170 deletions(-) diff --git a/SBML/tests/results_compatibility_biosimulators.md b/SBML/tests/results_compatibility_biosimulators.md index 1c4cae6c..f9443c5c 100644 --- a/SBML/tests/results_compatibility_biosimulators.md +++ b/SBML/tests/results_compatibility_biosimulators.md @@ -1,23 +1,23 @@ | | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | |---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
|
❌ FAILview
download
logs

ERROR MESSAGE:
Reached maximum number of steps
|
❌ FAIL

ERROR MESSAGE:
Reached maximum number of steps
| plot | plot | -| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|
✅ PASSview
download
logs
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.
| | | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | -| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
Noneview
download
logs
| ✅ PASS | | | -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
|
❌ FAILview
download
logs

ERROR MESSAGE:
Reached maximum number of steps
|
❌ FAIL

ERROR MESSAGE:
Reached maximum number of steps
| plot | plot | +| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|
✅ PASSview
download
logs
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.
| | | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | +| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
❌ FAILview
download
logs

ERROR MESSAGE:
status: QUEUED
|
❌ FAIL

ERROR MESSAGE:
Runtime Exception
| | | +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file diff --git a/SBML/tests/results_local.json b/SBML/tests/results_local.json index 65642146..adada997 100644 --- a/SBML/tests/results_local.json +++ b/SBML/tests/results_local.json @@ -2,15 +2,15 @@ "amici": { "exception_message": "", "log_yml": { - "duration": 14.132747, + "duration": 14.539468, "exception": null, "output": "", "sedDocuments": [ { - "duration": 13.817007, + "duration": 14.02876, "exception": null, - "location": "tmp786909", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp786909:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp786909 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp873033", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp873033:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp873033 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -23,7 +23,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.812526, + "duration": 0.673566, "exception": null, "id": "d1", "output": "", @@ -45,7 +45,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.241448, + "duration": 0.256373, "exception": null, "id": "ex9", "output": "", @@ -58,10 +58,10 @@ "tasks": [ { "algorithm": "KISAO_0000496", - "duration": 12.641941, + "duration": 13.028354, "exception": null, "id": "sim1_net1", - "output": "2024-10-31 11:02:12.685 - amici.swig_wrappers - ERROR - [OTHER] AMICI simulation failed: Reached maximum number of steps 10000 before reaching tout at t=99.66.\r\n2024-10-31 11:02:12.685 - amici.swig_wrappers - DEBUG - [BACKTRACE] The previous error occurred at:\r\n2 0x7fa04db5fa8b /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0xb5a8b) [0x7fa04db5fa8b]\r\n3 0x7fa04dc53262 amici::Solver::run(double) const + 34\r\n4 0x7fa04dc8b5d0 amici::ForwardProblem::workForwardProblem() + 1728\r\n5 0x7fa04dc3f763 amici::runAmiciSimulation(amici::Solver&, amici::ExpData const*, amici::Model&, bool) + 435\r\n6 0x7fa04dbe9280 /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0x13f\r\n", + "output": "2024-11-01 14:26:12.406 - amici.swig_wrappers - ERROR - [OTHER] AMICI simulation failed: Reached maximum number of steps 10000 before reaching tout at t=99.66.\r\n2024-11-01 14:26:12.406 - amici.swig_wrappers - DEBUG - [BACKTRACE] The previous error occurred at:\r\n2 0x7fdf59c6ea8b /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0xb5a8b) [0x7fdf59c6ea8b]\r\n3 0x7fdf59d62262 amici::Solver::run(double) const + 34\r\n4 0x7fdf59d9a5d0 amici::ForwardProblem::workForwardProblem() + 1728\r\n5 0x7fdf59d4e763 amici::runAmiciSimulation(amici::Solver&, amici::ExpData const*, amici::Model&, bool) + 435\r\n6 0x7fdf59cf8280 /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0x13f\r\n", "simulatorDetails": [ { "key": "solver", @@ -84,12 +84,13 @@ ], "skipReason": null, "status": "SUCCEEDED" - } + }, + "detailed_error_log": {} }, "brian2": { "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1", "log_yml": { - "duration": 0.057493, + "duration": 0.062713, "exception": { "message": "No module named 'libsbml'", "type": "ModuleNotFoundError" @@ -98,26 +99,27 @@ "sedDocuments": [], "skipReason": null, "status": "FAILED" - } + }, + "detailed_error_log": {} }, "bionetgen": { "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1", "log_yml": { - "duration": 0.69875, + "duration": 0.75498, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).", "type": "CombineArchiveExecutionError" }, - "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp792365` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp727758` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", "sedDocuments": [ { - "duration": 0.428374, + "duration": 0.41883, "exception": { "message": "The SED document did not execute successfully:\n\n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).", "type": "SedmlExecutionError" }, - "location": "tmp792365", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp792365:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp792365 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp727758", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp727758:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp727758 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -130,7 +132,7 @@ "status": "SKIPPED" } ], - "duration": 0.234131, + "duration": 0.251054, "exception": null, "id": "d1", "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", @@ -152,7 +154,7 @@ "status": "SKIPPED" } ], - "duration": 0.083012, + "duration": 0.061473, "exception": null, "id": "ex9", "output": "", @@ -165,7 +167,7 @@ "tasks": [ { "algorithm": null, - "duration": 0.025007, + "duration": 0.025634, "exception": { "message": "Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).", "type": "ValueError" @@ -181,26 +183,27 @@ ], "skipReason": null, "status": "FAILED" - } + }, + "detailed_error_log": {} }, "boolnet": { "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1", "log_yml": { - "duration": 0.784272, + "duration": 0.816403, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).", "type": "CombineArchiveExecutionError" }, - "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp133651` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp713633` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", "sedDocuments": [ { - "duration": 0.497757, + "duration": 0.471202, "exception": { "message": "The SED document did not execute successfully:\n\n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).", "type": "SedmlExecutionError" }, - "location": "tmp133651", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp133651:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp133651 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp713633", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp713633:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp713633 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -213,7 +216,7 @@ "status": "SKIPPED" } ], - "duration": 0.267692, + "duration": 0.272143, "exception": null, "id": "d1", "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", @@ -235,7 +238,7 @@ "status": "SKIPPED" } ], - "duration": 0.0693, + "duration": 0.067113, "exception": null, "id": "ex9", "output": "", @@ -248,7 +251,7 @@ "tasks": [ { "algorithm": null, - "duration": 0.033814, + "duration": 0.032377, "exception": { "message": "Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).", "type": "ValueError" @@ -264,26 +267,27 @@ ], "skipReason": null, "status": "FAILED" - } + }, + "detailed_error_log": {} }, "cbmpy": { "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1", "log_yml": { - "duration": 0.805859, + "duration": 0.933566, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", "type": "CombineArchiveExecutionError" }, - "output": "\r\nINFO: No xlwt module available, Excel spreadsheet creation disabled\r\n\r\n\r\n\r\nNo module named 'cplex'\r\n\r\n\r\n\r\nCPLEX not available\r\n\r\n*****\r\nUsing GLPK\r\n*****\r\n\r\n\r\nINFO: No xlrd module available, Excel spreadsheet reading disabled\r\n\r\nCBMPy environment\r\n******************\r\nRevision: r689\r\n\r\n\r\n***********************************************************************\r\n* Welcome to CBMPy (0.7.25) - PySCeS Constraint Based Modelling *\r\n* http://cbmpy.sourceforge.net *\r\n* Copyright(C) Brett G. Olivier 2014 - 2019 *\r\n* Dept. of Systems Bioinformatics *\r\n* Vrije Universiteit Amsterdam, Amsterdam, The Netherlands *\r\n* CBMPy is developed as part of the BeBasic MetaToolKit Project *\r\n* Distributed under the GNU GPL v 3.0 licence, see *\r\n* LICENCE (supplied with this release) for details *\r\n***********************************************************************\r\n\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp52097` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "output": "\r\nINFO: No xlwt module available, Excel spreadsheet creation disabled\r\n\r\n\r\n\r\nNo module named 'cplex'\r\n\r\n\r\n\r\nCPLEX not available\r\n\r\n*****\r\nUsing GLPK\r\n*****\r\n\r\n\r\nINFO: No xlrd module available, Excel spreadsheet reading disabled\r\n\r\nCBMPy environment\r\n******************\r\nRevision: r689\r\n\r\n\r\n***********************************************************************\r\n* Welcome to CBMPy (0.7.25) - PySCeS Constraint Based Modelling *\r\n* http://cbmpy.sourceforge.net *\r\n* Copyright(C) Brett G. Olivier 2014 - 2019 *\r\n* Dept. of Systems Bioinformatics *\r\n* Vrije Universiteit Amsterdam, Amsterdam, The Netherlands *\r\n* CBMPy is developed as part of the BeBasic MetaToolKit Project *\r\n* Distributed under the GNU GPL v 3.0 licence, see *\r\n* LICENCE (supplied with this release) for details *\r\n***********************************************************************\r\n\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp270883` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", "sedDocuments": [ { - "duration": 0.418282, + "duration": 0.461954, "exception": { "message": "The SED document did not execute successfully:\n\n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", "type": "SedmlExecutionError" }, - "location": "tmp52097", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp52097:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp52097 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp270883", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp270883:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp270883 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -296,7 +300,7 @@ "status": "SKIPPED" } ], - "duration": 0.221309, + "duration": 0.27073, "exception": null, "id": "d1", "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", @@ -318,7 +322,7 @@ "status": "SKIPPED" } ], - "duration": 0.079128, + "duration": 0.061414, "exception": null, "id": "ex9", "output": "", @@ -331,7 +335,7 @@ "tasks": [ { "algorithm": null, - "duration": 0.030802, + "duration": 0.028861, "exception": { "message": "UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", "type": "ValueError" @@ -347,26 +351,27 @@ ], "skipReason": null, "status": "FAILED" - } + }, + "detailed_error_log": {} }, "cobrapy": { "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1", "log_yml": { - "duration": 0.950844, + "duration": 1.11712, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", "type": "CombineArchiveExecutionError" }, - "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp465546` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp380384` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", "sedDocuments": [ { - "duration": 0.602993, + "duration": 0.511567, "exception": { "message": "The SED document did not execute successfully:\n\n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", "type": "SedmlExecutionError" }, - "location": "tmp465546", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp465546:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp465546 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp380384", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp380384:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp380384 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -379,7 +384,7 @@ "status": "SKIPPED" } ], - "duration": 0.372064, + "duration": 0.256911, "exception": null, "id": "d1", "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", @@ -401,7 +406,7 @@ "status": "SKIPPED" } ], - "duration": 0.067376, + "duration": 0.098905, "exception": null, "id": "ex9", "output": "", @@ -414,7 +419,7 @@ "tasks": [ { "algorithm": null, - "duration": 0.028576, + "duration": 0.029987, "exception": { "message": "UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation", "type": "ValueError" @@ -430,20 +435,21 @@ ], "skipReason": null, "status": "FAILED" - } + }, + "detailed_error_log": {} }, "copasi": { "exception_message": "", "log_yml": { - "duration": 1.737826, + "duration": 2.862886, "exception": null, - "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp151470` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp778931` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", "sedDocuments": [ { - "duration": 1.40958, + "duration": 1.873996, "exception": null, - "location": "tmp151470", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp151470:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp151470 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp778931", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp778931:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp778931 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -456,7 +462,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.935473, + "duration": 0.876977, "exception": null, "id": "d1", "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", @@ -478,7 +484,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.230881, + "duration": 0.499028, "exception": null, "id": "ex9", "output": "", @@ -491,10 +497,10 @@ "tasks": [ { "algorithm": "KISAO_0000560", - "duration": 0.149328, + "duration": 0.180886, "exception": null, "id": "sim1_net1", - "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33m- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmp980qrvqt/./LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/kisao/utils.py:518: AlgorithmSubstitutedWarning: \u001b[33m'LSODA/LSODAR hybrid method' (KISAO_0000560) will be substituted for 'CVODE' (KISAO_0000019) at substitution policy 'SIMILAR_VARIABLES'.\u001b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", + "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33m- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmpdxlb6qj2/./LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/kisao/utils.py:518: AlgorithmSubstitutedWarning: \u001b[33m'LSODA/LSODAR hybrid method' (KISAO_0000560) will be substituted for 'CVODE' (KISAO_0000019) at substitution policy 'SIMILAR_VARIABLES'.\u001b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", "simulatorDetails": [ { "key": "methodName", @@ -513,20 +519,21 @@ ], "skipReason": null, "status": "SUCCEEDED" - } + }, + "detailed_error_log": {} }, "gillespy2": { "exception_message": "", "log_yml": { - "duration": 1.585368, + "duration": 1.39855, "exception": null, - "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp81130` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp567968` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", "sedDocuments": [ { - "duration": 1.223174, + "duration": 1.149878, "exception": null, - "location": "tmp81130", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp81130:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp81130 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp567968", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp567968:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp567968 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -539,7 +546,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.681741, + "duration": 0.654028, "exception": null, "id": "d1", "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", @@ -561,7 +568,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.284383, + "duration": 0.267502, "exception": null, "id": "ex9", "output": "", @@ -574,10 +581,10 @@ "tasks": [ { "algorithm": "KISAO_0000088", - "duration": 0.147057, + "duration": 0.149073, "exception": null, "id": "sim1_net1", - "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33m- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/kisao/utils.py:477: AlgorithmSubstitutedWarning: \u001b[33m'LSODA' (KISAO_0000088) will be substituted for 'CVODE'' (KISAO_0000019) at substitution policy 'SIMILAR_VARIABLES'.\u001b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33m- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/kisao/utils.py:477: AlgorithmSubstitutedWarning: \u001b[33m'LSODA' (KISAO_0000088) will be substituted for 'CVODE'' (KISAO_0000019) at substitution policy 'SIMILAR_VARIABLES'.\u001b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", "simulatorDetails": [ { "key": "method", @@ -598,26 +605,27 @@ ], "skipReason": null, "status": "SUCCEEDED" - } + }, + "detailed_error_log": {} }, "ginsim": { "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1", "log_yml": { - "duration": 0.83023, + "duration": 0.849976, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000", "type": "CombineArchiveExecutionError" }, - "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp757460` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp946431` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", "sedDocuments": [ { - "duration": 0.506929, + "duration": 0.628725, "exception": { "message": "The SED document did not execute successfully:\n\n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000", "type": "SedmlExecutionError" }, - "location": "tmp757460", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp757460:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp757460 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp946431", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp946431:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp946431 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -630,7 +638,7 @@ "status": "SKIPPED" } ], - "duration": 0.270793, + "duration": 0.32766, "exception": null, "id": "d1", "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", @@ -652,7 +660,7 @@ "status": "SKIPPED" } ], - "duration": 0.071177, + "duration": 0.06087, "exception": null, "id": "ex9", "output": "", @@ -665,7 +673,7 @@ "tasks": [ { "algorithm": null, - "duration": 0.027768, + "duration": 0.026721, "exception": { "message": "Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000", "type": "ValueError" @@ -681,20 +689,21 @@ ], "skipReason": null, "status": "FAILED" - } + }, + "detailed_error_log": {} }, "libsbmlsim": { "exception_message": "", "log_yml": { - "duration": 4.76121, + "duration": 5.083417, "exception": null, - "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp920471` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp87798` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", "sedDocuments": [ { - "duration": 4.489787, + "duration": 4.80478, "exception": null, - "location": "tmp920471", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp920471:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp920471 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp87798", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp87798:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp87798 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -707,7 +716,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.685787, + "duration": 0.879194, "exception": null, "id": "d1", "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", @@ -729,7 +738,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.34283, + "duration": 0.310704, "exception": null, "id": "ex9", "output": "", @@ -742,10 +751,10 @@ "tasks": [ { "algorithm": "KISAO_0000086", - "duration": 3.338995, + "duration": 3.29071, "exception": null, "id": "sim1_net1", - "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33m- Variable `OUTPUT__of1_W_fnPop1_0_W` may be invalid.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` may be invalid.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` may be invalid.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` may be invalid.\r\n - XPath could not be validated.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmp80ayhgs9/./LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/kisao/utils.py:477: AlgorithmSubstitutedWarning: \u001b[33m'Fehlberg method' (KISAO_0000086) will be substituted for 'CVODE'' (KISAO_0000019) at substitution policy 'SIMILAR_VARIABLES'.\u001b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33m- Variable `OUTPUT__of1_W_fnPop1_0_W` may be invalid.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` may be invalid.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` may be invalid.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` may be invalid.\r\n - XPath could not be validated.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmpijizwxs3/./LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/kisao/utils.py:477: AlgorithmSubstitutedWarning: \u001b[33m'Fehlberg method' (KISAO_0000086) will be substituted for 'CVODE'' (KISAO_0000019) at substitution policy 'SIMILAR_VARIABLES'.\u001b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", "simulatorDetails": [ { "key": "method", @@ -771,26 +780,27 @@ ], "skipReason": null, "status": "SUCCEEDED" - } + }, + "detailed_error_log": {} }, "masspy": { "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1", "log_yml": { - "duration": 0.85876, + "duration": 1.477645, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .\n \t`(model, errors) = validate_sbml_model(filename)`\n If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .", "type": "CombineArchiveExecutionError" }, - "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp790915` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp447344` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n", "sedDocuments": [ { - "duration": 0.498037, + "duration": 0.756498, "exception": { "message": "The SED document did not execute successfully:\n\n Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .\n \t`(model, errors) = validate_sbml_model(filename)`\n If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .", "type": "SedmlExecutionError" }, - "location": "tmp790915", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp790915:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp790915 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp447344", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp447344:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp447344 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -803,7 +813,7 @@ "status": "SKIPPED" } ], - "duration": 0.244133, + "duration": 0.317979, "exception": null, "id": "d1", "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mIllogicalVizWarning\u001b[0m: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mIllogicalVizWarning\u001b[0m: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mIllogicalVizWarning\u001b[0m: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mIllogicalVizWarning\u001b[0m: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n", @@ -825,7 +835,7 @@ "status": "SKIPPED" } ], - "duration": 0.068723, + "duration": 0.076109, "exception": null, "id": "ex9", "output": "", @@ -838,13 +848,13 @@ "tasks": [ { "algorithm": null, - "duration": 0.055965, + "duration": 0.055729, "exception": { "message": "Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .\n\t`(model, errors) = validate_sbml_model(filename)`\nIf the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .", "type": "MassSBMLError" }, "id": "sim1_net1", - "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33m- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmp1pm67k8b/./LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mSBML model is written as Level 2 Version 2, will attempt to convert the SBML model from Level 2 Version 2 to Level 3 Version 1 before parsing\u001b[0m\r\n", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33m- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \u001b[1;31mBioSimulatorsWarning\u001b[0m: \u001b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmpw762zeum/./LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n\u001b[93mWARNING:\u001b[0m \u001b[93mSBML model is written as Level 2 Version 2, will attempt to convert the SBML model from Level 2 Version 2 to Level 3 Version 1 before parsing\u001b[0m\r\n", "simulatorDetails": null, "skipReason": null, "status": "FAILED" @@ -854,12 +864,13 @@ ], "skipReason": null, "status": "FAILED" - } + }, + "detailed_error_log": {} }, "netpyne": { "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1", "log_yml": { - "duration": 0.758953, + "duration": 0.044627, "exception": { "message": "No module named 'libsbml'", "type": "ModuleNotFoundError" @@ -868,12 +879,13 @@ "sedDocuments": [], "skipReason": null, "status": "FAILED" - } + }, + "detailed_error_log": {} }, "neuron": { "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1", "log_yml": { - "duration": 0.047164, + "duration": 0.0335, "exception": { "message": "No module named 'libsbml'", "type": "ModuleNotFoundError" @@ -882,12 +894,13 @@ "sedDocuments": [], "skipReason": null, "status": "FAILED" - } + }, + "detailed_error_log": {} }, "opencor": { "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1", "log_yml": { - "duration": 0.170558, + "duration": 0.052168, "exception": { "message": "No module named 'libsbml'", "type": "ModuleNotFoundError" @@ -896,12 +909,13 @@ "sedDocuments": [], "skipReason": null, "status": "FAILED" - } + }, + "detailed_error_log": {} }, "pyneuroml": { "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1", "log_yml": { - "duration": 0.195727, + "duration": 0.050431, "exception": { "message": "No module named 'libsbml'", "type": "ModuleNotFoundError" @@ -910,26 +924,27 @@ "sedDocuments": [], "skipReason": null, "status": "FAILED" - } + }, + "detailed_error_log": {} }, "pysces": { "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1", "log_yml": { - "duration": 1.939982, + "duration": 2.667261, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", "type": "CombineArchiveExecutionError" }, - "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp857735` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp924087` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", "sedDocuments": [ { - "duration": 1.644714, + "duration": 2.154212, "exception": { "message": "The SED document did not execute successfully:\n\n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", "type": "SedmlExecutionError" }, - "location": "tmp857735", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp857735:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp857735 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ...Check SBML support is at action level 2\r\nSBML file is L2V2\r\n\r\n*******************************************************************\r\nIssues encountered in SBML translation (model processed anyway)\r\nSBML source: /tmp/tmpp3desvp0.xml\r\n*******************************************************************\r\n\r\nNo free species!? ... help I'm confused! \r\n\r\n*******************************************************************\r\n\r\nWriting file: /tmp/tmpx3g93pi6.psc\r\n\r\nSBML2PSC\r\nin : /tmp/tmpp3desvp0.xml\r\nout: /tmp/tmpx3g93pi6.psc\r\nUsing model directory: /Pysces/psc\r\n/tmp/tmpx3g93pi6.psc loading ..... \r\nParsing file: /tmp/tmpx3g93pi6.psc\r\nInfo: No reagents have been fixed\r\nInfo: \"I\" has been initialised but does not occur in a rate equation\r\nInfo: \"SEC\" has been initialised but does not occur in a rate equation\r\nInfo: \"V\" has been initialised but does not occur in a rate equation\r\nInfo: \"W\" has been initialised but does not occur in a rate equation\r\n \r\n \u001b[31mfailed - \r\nUnable to generate Stoichiometric Matrix! model has:\r\n0 reactions\r\n0 species\r\nwhat did you have in mind?\r\n\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp924087", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp924087:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp924087 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ...Check SBML support is at action level 2\r\nSBML file is L2V2\r\n\r\n*******************************************************************\r\nIssues encountered in SBML translation (model processed anyway)\r\nSBML source: /tmp/tmpnulg_2g2.xml\r\n*******************************************************************\r\n\r\nNo free species!? ... help I'm confused! \r\n\r\n*******************************************************************\r\n\r\nWriting file: /tmp/tmpkg3wptnk.psc\r\n\r\nSBML2PSC\r\nin : /tmp/tmpnulg_2g2.xml\r\nout: /tmp/tmpkg3wptnk.psc\r\nUsing model directory: /Pysces/psc\r\n/tmp/tmpkg3wptnk.psc loading ..... \r\nParsing file: /tmp/tmpkg3wptnk.psc\r\nInfo: No reagents have been fixed\r\nInfo: \"I\" has been initialised but does not occur in a rate equation\r\nInfo: \"SEC\" has been initialised but does not occur in a rate equation\r\nInfo: \"V\" has been initialised but does not occur in a rate equation\r\nInfo: \"W\" has been initialised but does not occur in a rate equation\r\n \r\n \u001b[31mfailed - \r\nUnable to generate Stoichiometric Matrix! model has:\r\n0 reactions\r\n0 species\r\nwhat did you have in mind?\r\n\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -942,7 +957,7 @@ "status": "SKIPPED" } ], - "duration": 0.358815, + "duration": 0.586719, "exception": null, "id": "d1", "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", @@ -964,7 +979,7 @@ "status": "SKIPPED" } ], - "duration": 0.099216, + "duration": 0.14359, "exception": null, "id": "ex9", "output": "", @@ -977,13 +992,13 @@ "tasks": [ { "algorithm": null, - "duration": 1.069666, + "duration": 1.098613, "exception": { "message": "\nUnable to generate Stoichiometric Matrix! model has:\n0 reactions\n0 species\nwhat did you have in mind?\n", "type": "AssertionError" }, "id": "sim1_net1", - "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33m- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "output": "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33m- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", "simulatorDetails": null, "skipReason": null, "status": "FAILED" @@ -993,26 +1008,27 @@ ], "skipReason": null, "status": "FAILED" - } + }, + "detailed_error_log": {} }, "rbapy": { "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1", "log_yml": { - "duration": 0.954315, + "duration": 0.650455, "exception": { "message": "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).", "type": "CombineArchiveExecutionError" }, - "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp358640` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", + "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \u001b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp268456` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", "sedDocuments": [ { - "duration": 0.425598, + "duration": 0.392611, "exception": { "message": "The SED document did not execute successfully:\n\n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).", "type": "SedmlExecutionError" }, - "location": "tmp358640", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp358640:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp358640 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp268456", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp268456:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp268456 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[31mfailed\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[36mqueued\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -1025,7 +1041,7 @@ "status": "SKIPPED" } ], - "duration": 0.224934, + "duration": 0.230887, "exception": null, "id": "d1", "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \u001b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", @@ -1047,7 +1063,7 @@ "status": "SKIPPED" } ], - "duration": 0.072813, + "duration": 0.046698, "exception": null, "id": "ex9", "output": "", @@ -1060,7 +1076,7 @@ "tasks": [ { "algorithm": null, - "duration": 0.024417, + "duration": 0.026157, "exception": { "message": "Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).", "type": "ValueError" @@ -1076,24 +1092,26 @@ ], "skipReason": null, "status": "FAILED" - } + }, + "detailed_error_log": {} }, "smoldyn": { "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1", - "log_yml": {} + "log_yml": {}, + "detailed_error_log": {} }, "tellurium": { "exception_message": "", "log_yml": { - "duration": 1.715951, + "duration": 2.355827, "exception": null, - "output": "/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n\r\n/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp485772` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n\r\n", + "output": "/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n\r\n/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp732941` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n\r\n", "sedDocuments": [ { - "duration": 1.298982, + "duration": 1.607307, "exception": null, - "location": "tmp485772", - "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp485772:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp485772 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", + "location": "tmp732941", + "output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp732941:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp732941 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `ex9` ...", "outputs": [ { "curves": [ @@ -1106,7 +1124,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.751484, + "duration": 0.75985, "exception": null, "id": "d1", "output": "/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning:\r\n\r\n\u001b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\u001b[0m\r\n\r\n", @@ -1128,7 +1146,7 @@ "status": "SUCCEEDED" } ], - "duration": 0.246958, + "duration": 0.265557, "exception": null, "id": "ex9", "output": "", @@ -1141,10 +1159,10 @@ "tasks": [ { "algorithm": "KISAO_0000019", - "duration": 0.175517, + "duration": 0.193093, "exception": null, "id": "sim1_net1", - "output": "/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33m- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n\r\n/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmpovmjj26r/./LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n\r\n", + "output": "/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33m- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\u001b[0m\r\n\r\n/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\u001b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmpn8bg7xgx/./LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\u001b[0m\r\n\r\n", "simulatorDetails": [ { "key": "method", @@ -1211,23 +1229,28 @@ ], "skipReason": null, "status": "SUCCEEDED" - } + }, + "detailed_error_log": {} }, "vcell": { "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1", "log_yml": { - "duration": 2, + "duration": 3, "exception": null, - "output": "Processing tmp232535. Done", + "output": "Processing tmp645125. Done", "sedDocuments": [], "skipReason": null, "status": "SUCCEEDED" + }, + "detailed_error_log": { + "status": "FAIL", + "error_message": "Runtime Exception" } }, "xpp": { "exception_message": "Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1", "log_yml": { - "duration": 0.076306, + "duration": 0.061486, "exception": { "message": "No module named 'libsbml'", "type": "ModuleNotFoundError" @@ -1236,6 +1259,7 @@ "sedDocuments": [], "skipReason": null, "status": "FAILED" - } + }, + "detailed_error_log": {} } } \ No newline at end of file diff --git a/utils/__init__.py b/utils/__init__.py index 025b7b76..43a609a1 100644 --- a/utils/__init__.py +++ b/utils/__init__.py @@ -574,8 +574,17 @@ def run_biosimulators_docker(engine,sedml_filepath,sbml_filepath,output_dir='out if os.path.exists(log_yml_path): with open(log_yml_path) as f: log_yml_dict = yaml.safe_load(f) + + # to deal with vcell like cases where there is a log_yml with status SUCCEEDED but a detailedErrorLog.txt with "RuntimeError" + detailed_error_log_dict = {} + if os.path.exists(os.path.join(output_dir, 'detailedErrorLog.txt')): + with open(os.path.join(output_dir, 'detailedErrorLog.txt')) as f: + detailed_error_log = f.read() + if 'RuntimeException' in detailed_error_log: + detailed_error_log_dict['status'] = 'FAIL' + detailed_error_log_dict['error_message'] = "Runtime Exception" - return {"exception_message":exception_message,"log_yml":log_yml_dict} + return {"exception_message":exception_message,"log_yml":log_yml_dict, "detailed_error_log":detailed_error_log_dict} def biosimulators_core(engine,omex_filepath,output_dir=None): ''' @@ -1033,6 +1042,10 @@ def create_results_table(results, sbml_filepath, sedml_filepath, output_dir): for e in results.keys(): results[e].update(process_log_yml_dict(results[e]["log_yml"])) + if "detailed_error_log" in results[e].keys(): + if results[e]["detailed_error_log"] != {}: + results[e]['status'] = results[e]["detailed_error_log"]['status'] + results[e]['error_message'] = results[e]["detailed_error_log"]['error_message'] links = ['view', 'download', 'logs'] for e in results.keys(): @@ -1122,9 +1135,14 @@ def process_log_yml_dict(log_yml_dict): status = 'FAIL' exception = log_yml_dict['exception'] error_message = exception['message'] - exception_type = exception['type'] + exception_type = exception['type'] + # in the case of vcell the status is QUEUED + elif log_yml_dict['status'] == 'QUEUED': + status = 'FAIL' + error_message = 'status: QUEUED' else: status = None + return {"status":status, "error_message":error_message,"exception_type": exception_type} @@ -1213,16 +1231,7 @@ def create_combined_results_table(results_remote, # Create results tables for remote and local results results_table_remote = create_results_table(results_remote, sbml_file_name, sedml_file_name, d1_plots_remote_dir) - # save as md file - path_to_results = os.path.join(test_folder, 'results_remote.md') - with open(path_to_results, 'w', encoding='utf-8') as f: - f.write(results_table_remote.to_markdown()) - results_table_local = create_results_table(results_local, sbml_file_name, sedml_file_name, d1_plots_local_dir) - # save as md file - path_to_results = os.path.join(test_folder, 'results_local.md') - with open(path_to_results, 'w', encoding='utf-8') as f: - f.write(results_table_local.to_markdown()) # Rename columns to distinguish between local and remote results except for Engine column results_table_remote.columns = [f"{col}{suffix_remote}" if col != ENGINE else col for col in results_table_remote.columns] From de2ec3afa42fda381f555641606d8c630449a5bc Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Fri, 1 Nov 2024 14:41:04 +0000 Subject: [PATCH 21/24] remove local and remote tables used for trouble shooting --- SBML/tests/results_local.md | 23 ----------------------- SBML/tests/results_remote.md | 23 ----------------------- 2 files changed, 46 deletions(-) delete mode 100644 SBML/tests/results_local.md delete mode 100644 SBML/tests/results_remote.md diff --git a/SBML/tests/results_local.md b/SBML/tests/results_local.md deleted file mode 100644 index e28233b6..00000000 --- a/SBML/tests/results_local.md +++ /dev/null @@ -1,23 +0,0 @@ -| | Engine | exception_message | log_yml | pass / FAIL | Error | Type | d1 | Compatibility | links_error | -|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------|:----------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/

| | {'duration': 13.105656, 'exception': None, 'output': '', 'sedDocuments': [{'duration': 12.727079, 'exception': None, 'location': 'tmp350269', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp350269:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp350269 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 0.72873, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.248659, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000496', 'duration': 11.606177, 'exception': None, 'id': 'sim1_net1', 'output': '2024-10-31 11:38:40.691 - amici.swig_wrappers - ERROR - [OTHER] AMICI simulation failed: Reached maximum number of steps 10000 before reaching tout at t=99.66.\r\n2024-10-31 11:38:40.692 - amici.swig_wrappers - DEBUG - [BACKTRACE] The previous error occurred at:\r\n2 0x7f17ea4eaa8b /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0xb5a8b) [0x7f17ea4eaa8b]\r\n3 0x7f17ea5de262 amici::Solver::run(double) const + 34\r\n4 0x7f17ea6165d0 amici::ForwardProblem::workForwardProblem() + 1728\r\n5 0x7f17ea5ca763 amici::runAmiciSimulation(amici::Solver&, amici::ExpData const*, amici::Model&, bool) + 435\r\n6 0x7f17ea574280 /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0x13f\r\n', 'simulatorDetails': [{'key': 'solver', 'value': 'amici.amici.CVodeSolver'}, {'key': 'method', 'value': 'amici.swig_wrappers.runAmiciSimulation'}, {'key': 'arguments', 'value': {}}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} |
❌ FAIL

ERROR MESSAGE:
Reached maximum number of steps
| Reached maximum number of steps | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
|

ERROR MESSAGE:
Reached maximum number of steps | -| 1 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1 | {'duration': 0.067568, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 2 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1 | {'duration': 0.737087, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).', 'type': 'CombineArchiveExecutionError'}, 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp608921` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 0.43764, 'exception': {'message': 'The SED document did not execute successfully:\n\n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).', 'type': 'SedmlExecutionError'}, 'location': 'tmp608921', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp608921:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp608921 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.236605, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.06783, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.02659, 'exception': {'message': 'Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL


ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError | The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`). | CombineArchiveExecutionError | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError | -| 3 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/boolnet' returned non-zero exit status 1 | {'duration': 0.816819, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).', 'type': 'CombineArchiveExecutionError'}, 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp501315` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 0.515492, 'exception': {'message': 'The SED document did not execute successfully:\n\n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).', 'type': 'SedmlExecutionError'}, 'location': 'tmp501315', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp501315:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp501315 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.31831, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.069656, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.027044, 'exception': {'message': 'Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL


ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError | The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0). | CombineArchiveExecutionError | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError | -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cbmpy' returned non-zero exit status 1 | {'duration': 0.961768, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'CombineArchiveExecutionError'}, 'output': "\r\nINFO: No xlwt module available, Excel spreadsheet creation disabled\r\n\r\n\r\n\r\nNo module named 'cplex'\r\n\r\n\r\n\r\nCPLEX not available\r\n\r\n*****\r\nUsing GLPK\r\n*****\r\n\r\n\r\nINFO: No xlrd module available, Excel spreadsheet reading disabled\r\n\r\nCBMPy environment\r\n******************\r\nRevision: r689\r\n\r\n\r\n***********************************************************************\r\n* Welcome to CBMPy (0.7.25) - PySCeS Constraint Based Modelling *\r\n* http://cbmpy.sourceforge.net *\r\n* Copyright(C) Brett G. Olivier 2014 - 2019 *\r\n* Dept. of Systems Bioinformatics *\r\n* Vrije Universiteit Amsterdam, Amsterdam, The Netherlands *\r\n* CBMPy is developed as part of the BeBasic MetaToolKit Project *\r\n* Distributed under the GNU GPL v 3.0 licence, see *\r\n* LICENCE (supplied with this release) for details *\r\n***********************************************************************\r\n\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp942400` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 0.484646, 'exception': {'message': 'The SED document did not execute successfully:\n\n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'SedmlExecutionError'}, 'location': 'tmp942400', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp942400:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp942400 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.2609, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.070918, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.02734, 'exception': {'message': 'UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
❌ FAIL


ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | CombineArchiveExecutionError | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/cobrapy' returned non-zero exit status 1 | {'duration': 0.701509, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'CombineArchiveExecutionError'}, 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp159295` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 0.457999, 'exception': {'message': 'The SED document did not execute successfully:\n\n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'SedmlExecutionError'}, 'location': 'tmp159295', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp159295:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp159295 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.249986, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.076034, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.029343, 'exception': {'message': 'UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
❌ FAIL


ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | CombineArchiveExecutionError | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
| | {'duration': 1.812219, 'exception': None, 'output': "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp471146` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 1.486698, 'exception': None, 'location': 'tmp471146', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp471146:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp471146 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 0.940914, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.31251, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000560', 'duration': 0.148386, 'exception': None, 'id': 'sim1_net1', 'output': "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33m- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmp9ba4jon_/./LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/kisao/utils.py:518: AlgorithmSubstitutedWarning: \x1b[33m'LSODA/LSODAR hybrid method' (KISAO_0000560) will be substituted for 'CVODE' (KISAO_0000019) at substitution policy 'SIMILAR_VARIABLES'.\x1b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", 'simulatorDetails': [{'key': 'methodName', 'value': 'lsoda'}, {'key': 'parameters', 'value': None}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} | ✅ PASS | | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/

| | {'duration': 1.483088, 'exception': None, 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp929877` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 1.186108, 'exception': None, 'location': 'tmp929877', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp929877:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp929877 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 0.67845, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.273456, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000088', 'duration': 0.145111, 'exception': None, 'id': 'sim1_net1', 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33m- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/kisao/utils.py:477: AlgorithmSubstitutedWarning: \x1b[33m'LSODA' (KISAO_0000088) will be substituted for 'CVODE'' (KISAO_0000019) at substitution policy 'SIMILAR_VARIABLES'.\x1b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", 'simulatorDetails': [{'key': 'method', 'value': 'gillespy2.solvers.numpy.ode_solver.ODESolver'}, {'key': 'arguments', 'value': {'integrator': 'lsoda'}}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} | ✅ PASS | | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/

| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/ginsim' returned non-zero exit status 1 | {'duration': 0.648261, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000', 'type': 'CombineArchiveExecutionError'}, 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp912433` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 0.422886, 'exception': {'message': 'The SED document did not execute successfully:\n\n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000', 'type': 'SedmlExecutionError'}, 'location': 'tmp912433', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp912433:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp912433 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.255004, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.060209, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.028571, 'exception': {'message': 'Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL


ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError | The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000 | CombineArchiveExecutionError | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
| | {'duration': 4.565781, 'exception': None, 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp25687` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 4.26234, 'exception': None, 'location': 'tmp25687', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp25687:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp25687 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 0.691012, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.293304, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000086', 'duration': 3.163668, 'exception': None, 'id': 'sim1_net1', 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33m- Variable `DISPLAY__d1_W_fnPop1_0_W` may be invalid.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` may be invalid.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` may be invalid.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` may be invalid.\r\n - XPath could not be validated.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmppsvngun3/./LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/kisao/utils.py:477: AlgorithmSubstitutedWarning: \x1b[33m'Fehlberg method' (KISAO_0000086) will be substituted for 'CVODE'' (KISAO_0000019) at substitution policy 'SIMILAR_VARIABLES'.\x1b[0m\r\n warnings.warn(termcolor.colored(msg, 'yellow'), AlgorithmSubstitutedWarning)\r\n", 'simulatorDetails': [{'key': 'method', 'value': 'simulateSBMLFromFile'}, {'key': 'arguments', 'value': {'dt': 0.0001, 'method': 51, 'print_amount': 0, 'print_interval': 100, 'sim_time': 200.0, 'use_lazy_method': 0}}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} | ✅ PASS | | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/

| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/masspy' returned non-zero exit status 1 | {'duration': 0.724746, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .\n \t`(model, errors) = validate_sbml_model(filename)`\n If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .', 'type': 'CombineArchiveExecutionError'}, 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \x1b[1;31mBioSimulatorsWarning\x1b[0m: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \x1b[1;31mBioSimulatorsWarning\x1b[0m: \x1b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp506340` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n", 'sedDocuments': [{'duration': 0.456899, 'exception': {'message': 'The SED document did not execute successfully:\n\n Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .\n \t`(model, errors) = validate_sbml_model(filename)`\n If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .', 'type': 'SedmlExecutionError'}, 'location': 'tmp506340', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp506340:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp506340 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.241869, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \x1b[1;31mIllogicalVizWarning\x1b[0m: \x1b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\x1b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \x1b[1;31mIllogicalVizWarning\x1b[0m: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \x1b[1;31mIllogicalVizWarning\x1b[0m: \x1b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \x1b[1;31mIllogicalVizWarning\x1b[0m: \x1b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.061892, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.046902, 'exception': {'message': 'Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .\n\t`(model, errors) = validate_sbml_model(filename)`\nIf the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .', 'type': 'MassSBMLError'}, 'id': 'sim1_net1', 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \x1b[1;31mBioSimulatorsWarning\x1b[0m: \x1b[33m- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\x1b[0m\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31 \x1b[1;31mBioSimulatorsWarning\x1b[0m: \x1b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmpwky52hzk/./LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n\x1b[93mWARNING:\x1b[0m \x1b[93mSBML model is written as Level 2 Version 2, will attempt to convert the SBML model from Level 2 Version 2 to Level 3 Version 1 before parsing\x1b[0m\r\n", 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
❌ FAIL


ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError | The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues . | CombineArchiveExecutionError | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError | -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/netpyne' returned non-zero exit status 1 | {'duration': 0.049017, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/neuron' returned non-zero exit status 1 | {'duration': 0.048303, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/opencor' returned non-zero exit status 1 | {'duration': 0.044421, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pyneuroml' returned non-zero exit status 1 | {'duration': 0.049457, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/pysces' returned non-zero exit status 1 | {'duration': 2.024443, 'exception': {'message': "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", 'type': 'CombineArchiveExecutionError'}, 'output': "/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp646866` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 1.715831, 'exception': {'message': "The SED document did not execute successfully:\n\n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", 'type': 'SedmlExecutionError'}, 'location': 'tmp646866', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp646866:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp646866 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ...Check SBML support is at action level 2\r\nSBML file is L2V2\r\n\r\n*******************************************************************\r\nIssues encountered in SBML translation (model processed anyway)\r\nSBML source: /tmp/tmp2f5_yedq.xml\r\n*******************************************************************\r\n\r\nNo free species!? ... help I\'m confused! \r\n\r\n*******************************************************************\r\n\r\nWriting file: /tmp/tmp5bkpfssd.psc\r\n\r\nSBML2PSC\r\nin : /tmp/tmp2f5_yedq.xml\r\nout: /tmp/tmp5bkpfssd.psc\r\nUsing model directory: /Pysces/psc\r\n/tmp/tmp5bkpfssd.psc loading ..... \r\nParsing file: /tmp/tmp5bkpfssd.psc\r\nInfo: No reagents have been fixed\r\nInfo: "I" has been initialised but does not occur in a rate equation\r\nInfo: "SEC" has been initialised but does not occur in a rate equation\r\nInfo: "V" has been initialised but does not occur in a rate equation\r\nInfo: "W" has been initialised but does not occur in a rate equation\r\n \r\n \x1b[31mfailed - \r\nUnable to generate Stoichiometric Matrix! model has:\r\n0 reactions\r\n0 species\r\nwhat did you have in mind?\r\n\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.280421, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.058464, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 1.164507, 'exception': {'message': '\nUnable to generate Stoichiometric Matrix! model has:\n0 reactions\n0 species\nwhat did you have in mind?\n', 'type': 'AssertionError'}, 'id': 'sim1_net1', 'output': '/usr/local/lib/python3.10/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33m- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
❌ FAIL


ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError | The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
| CombineArchiveExecutionError | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError | -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/rbapy' returned non-zero exit status 1 | {'duration': 0.796532, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).', 'type': 'CombineArchiveExecutionError'}, 'output': "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning: \x1b[33mThe COMBINE/OMEX archive may be invalid.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp955994` may be invalid.\r\n - Model `net1` may be invalid.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` may be invalid.\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '0.08 * (V + (0.7 - 0.8 * W)) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'SEC' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'V' does not have a 'units' attribute.\r\n \r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'W' does not have a 'units' attribute.\r\n \x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n", 'sedDocuments': [{'duration': 0.432037, 'exception': {'message': 'The SED document did not execute successfully:\n\n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).', 'type': 'SedmlExecutionError'}, 'location': 'tmp955994', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp955994:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp955994 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.260269, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the X axis because the X data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent x axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning: \x1b[33mCurves have inconsistent y axis scales. All curves will be plotted in linear scale.\x1b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.067685, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.026084, 'exception': {'message': 'Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL


ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError | The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`). | CombineArchiveExecutionError | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError | -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/smoldyn' returned non-zero exit status 1 | {} |
⚠ XFAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.
| Error unknown. The log.yml containing error information was not found. | | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found. | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
| | {'duration': 1.716917, 'exception': None, 'output': "/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\x1b[33mThe SED document is potentially incorrect.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n\r\n/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\x1b[33mThe COMBINE/OMEX archive has warnings.\r\n - OMEX manifests should not contain content entries for themselves.\r\n - The SED-ML file at location `./tmp939328` has warnings.\r\n - Model `net1` has warnings.\r\n - The model file `LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n\r\n", 'sedDocuments': [{'duration': 1.277972, 'exception': None, 'location': 'tmp939328', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp939328:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp939328 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 0.717851, 'exception': None, 'id': 'd1', 'output': '/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: IllogicalVizWarning:\r\n\r\n\x1b[33mA title could not be inferred for the Y axis because the Y data generators have inconsistent names.\x1b[0m\r\n\r\n', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.276434, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000019', 'duration': 0.177556, 'exception': None, 'id': 'sim1_net1', 'output': "/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\x1b[33m- Variable `DISPLAY__d1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\r\n- Variable `OUTPUT__of1_W_fnPop1_0_W` has warnings.\r\n - XPath could not be validated.\r\n- Variable `DISPLAY__d1_V_fnPop1_0_V` has warnings.\r\n - XPath could not be validated.\x1b[0m\r\n\r\n/usr/local/lib/python3.11/site-packages/biosimulators_utils/warnings.py:31: BioSimulatorsWarning:\r\n\r\n\x1b[33mModel `net1` may be invalid.\r\n - The model file `/tmp/tmppw4b118x/./LEMS_NML2_Ex9_FN.sbml` has warnings.\r\n - 2 warnings of type SBML unit consistency (99505). The following is the first warning at line 40, column 12:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the expression '(V - pow(V, 3) / 3 - W + I) / SEC' cannot be fully checked. Unit consistency reported as either no errors or further unit errors related to this object may not be accurate.\r\n - 4 warnings of type Modeling practice (80701). The following is the first warning at line 32, column 12:\r\n - As a principle of best modeling practice, the units of a should be declared rather than be left undefined. Doing so improves the ability of software to check the consistency of units and helps make it easier to detect potential errors in models.\r\n The with the id 'I' does not have a 'units' attribute.\x1b[0m\r\n\r\n", 'simulatorDetails': [{'key': 'method', 'value': 'simulate'}, {'key': 'solver', 'value': 'cvode'}, {'key': 'relative_tolerance', 'value': 1e-06}, {'key': 'absolute_tolerance', 'value': 1e-12}, {'key': 'stiff', 'value': True}, {'key': 'maximum_bdf_order', 'value': 5}, {'key': 'maximum_adams_order', 'value': 12}, {'key': 'maximum_num_steps', 'value': 20000}, {'key': 'maximum_time_step', 'value': 0.0}, {'key': 'minimum_time_step', 'value': 0.0}, {'key': 'initial_time_step', 'value': 0.0}, {'key': 'multiple_steps', 'value': False}, {'key': 'variable_step_size', 'value': False}, {'key': 'max_output_rows', 'value': 100000}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} | ✅ PASS | | | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| | -| 19 |
vcellhttps://github.com/virtualcell/vcell

| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/vcell' returned non-zero exit status 1 | {'duration': 2, 'exception': None, 'output': 'Processing tmp676765. Done', 'sedDocuments': [], 'skipReason': None, 'status': 'SUCCEEDED'} | ✅ PASS | | | |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
| | -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
| Command '-i /root/in/LEMS_NML2_Ex9_FN_missing_xmlns.omex -o /root/out' in image 'ghcr.io/biosimulators/xpp' returned non-zero exit status 1 | {'duration': 0.053755, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | \ No newline at end of file diff --git a/SBML/tests/results_remote.md b/SBML/tests/results_remote.md deleted file mode 100644 index a3e13150..00000000 --- a/SBML/tests/results_remote.md +++ /dev/null @@ -1,23 +0,0 @@ -| | Engine | response | view | download | logs | log_yml | pass / FAIL | Error | Type | links | d1 | Compatibility | links_error | -|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|-----------:|:-------------------------------------------------------------|:-------------------------------------------------------------------------|:--------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
| 201 | https://api.biosimulations.org/runs/67236be3b678b3883bb58255 | https://api.biosimulations.org/results/67236be3b678b3883bb58255/download | https://api.biosimulations.org/logs/67236be3b678b3883bb58255?includeOutput=true | {'duration': 19.462887, 'exception': None, 'output': '', 'sedDocuments': [{'duration': 19.087105, 'exception': None, 'location': 'tmp272581', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp272581:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp272581 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 0.76949, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.30808, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000496', 'duration': 17.918194, 'exception': None, 'id': 'sim1_net1', 'output': '2024-10-31 07:37:31.795 - amici.swig_wrappers - ERROR - [OTHER] AMICI simulation failed: Reached maximum number of steps 10000 before reaching tout at t=99.66.\r\n2024-10-31 07:37:31.795 - amici.swig_wrappers - DEBUG - [BACKTRACE] The previous error occurred at:\r\n2 0x7ffff3462a8b /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0xb5a8b) [0x7ffff3462a8b]\r\n3 0x7ffff3556262 amici::Solver::run(double) const + 34\r\n4 0x7ffff358e5d0 amici::ForwardProblem::workForwardProblem() + 1728\r\n5 0x7ffff3542763 amici::runAmiciSimulation(amici::Solver&, amici::ExpData const*, amici::Model&, bool) + 435\r\n6 0x7ffff34ec280 /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0x13f\r\n', 'simulatorDetails': [{'key': 'solver', 'value': 'amici.amici.CVodeSolver'}, {'key': 'method', 'value': 'amici.swig_wrappers.runAmiciSimulation'}, {'key': 'arguments', 'value': {}}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} |
❌ FAILview
download
logs

ERROR MESSAGE:
Reached maximum number of steps
| Reached maximum number of steps | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
| view
download
logs

ERROR MESSAGE:
Reached maximum number of steps | -| 1 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/67236be50d09353e8f0f2f1b | https://api.biosimulations.org/results/67236be50d09353e8f0f2f1b/download | https://api.biosimulations.org/logs/67236be50d09353e8f0f2f1b?includeOutput=true | {'duration': 0.057608, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 2 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
| 201 | https://api.biosimulations.org/runs/67236be75a60072d20f43152 | https://api.biosimulations.org/results/67236be75a60072d20f43152/download | https://api.biosimulations.org/logs/67236be75a60072d20f43152?includeOutput=true | {'duration': 0.629798, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).', 'type': 'CombineArchiveExecutionError'}, 'output': '', 'sedDocuments': [{'duration': 0.355116, 'exception': {'message': 'The SED document did not execute successfully:\n\n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).', 'type': 'SedmlExecutionError'}, 'location': 'tmp592148', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp592148:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp592148 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.183017, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.059794, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.028318, 'exception': {'message': 'Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\\.|$)` such as `urn:sedml:language:bngl`).', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`). | CombineArchiveExecutionError | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError | -| 3 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
| 201 | https://api.biosimulations.org/runs/67236be8b678b3883bb5825b | https://api.biosimulations.org/results/67236be8b678b3883bb5825b/download | https://api.biosimulations.org/logs/67236be8b678b3883bb5825b?includeOutput=true | {'duration': 0.648446, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).', 'type': 'CombineArchiveExecutionError'}, 'output': '', 'sedDocuments': [{'duration': 0.378495, 'exception': {'message': 'The SED document did not execute successfully:\n\n Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).', 'type': 'SedmlExecutionError'}, 'location': 'tmp294989', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp294989:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp294989 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.18909, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.066243, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.032772, 'exception': {'message': 'Simulation `sim1` is invalid.\n - Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0). | CombineArchiveExecutionError | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError | -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
| 201 | https://api.biosimulations.org/runs/67236bea0d09353e8f0f2f1f | https://api.biosimulations.org/results/67236bea0d09353e8f0f2f1f/download | https://api.biosimulations.org/logs/67236bea0d09353e8f0f2f1f?includeOutput=true | {'duration': 0.824589, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'CombineArchiveExecutionError'}, 'output': "\r\nINFO: No xlwt module available, Excel spreadsheet creation disabled\r\n\r\n\r\n\r\nNo module named 'cplex'\r\n\r\n\r\n\r\nCPLEX not available\r\n\r\n*****\r\nUsing GLPK\r\n*****\r\n\r\n\r\nINFO: No xlrd module available, Excel spreadsheet reading disabled\r\n\r\nCBMPy environment\r\n******************\r\nRevision: r689\r\n\r\n\r\n***********************************************************************\r\n* Welcome to CBMPy (0.7.25) - PySCeS Constraint Based Modelling *\r\n* http://cbmpy.sourceforge.net *\r\n* Copyright(C) Brett G. Olivier 2014 - 2019 *\r\n* Dept. of Systems Bioinformatics *\r\n* Vrije Universiteit Amsterdam, Amsterdam, The Netherlands *\r\n* CBMPy is developed as part of the BeBasic MetaToolKit Project *\r\n* Distributed under the GNU GPL v 3.0 licence, see *\r\n* LICENCE (supplied with this release) for details *\r\n***********************************************************************\r\n\r\n", 'sedDocuments': [{'duration': 0.36662, 'exception': {'message': 'The SED document did not execute successfully:\n\n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'SedmlExecutionError'}, 'location': 'tmp68415', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp68415:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp68415 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.185024, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.06203, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.030037, 'exception': {'message': 'UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | CombineArchiveExecutionError | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
| 201 | https://api.biosimulations.org/runs/67236bec0d09353e8f0f2f22 | https://api.biosimulations.org/results/67236bec0d09353e8f0f2f22/download | https://api.biosimulations.org/logs/67236bec0d09353e8f0f2f22?includeOutput=true | {'duration': 0.618921, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'CombineArchiveExecutionError'}, 'output': '', 'sedDocuments': [{'duration': 0.34842, 'exception': {'message': 'The SED document did not execute successfully:\n\n UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'SedmlExecutionError'}, 'location': 'tmp729767', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp729767:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp729767 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.176036, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.060621, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.03115, 'exception': {'message': 'UniformTimeCourseSimulation `sim1` is not supported.\n - Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:\n - SteadyStateSimulation', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation | CombineArchiveExecutionError | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
| 201 | https://api.biosimulations.org/runs/67236bee5a60072d20f43156 | https://api.biosimulations.org/results/67236bee5a60072d20f43156/download | https://api.biosimulations.org/logs/67236bee5a60072d20f43156?includeOutput=true | {'duration': 1.921198, 'exception': None, 'output': '', 'sedDocuments': [{'duration': 1.674781, 'exception': None, 'location': 'tmp683755', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp683755:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp683755 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 1.092146, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.328085, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000560', 'duration': 0.182535, 'exception': None, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': [{'key': 'methodName', 'value': 'lsoda'}, {'key': 'parameters', 'value': None}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
| view
download
logs | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
| 201 | https://api.biosimulations.org/runs/67236bf00d09353e8f0f2f2b | https://api.biosimulations.org/results/67236bf00d09353e8f0f2f2b/download | https://api.biosimulations.org/logs/67236bf00d09353e8f0f2f2b?includeOutput=true | {'duration': 1.769227, 'exception': None, 'output': '', 'sedDocuments': [{'duration': 1.50523, 'exception': None, 'location': 'tmp965687', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp965687:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp965687 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 0.863854, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.387174, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000088', 'duration': 0.171114, 'exception': None, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': [{'key': 'method', 'value': 'gillespy2.solvers.numpy.ode_solver.ODESolver'}, {'key': 'arguments', 'value': {'integrator': 'lsoda'}}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
| view
download
logs | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
| 201 | https://api.biosimulations.org/runs/67236bf20d09353e8f0f2f30 | https://api.biosimulations.org/results/67236bf20d09353e8f0f2f30/download | https://api.biosimulations.org/logs/67236bf20d09353e8f0f2f30?includeOutput=true | {'duration': 0.583545, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000', 'type': 'CombineArchiveExecutionError'}, 'output': '', 'sedDocuments': [{'duration': 0.327922, 'exception': {'message': 'The SED document did not execute successfully:\n\n Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000', 'type': 'SedmlExecutionError'}, 'location': 'tmp619720', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp619720:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp619720 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.160031, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.057259, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.027538, 'exception': {'message': 'Simulation `sim1` is invalid.\n - The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:\n Output start time: 0.0\n Output end time: 200.0\n Number of steps: 20000', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000 | CombineArchiveExecutionError | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
| 201 | https://api.biosimulations.org/runs/67236bf45a60072d20f4315e | https://api.biosimulations.org/results/67236bf45a60072d20f4315e/download | https://api.biosimulations.org/logs/67236bf45a60072d20f4315e?includeOutput=true | {'duration': 7.991115, 'exception': None, 'output': '', 'sedDocuments': [{'duration': 7.724422, 'exception': None, 'location': 'tmp339367', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp339367:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp339367 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 0.930744, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.418791, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000086', 'duration': 6.279131, 'exception': None, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': [{'key': 'method', 'value': 'simulateSBMLFromFile'}, {'key': 'arguments', 'value': {'dt': 0.0001, 'method': 51, 'print_amount': 0, 'print_interval': 100, 'sim_time': 200.0, 'use_lazy_method': 0}}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
| view
download
logs | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
| 201 | https://api.biosimulations.org/runs/67236bf65a60072d20f43165 | https://api.biosimulations.org/results/67236bf65a60072d20f43165/download | https://api.biosimulations.org/logs/67236bf65a60072d20f43165?includeOutput=true | {'duration': 2.497808, 'exception': None, 'output': '', 'sedDocuments': [{'duration': 1.949708, 'exception': None, 'location': 'tmp317536', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp317536:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp317536 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 1.172358, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.453667, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000019', 'duration': 0.222991, 'exception': None, 'id': 'sim1_net1', 'output': "\x1b[93mWARNING:\x1b[0m \x1b[93mModel does not contain SBML fbc package\x1b[0m\r\n\x1b[93mWARNING:\x1b[0m \x1b[93mModel does not contain SBML groups package\x1b[0m\r\n\x1b[93mWARNING:\x1b[0m \x1b[93mNo metabolites in model.\x1b[0m\r\n\x1b[93mWARNING:\x1b[0m \x1b[93mNo reactions in model.\x1b[0m\r\n\x1b[93mWARNING:\x1b[0m \x1b[93mNo compartments found in model. Therefore creating compartment 'compartment' for entire model.\x1b[0m\r\n", 'simulatorDetails': [{'key': 'integrator', 'value': 'cvode'}, {'key': 'relative_tolerance', 'value': 1e-06}, {'key': 'absolute_tolerance', 'value': 1e-12}, {'key': 'stiff', 'value': True}, {'key': 'maximum_bdf_order', 'value': 5}, {'key': 'maximum_adams_order', 'value': 12}, {'key': 'maximum_num_steps', 'value': 20000}, {'key': 'maximum_time_step', 'value': 0.0}, {'key': 'minimum_time_step', 'value': 0.0}, {'key': 'initial_time_step', 'value': 0.0}, {'key': 'multiple_steps', 'value': False}, {'key': 'variable_step_size', 'value': False}, {'key': 'max_output_rows', 'value': 100000}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
| view
download
logs | -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/67236bf75a60072d20f4316e | https://api.biosimulations.org/results/67236bf75a60072d20f4316e/download | https://api.biosimulations.org/logs/67236bf75a60072d20f4316e?includeOutput=true | {'duration': 0.045122, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/67236bf95a60072d20f43179 | https://api.biosimulations.org/results/67236bf95a60072d20f43179/download | https://api.biosimulations.org/logs/67236bf95a60072d20f43179?includeOutput=true | {'duration': 0.046823, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
| 201 | https://api.biosimulations.org/runs/67236bfbb678b3883bb5827f | https://api.biosimulations.org/results/67236bfbb678b3883bb5827f/download | https://api.biosimulations.org/logs/67236bfbb678b3883bb5827f?includeOutput=true | {'duration': 0.023465, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
| 201 | https://api.biosimulations.org/runs/67236bfd0d09353e8f0f2f67 | https://api.biosimulations.org/results/67236bfd0d09353e8f0f2f67/download | https://api.biosimulations.org/logs/67236bfd0d09353e8f0f2f67?includeOutput=true | {'duration': 0.049696, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
| 201 | https://api.biosimulations.org/runs/67236bff5a60072d20f43190 | https://api.biosimulations.org/results/67236bff5a60072d20f43190/download | https://api.biosimulations.org/logs/67236bff5a60072d20f43190?includeOutput=true | {'duration': 1.904896, 'exception': {'message': "The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", 'type': 'CombineArchiveExecutionError'}, 'output': 'libtk8.6.so: cannot open shared object file: No such file or directory\r\n\r\nPySCeS defaults to matplotlib\'s TKagg backend if not specified in the user configuration file, set "matplotlib_backend = " \r\nMatplotlib interface loaded (pysces.plt.m)\r\nPitcon routines available\r\nNLEQ2 routines available\r\nSBML support available\r\nYou are using NumPy (2.1.2) with SciPy (1.14.1)\r\nAssimulo CVode available\r\nRateChar is available\r\nParallel scanner is available\r\n\r\nPySCeS environment\r\n******************\r\npysces.model_dir = /home/FCAM/crbmapi/Pysces/psc\r\npysces.output_dir = /home/FCAM/crbmapi/Pysces\r\n\r\n\r\n***********************************************************************\r\n* Welcome to PySCeS (1.2.2) - Python Simulator for Cellular Systems *\r\n* http://pysces.sourceforge.net *\r\n* Copyright(C) B.G. Olivier, J.M. Rohwer, J.-H.S. Hofmeyr, 2004-2024 *\r\n* Triple-J Group for Molecular Cell Physiology *\r\n* Stellenbosch University, ZA and VU University Amsterdam, NL *\r\n* PySCeS is distributed under the PySCeS (BSD style) licence, see *\r\n* LICENCE.txt (supplied with this release) for details *\r\n* Please cite PySCeS with: doi:10.1093/bioinformatics/bti046 *\r\n***********************************************************************\r\n', 'sedDocuments': [{'duration': 1.66697, 'exception': {'message': "The SED document did not execute successfully:\n\n :\n Unable to generate Stoichiometric Matrix! model has:\n 0 reactions\n 0 species\n what did you have in mind?\n ", 'type': 'SedmlExecutionError'}, 'location': 'tmp622954', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp622954:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp622954 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ...Check SBML support is at action level 2\r\nSBML file is L2V2\r\n\r\n*******************************************************************\r\nIssues encountered in SBML translation (model processed anyway)\r\nSBML source: /tmp/tmpa5bjmb7u.xml\r\n*******************************************************************\r\n\r\nNo free species!? ... help I\'m confused! \r\n\r\n*******************************************************************\r\n\r\nWriting file: /tmp/tmp_hzmd6te.psc\r\n\r\nSBML2PSC\r\nin : /tmp/tmpa5bjmb7u.xml\r\nout: /tmp/tmp_hzmd6te.psc\r\nUsing model directory: /home/FCAM/crbmapi/Pysces/psc\r\n/tmp/tmp_hzmd6te.psc loading ..... \r\nParsing file: /tmp/tmp_hzmd6te.psc\r\nInfo: No reagents have been fixed\r\nInfo: "I" has been initialised but does not occur in a rate equation\r\nInfo: "SEC" has been initialised but does not occur in a rate equation\r\nInfo: "V" has been initialised but does not occur in a rate equation\r\nInfo: "W" has been initialised but does not occur in a rate equation\r\n \r\n \x1b[31mfailed - \r\nUnable to generate Stoichiometric Matrix! model has:\r\n0 reactions\r\n0 species\r\nwhat did you have in mind?\r\n\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.40649, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.059545, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 1.111955, 'exception': {'message': '\nUnable to generate Stoichiometric Matrix! model has:\n0 reactions\n0 species\nwhat did you have in mind?\n', 'type': 'AssertionError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?
| CombineArchiveExecutionError | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError | -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
| 201 | https://api.biosimulations.org/runs/67236c000d09353e8f0f2f7d | https://api.biosimulations.org/results/67236c000d09353e8f0f2f7d/download | https://api.biosimulations.org/logs/67236c000d09353e8f0f2f7d?includeOutput=true | {'duration': 0.541316, 'exception': {'message': 'The COMBINE/OMEX did not execute successfully:\n\n The SED document did not execute successfully:\n \n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).', 'type': 'CombineArchiveExecutionError'}, 'output': '', 'sedDocuments': [{'duration': 0.302992, 'exception': {'message': 'The SED document did not execute successfully:\n\n Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).', 'type': 'SedmlExecutionError'}, 'location': 'tmp274281', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp274281:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp274281 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[31mfailed\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[36mqueued\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SKIPPED'}, {'id': 'curve_W', 'status': 'SKIPPED'}], 'duration': 0.142987, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SKIPPED'}, {'id': 'ex9_V', 'status': 'SKIPPED'}, {'id': 'ex9_W', 'status': 'SKIPPED'}], 'duration': 0.056954, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SKIPPED'}], 'skipReason': None, 'status': 'FAILED', 'tasks': [{'algorithm': None, 'duration': 0.025798, 'exception': {'message': 'Language for model `net1` is not supported.\n - Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\\.|$)` such as `urn:sedml:language:rba`).', 'type': 'ValueError'}, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': None, 'skipReason': None, 'status': 'FAILED'}]}], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`). | CombineArchiveExecutionError | view
download
logs | plot |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
| view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError | -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
| 201 | https://api.biosimulations.org/runs/67236c025a60072d20f431ab | https://api.biosimulations.org/results/67236c025a60072d20f431ab/download | https://api.biosimulations.org/logs/67236c025a60072d20f431ab?includeOutput=true | {'duration': 0.059642, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
| 201 | https://api.biosimulations.org/runs/67236c045a60072d20f431c1 | https://api.biosimulations.org/results/67236c045a60072d20f431c1/download | https://api.biosimulations.org/logs/67236c045a60072d20f431c1?includeOutput=true | {'duration': 2.269569, 'exception': None, 'output': '', 'sedDocuments': [{'duration': 1.79682, 'exception': None, 'location': 'tmp942070', 'output': 'Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n tmp942070:\r\n Tasks (1):\r\n sim1_net1\r\n Reports (1):\r\n ex9: 3 data sets\r\n Plots (1):\r\n d1: 2 curves\r\n\r\nExecuting SED-ML file 1: tmp942070 ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `sim1_net1`\r\n Outputs:\r\n `d1`\r\n `ex9`\r\n Executing task 1: `sim1_net1`\r\n Executing simulation ... \x1b[34msucceeded\x1b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `d1` ... \x1b[34msucceeded\x1b[0m\r\n Generating output 2: `ex9` ...', 'outputs': [{'curves': [{'id': 'curve_V', 'status': 'SUCCEEDED'}, {'id': 'curve_W', 'status': 'SUCCEEDED'}], 'duration': 1.085349, 'exception': None, 'id': 'd1', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}, {'dataSets': [{'id': 'ex9_time', 'status': 'SUCCEEDED'}, {'id': 'ex9_V', 'status': 'SUCCEEDED'}, {'id': 'ex9_W', 'status': 'SUCCEEDED'}], 'duration': 0.39383, 'exception': None, 'id': 'ex9', 'output': '', 'skipReason': None, 'status': 'SUCCEEDED'}], 'skipReason': None, 'status': 'SUCCEEDED', 'tasks': [{'algorithm': 'KISAO_0000019', 'duration': 0.210348, 'exception': None, 'id': 'sim1_net1', 'output': '', 'simulatorDetails': [{'key': 'method', 'value': 'simulate'}, {'key': 'solver', 'value': 'cvode'}, {'key': 'relative_tolerance', 'value': 1e-06}, {'key': 'absolute_tolerance', 'value': 1e-12}, {'key': 'stiff', 'value': True}, {'key': 'maximum_bdf_order', 'value': 5}, {'key': 'maximum_adams_order', 'value': 12}, {'key': 'maximum_num_steps', 'value': 20000}, {'key': 'maximum_time_step', 'value': 0.0}, {'key': 'minimum_time_step', 'value': 0.0}, {'key': 'initial_time_step', 'value': 0.0}, {'key': 'multiple_steps', 'value': False}, {'key': 'variable_step_size', 'value': False}, {'key': 'max_output_rows', 'value': 100000}], 'skipReason': None, 'status': 'SUCCEEDED'}]}], 'skipReason': None, 'status': 'SUCCEEDED'} |
✅ PASSview
download
logs
| | | view
download
logs | plot |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
| view
download
logs | -| 19 |
vcellhttps://github.com/virtualcell/vcell
| 201 | https://api.biosimulations.org/runs/67236c075a60072d20f431cb | https://api.biosimulations.org/results/67236c075a60072d20f431cb/download | https://api.biosimulations.org/logs/67236c075a60072d20f431cb?includeOutput=true | {'duration': None, 'exception': None, 'output': None, 'sedDocuments': [], 'skipReason': None, 'status': 'QUEUED'} |
Noneview
download
logs
| | | view
download
logs | |
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
| view
download
logs | -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
| 201 | https://api.biosimulations.org/runs/67236c09b678b3883bb582d8 | https://api.biosimulations.org/results/67236c09b678b3883bb582d8/download | https://api.biosimulations.org/logs/67236c09b678b3883bb582d8?includeOutput=true | {'duration': 0.060764, 'exception': {'message': "No module named 'libsbml'", 'type': 'ModuleNotFoundError'}, 'output': '', 'sedDocuments': [], 'skipReason': None, 'status': 'FAILED'} |
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| No module named 'libsbml' | ModuleNotFoundError | view
download
logs | |
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
| view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError | \ No newline at end of file From c07059a7b729bf3cac938dfba5ba34af33e083e5 Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Fri, 1 Nov 2024 14:56:14 +0000 Subject: [PATCH 22/24] add 'expected fail' to foldout menu for XFAIL cases --- .../results_compatibility_biosimulators.md | 46 +++++++++---------- utils/__init__.py | 10 ++-- 2 files changed, 30 insertions(+), 26 deletions(-) diff --git a/SBML/tests/results_compatibility_biosimulators.md b/SBML/tests/results_compatibility_biosimulators.md index f9443c5c..ebef00b8 100644 --- a/SBML/tests/results_compatibility_biosimulators.md +++ b/SBML/tests/results_compatibility_biosimulators.md @@ -1,23 +1,23 @@ -| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | -|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
|
❌ FAILview
download
logs

ERROR MESSAGE:
Reached maximum number of steps
|
❌ FAIL

ERROR MESSAGE:
Reached maximum number of steps
| plot | plot | -| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|
✅ PASSview
download
logs
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.
| | | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | -| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
❌ FAILview
download
logs

ERROR MESSAGE:
status: QUEUED
|
❌ FAIL

ERROR MESSAGE:
Runtime Exception
| | | -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILThe file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
⚠ XFAILview
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file +| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | +|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------| +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
|
❌ FAILview
download
logs

ERROR MESSAGE:
Reached maximum number of steps
|
❌ FAIL

ERROR MESSAGE:
Reached maximum number of steps
| plot | plot | +| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL



ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL



ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL



ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL



ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|
✅ PASSview
download
logs
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL



ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL



ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL



ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL



ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL



ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL



ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.
| | | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | +| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
❌ FAILview
download
logs

ERROR MESSAGE:
status: QUEUED
|
❌ FAIL

ERROR MESSAGE:
Runtime Exception
| | | +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL



ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file diff --git a/utils/__init__.py b/utils/__init__.py index 43a609a1..466452da 100644 --- a/utils/__init__.py +++ b/utils/__init__.py @@ -1083,15 +1083,19 @@ def create_results_table(results, sbml_filepath, sedml_filepath, output_dir): # add xfail to engines that do not support sbml sbml_incompatible_ENGINES = [e for e in ENGINES.keys() if 'sbml' not in ENGINES[e]['formats'][0]] for e in sbml_incompatible_ENGINES: - compatibility_content = check_file_compatibility_test(e, sbml_filepath, sedml_filepath) - results_table.loc[results_table[ENGINE] == e, COMPAT] = collapsible_content(compatibility_content[1], title=f'{xfail_html}') + compatibility = check_file_compatibility_test(e, sbml_filepath, sedml_filepath) + compatibility_content = f'EXPECTED FAIL

{compatibility[1]}' + results_table.loc[results_table[ENGINE] == e, COMPAT] = collapsible_content(compatibility_content, title=f'{xfail_html}') results_table.loc[results_table[ENGINE] == e, PASS_FAIL] = f'{xfail_html}' for e in results_table[ENGINE]: links = "" error_message = "" error_type = "" + expected_fail = "" + if results_table.loc[results_table[ENGINE] == e, PASS_FAIL].values[0] == f'{xfail_html}': + expected_fail = f'EXPECTED FAIL

' if len(results_table.loc[results_table[ENGINE] == e, ERROR].values[0]) > 1: error_message = f'

ERROR MESSAGE:
{results_table.loc[results_table[ENGINE] == e, ERROR].values[0]}' if "links" in results_table.columns: @@ -1100,7 +1104,7 @@ def create_results_table(results, sbml_filepath, sedml_filepath, output_dir): if len(results_table.loc[results_table[ENGINE] == e, TYPE].values[0])>1: error_type = f'

ERROR TYPE:
{results_table.loc[results_table[ENGINE] == e, TYPE].values[0]}' - links_error = f'{links}{error_message}{error_type}' + links_error = f'{expected_fail}{links}{error_message}{error_type}' results_table.loc[results_table[ENGINE] == e, "links_error"] = links_error # add links as collapsible content to pass / fail column From 059bf6d2cc05d151b9cccf1655457be199729d81 Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Fri, 1 Nov 2024 15:03:37 +0000 Subject: [PATCH 23/24] improve error message formatting in results table --- .../results_compatibility_biosimulators.md | 46 +++++++++---------- utils/__init__.py | 5 +- 2 files changed, 26 insertions(+), 25 deletions(-) diff --git a/SBML/tests/results_compatibility_biosimulators.md b/SBML/tests/results_compatibility_biosimulators.md index ebef00b8..e4cedfa3 100644 --- a/SBML/tests/results_compatibility_biosimulators.md +++ b/SBML/tests/results_compatibility_biosimulators.md @@ -1,23 +1,23 @@ -| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | -|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------| -| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
|
❌ FAILview
download
logs

ERROR MESSAGE:
Reached maximum number of steps
|
❌ FAIL

ERROR MESSAGE:
Reached maximum number of steps
| plot | plot | -| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL



ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL



ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL



ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | -| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | -| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL



ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | -| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|
✅ PASSview
download
logs
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL



ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL



ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL



ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL



ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | -| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL



ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | -| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL



ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.
| | | -| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
|
✅ PASSview
download
logs
| ✅ PASS | plot | plot | -| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
❌ FAILview
download
logs

ERROR MESSAGE:
status: QUEUED
|
❌ FAIL

ERROR MESSAGE:
Runtime Exception
| | | -| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL



ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file +| | Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) | +|---:|:-------------------------------------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------|:----------------------------------------------------| +| 0 |
amicihttps://docs.biosimulators.org/Biosimulators_AMICI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with amici
|
❌ FAILview
download
logs

ERROR MESSAGE:
Reached maximum number of steps

|
❌ FAILERROR MESSAGE:
Reached maximum number of steps

| plot | plot | +| 1 |
bionetgenhttps://docs.biosimulators.org/Biosimulators_BioNetGen/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with bionetgen. ['BNGL', 'SED-ML'] are compatible with bionetgen
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in BNGL format (e.g., `sed:model/@language` must match `^urn:sedml:language:bngl(\.$)` such as `urn:sedml:language:bngl`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 2 |
boolnethttps://docs.biosimulators.org/Biosimulators_BoolNet/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with boolnet. ['SBML-qual', 'SED-ML'] are compatible with boolnet
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- Number of points (20000) must be equal to the difference between the output end (200.0) and start times (0.0).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 3 |
brian2https://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with brian2. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with brian2
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 4 |
cbmpyhttps://docs.biosimulators.org/Biosimulators_CBMPy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cbmpy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 5 |
cobrapyhttps://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with cobrapy
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

UniformTimeCourseSimulation `sim1` is not supported.
- Simulation sim1 of type `UniformTimeCourseSimulation` is not supported. Simulation must be an instance of one of the following:
- SteadyStateSimulation

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 6 |
copasihttps://docs.biosimulators.org/Biosimulators_COPASI/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with copasi
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 7 |
gillespy2https://docs.biosimulators.org/Biosimulators_GillesPy2/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with gillespy2
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 8 |
ginsimhttps://docs.biosimulators.org/Biosimulators_GINsim/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with ginsim. ['SBML-qual', 'SED-ML'] are compatible with ginsim
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Simulation `sim1` is invalid.
- The interval between the output start and time time must be an integer multiple of the number of steps, not `0.01`:
Output start time: 0.0
Output end time: 200.0
Number of steps: 20000

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 9 |
libsbmlsimhttps://docs.biosimulators.org/Biosimulators_LibSBMLSim/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with libsbmlsim
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 10 |
masspyhttps://docs.biosimulators.org/Biosimulators_MASSpy/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with masspy
|
✅ PASSview
download
logs

|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Something went wrong reading the SBML model. Most likely the SBML model is not valid. Please check that your model is valid using the `mass.io.sbml.validate_sbml_model` function or via the online validator at http://sbml.org/validator .
`(model, errors) = validate_sbml_model(filename)`
If the model is valid and cannot be read please open an issue at https://github.com/SBRG/masspy/issues .

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 11 |
netpynehttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with netpyne. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with netpyne
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 12 |
neuronhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with neuron. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with neuron
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 13 |
opencorhttps://docs.biosimulators.org/Biosimulators_OpenCOR/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with opencor. ['CellML', 'SED-ML'] are compatible with opencor
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 14 |
pyneuromlhttps://docs.biosimulators.org/Biosimulators_pyNeuroML/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with pyneuroml. ['NeuroML', 'SED-ML', 'LEMS', 'SED-ML'] are compatible with pyneuroml
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | +| 15 |
pysceshttps://docs.biosimulators.org/Biosimulators_PySCeS/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with pysces
|
❌ FAILview
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
|
❌ FAILERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

class 'AssertionError':
Unable to generate Stoichiometric Matrix! model has:
0 reactions
0 species
what did you have in mind?


ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 16 |
rbapyhttps://docs.biosimulators.org/Biosimulators_RBApy/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with rbapy. ['RBApy', 'SED-ML'] are compatible with rbapy
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:

The SED document did not execute successfully:

Language for model `net1` is not supported.
- Model language `urn:sedml:language:sbml` is not supported. Models must be in RBA format (e.g., `sed:model/@language` must match `^urn:sedml:language:rba(\.$)` such as `urn:sedml:language:rba`).

ERROR TYPE:
CombineArchiveExecutionError
| plot | plot | +| 17 |
smoldynhttps://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with smoldyn. ['Smoldyn', 'SED-ML'] are compatible with smoldyn
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.

| | | +| 18 |
telluriumhttps://docs.biosimulators.org/Biosimulators_tellurium/
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML'] are compatible with tellurium
|
✅ PASSview
download
logs

| ✅ PASS | plot | plot | +| 19 |
vcellhttps://github.com/virtualcell/vcell
|
✅ PASSThe file extensions ('sbml', 'sedml') suggest the input file types are '['SBML', 'SED-ML']'. ['SBML', 'SED-ML', 'BNGL', 'SED-ML'] are compatible with vcell
|
❌ FAILview
download
logs

ERROR MESSAGE:
status: QUEUED

|
❌ FAILERROR MESSAGE:
Runtime Exception

| | | +| 20 |
xpphttps://docs.biosimulators.org/Biosimulators_XPP/
|
⚠ XFAILEXPECTED FAIL

The file extensions ('sbml', 'sedml') suggest the input file types are not compatibe with xpp. ['XPP', 'SED-ML'] are compatible with xpp
|
⚠ XFAILEXPECTED FAIL

view
download
logs

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
|
⚠ XFAILEXPECTED FAIL

ERROR MESSAGE:
No module named 'libsbml'

ERROR TYPE:
ModuleNotFoundError
| | | \ No newline at end of file diff --git a/utils/__init__.py b/utils/__init__.py index 466452da..6b41d690 100644 --- a/utils/__init__.py +++ b/utils/__init__.py @@ -1097,12 +1097,13 @@ def create_results_table(results, sbml_filepath, sedml_filepath, output_dir): if results_table.loc[results_table[ENGINE] == e, PASS_FAIL].values[0] == f'{xfail_html}': expected_fail = f'EXPECTED FAIL

' if len(results_table.loc[results_table[ENGINE] == e, ERROR].values[0]) > 1: - error_message = f'

ERROR MESSAGE:
{results_table.loc[results_table[ENGINE] == e, ERROR].values[0]}' + error_message = f'ERROR MESSAGE:
{results_table.loc[results_table[ENGINE] == e, ERROR].values[0]}

' if "links" in results_table.columns: links = results_table.loc[results_table[ENGINE] == e, "links"].values[0] + links = f'{links}

' if TYPE in results_table.columns: if len(results_table.loc[results_table[ENGINE] == e, TYPE].values[0])>1: - error_type = f'

ERROR TYPE:
{results_table.loc[results_table[ENGINE] == e, TYPE].values[0]}' + error_type = f'ERROR TYPE:
{results_table.loc[results_table[ENGINE] == e, TYPE].values[0]}' links_error = f'{expected_fail}{links}{error_message}{error_type}' results_table.loc[results_table[ENGINE] == e, "links_error"] = links_error From 7f16fe82a2b5b6f38d2553c9a72a73d191c01318 Mon Sep 17 00:00:00 2001 From: Stella <30465823+stellaprins@users.noreply.github.com> Date: Mon, 4 Nov 2024 11:06:10 +0000 Subject: [PATCH 24/24] update descriptions of scripts --- SBML/tests/test_biosimulators_local.py | 3 +-- SBML/tests/test_biosimulators_remote.py | 4 ++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/SBML/tests/test_biosimulators_local.py b/SBML/tests/test_biosimulators_local.py index e206d92a..d96c3968 100644 --- a/SBML/tests/test_biosimulators_local.py +++ b/SBML/tests/test_biosimulators_local.py @@ -2,8 +2,7 @@ """ This script tests the compatibility of different biosimulation engines with a given SBML and SED-ML file. -It runs each engine and records the result (pass/fail) and any error messages encountered during the simulation. -The results are then displayed in a table and saved to a markdown file. +It runs each engine and saves a JSON file with the log.yml file (as a dict), and the d1 plot for each engine. """ import sys diff --git a/SBML/tests/test_biosimulators_remote.py b/SBML/tests/test_biosimulators_remote.py index b494bf0b..d4227ec4 100644 --- a/SBML/tests/test_biosimulators_remote.py +++ b/SBML/tests/test_biosimulators_remote.py @@ -2,8 +2,8 @@ """ This script tests the compatibility of different biosimulation engines with a given SBML and SED-ML file. -It runs each engine and records the result (pass/fail) and any error messages encountered during the simulation. -The results are then displayed in a table and saved to a markdown file. +It runs each engine and saves the d1 plots, and a JSON file containing the log.yml file (as dict) and the +links for accessing the remote results, for each engine. """ import sys