diff --git a/.github/workflows/non-omv-local.yml b/.github/workflows/non-omv-local.yml
index fb60d8bd..bd71c20f 100644
--- a/.github/workflows/non-omv-local.yml
+++ b/.github/workflows/non-omv-local.yml
@@ -1,49 +1,45 @@
-
name: Testing non OMV scripts (locally using docker)
on:
push:
- branches: [ master, development, experimental, test*, feature/* ]
+ branches: [master, development, experimental, test*, feature/*]
pull_request:
- branches: [ master, development, experimental, test*, feature/* ]
+ branches: [master, development, experimental, test*, feature/*]
jobs:
build:
-
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
- python-version: [ 3.9, "3.10" ]
+ python-version: [3.9, "3.10"]
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v4
- - name: Set up Python ${{ matrix.python-version }}
- uses: actions/setup-python@v5
- with:
- python-version: ${{ matrix.python-version }}
+ - name: Set up Python ${{ matrix.python-version }}
+ uses: actions/setup-python@v5
+ with:
+ python-version: ${{ matrix.python-version }}
- - name: Install dependencies
- run: |
+ - name: Install dependencies
+ run: |
pip install git+https://github.com/OpenSourceBrain/osb-model-validation
pip install pyNeuroML[annotations]
pip install python-libsedml
pip install tellurium
- sudo apt-get install libncurses5 --fix-missing
+ sudo apt-get install libncurses6 --fix-missing
omv install jneuroml
pip install "pymetadata>=0.4.2" docker "requests<2.32.0"
- - name: Final version info
- run: |
- omv list -V # list installed engines
- pip list
- env
+ - name: Final version info
+ run: |
+ omv list -V # list installed engines
+ pip list
+ env
- - name: Test local biosimulators compatibility table creation
- run: |
+ - name: Test local biosimulators compatibility table creation
+ run: |
cd SBML/tests
sudo rm -rf output
python ./test_biosimulators_local.py --output-dir=tmp_plots
-
-
\ No newline at end of file
diff --git a/.github/workflows/non-omv-remote.yml b/.github/workflows/non-omv-remote.yml
index 89fa8980..6680ea33 100644
--- a/.github/workflows/non-omv-remote.yml
+++ b/.github/workflows/non-omv-remote.yml
@@ -1,55 +1,50 @@
-
name: Testing non OMV scripts (remotely via URLs)
on:
push:
- branches: [ master, development, experimental, test*, feature/* ]
+ branches: [master, development, experimental, test*, feature/*]
pull_request:
- branches: [ master, development, experimental, test*, feature/* ]
+ branches: [master, development, experimental, test*, feature/*]
jobs:
build:
-
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
- python-version: [ 3.9, "3.10" ]
+ python-version: [3.9, "3.10"]
steps:
- - uses: actions/checkout@v4
-
- - name: Set up Python ${{ matrix.python-version }}
- uses: actions/setup-python@v5
- with:
- python-version: ${{ matrix.python-version }}
-
- - name: Install dependencies
- run: |
- pip install git+https://github.com/OpenSourceBrain/osb-model-validation
- pip install pyNeuroML[annotations]
- pip install python-libsedml
- pip install tellurium
- sudo apt-get install libncurses5 --fix-missing
- omv install jneuroml
- pip install "pymetadata>=0.4.2" docker "requests<2.32.0"
-
-
- - name: Final version info
- run: |
- omv list -V # list installed engines
- pip list
- env
-
- - name: Check health status of biosimulations API
- run: |
- cd SBML/tests
- python ./test_biosimulators_api.py
-
- - name: Test remote biosimulators compatibility table creation
- run: |
- cd SBML/tests
- sudo rm -rf output
- python ./test_biosimulators_remote.py --output-dir=tmp_plots
-
-
\ No newline at end of file
+ - uses: actions/checkout@v4
+
+ - name: Set up Python ${{ matrix.python-version }}
+ uses: actions/setup-python@v5
+ with:
+ python-version: ${{ matrix.python-version }}
+
+ - name: Install dependencies
+ run: |
+ pip install git+https://github.com/OpenSourceBrain/osb-model-validation
+ pip install pyNeuroML[annotations]
+ pip install python-libsedml
+ pip install tellurium
+ sudo apt-get install libncurses6 --fix-missing
+ omv install jneuroml
+ pip install "pymetadata>=0.4.2" docker "requests<2.32.0"
+
+ - name: Final version info
+ run: |
+ omv list -V # list installed engines
+ pip list
+ env
+
+ - name: Check health status of biosimulations API
+ run: |
+ cd SBML/tests
+ python ./test_biosimulators_api.py
+
+ - name: Test remote biosimulators compatibility table creation
+ run: |
+ cd SBML/tests
+ sudo rm -rf output
+ python ./test_biosimulators_remote.py --output-dir=tmp_plots
diff --git a/.github/workflows/non-omv.yml b/.github/workflows/non-omv.yml
index 9ca14b48..d05c0de7 100644
--- a/.github/workflows/non-omv.yml
+++ b/.github/workflows/non-omv.yml
@@ -1,72 +1,70 @@
-
name: Testing non OMV scripts
on:
push:
- branches: [ master, development, experimental, test*, feature/* ]
+ branches: [master, development, experimental, test*, feature/*]
pull_request:
- branches: [ master, development, experimental, test*, feature/* ]
-
+ branches: [master, development, experimental, test*, feature/*]
+
jobs:
build:
-
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
- python-version: [ "3.10", "3.11" ]
+ python-version: ["3.10", "3.11"]
steps:
- - uses: actions/checkout@v4
+ - uses: actions/checkout@v4
+
+ - name: Set up Python ${{ matrix.python-version }}
+ uses: actions/setup-python@v5
+ with:
+ python-version: ${{ matrix.python-version }}
- - name: Set up Python ${{ matrix.python-version }}
- uses: actions/setup-python@v5
- with:
- python-version: ${{ matrix.python-version }}
+ - name: Install OMV
+ run: |
+ pip install git+https://github.com/OpenSourceBrain/osb-model-validation
- - name: Install OMV
- run: |
- pip install git+https://github.com/OpenSourceBrain/osb-model-validation
+ - name: Install dependencies
+ run: |
+ pip install .
- - name: Run tests
- run: |
- omv install jneuroml
- - name: Test tellurium
- run: |
- pip install tellurium
- sudo apt-get install libncurses5 --fix-missing
- cd tellurium
- python simple.py -nogui
+ - name: Test tellurium
+ run: |
+ sudo apt-get install libncurses6 --fix-missing
+ cd tellurium
+ python simple.py -nogui
- cd ../SBML/tests
- pip install python-libsedml
- python ./test_tellurium.py
+ cd ../SBML/tests
+
+ python ./test_tellurium.py
- - name: Test validity of files
- run: |
- pip install pyNeuroML pyNeuroML[annotations]
- cd SBML/tests
- ./validateAll.sh
+ - name: Test validity of files
+ run: |
+ pip install pyNeuroML pyNeuroML[annotations]
+ cd SBML/tests
+ ./validateAll.sh
- - name: Test omex file creation
- run: |
- pip install "pymetadata>=0.4.2" docker "requests<2.32.0"
- cd SBML/tests
- python ./test_biosimulators_docker.py
+ - name: Test omex file creation
+ run: |
+ pip install "pymetadata>=0.4.2" docker "requests<2.32.0"
+ cd SBML/tests
+ python ./test_biosimulators_docker.py
- - name: Test test_suite output regeneration
- run: |
- cd test_suite
- ./test_results_regeneration.sh
+ - name: Test test_suite output regeneration
+ run: |
+ cd test_suite
+ ./test_results_regeneration.sh
- - name: Final version info
- run: |
- omv list -V # list installed engines
- pip list
- env
+ - name: Final version info
+ run: |
+ omv list -V # list installed engines
+ pip list
+ env
- - name: Create results table
- run: |
- cd SBML/tests
- python ./test_creation_combined_results_table.py
\ No newline at end of file
+ - name: Create results table
+ run: |
+ cd SBML/tests
+ python ./test_creation_combined_results_table.py
diff --git a/.github/workflows/omv-ci.yml b/.github/workflows/omv-ci.yml
index 8819ba66..c406d6c7 100644
--- a/.github/workflows/omv-ci.yml
+++ b/.github/workflows/omv-ci.yml
@@ -2,38 +2,48 @@ name: Continuous build using OMV
on:
push:
- branches: [ master, development, experimental, test*, feature/* ]
+ branches: [master, development, experimental, test*, feature/*]
pull_request:
- branches: [ master, development, experimental, test*, feature/* ]
+ branches: [master, development, experimental, test*, feature/*]
jobs:
build:
-
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
- python-version: [ "3.10", "3.11" ]
- engine: [ jLEMS, jNeuroML, jNeuroML_NEURON, jNeuroML_validate, PyLEMS, PyLEMS_NeuroML2, jNeuroML_Brian2, Brian2, pyNeuroML_validate_sbml ]
+ python-version: ["3.10", "3.11"]
+ engine:
+ [
+ jLEMS,
+ jNeuroML,
+ jNeuroML_NEURON,
+ jNeuroML_validate,
+ PyLEMS,
+ PyLEMS_NeuroML2,
+ jNeuroML_Brian2,
+ Brian2,
+ pyNeuroML_validate_sbml,
+ ]
steps:
- - uses: actions/checkout@v4
-
- - name: Set up Python ${{ matrix.python-version }}
- uses: actions/setup-python@v5
- with:
- python-version: ${{ matrix.python-version }}
-
- - name: Install OMV
- run: |
- pip install git+https://github.com/OpenSourceBrain/osb-model-validation
- pip install scipy sympy matplotlib cython pandas tables
-
- - name: Run OMV tests on engine ${{ matrix.engine }}
- run: |
- omv all -V --engine=${{ matrix.engine }}
-
- - name: OMV final version info
- run: |
- omv list -V # list installed engines
- env
+ - uses: actions/checkout@v4
+
+ - name: Set up Python ${{ matrix.python-version }}
+ uses: actions/setup-python@v5
+ with:
+ python-version: ${{ matrix.python-version }}
+
+ - name: Install OMV
+ run: |
+ pip install git+https://github.com/OpenSourceBrain/osb-model-validation
+ pip install scipy sympy matplotlib cython pandas tables
+
+ - name: Run OMV tests on engine ${{ matrix.engine }}
+ run: |
+ omv all -V --engine=${{ matrix.engine }}
+
+ - name: OMV final version info
+ run: |
+ omv list -V # list installed engines
+ env
diff --git a/.gitignore b/.gitignore
index e837a44d..f51cc53b 100644
--- a/.gitignore
+++ b/.gitignore
@@ -36,6 +36,7 @@ arm64
/SBML/ex9.csv
/SBML/hr.csv
/test_suite/semantic/
+/test_suite/SBML_test_suite/
/test_suite/semantic_tests_with_sedml_and_graphs.v*.zip*
.vscode
/BioModels/cache
@@ -45,3 +46,4 @@ venv
/SBML/.DS_Store
/SBML/LEMS_NML2_Ex9_FN_missing_xmlns.omex
/SBML/output
+*.egg-info
diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
new file mode 100644
index 00000000..67bb961e
--- /dev/null
+++ b/.pre-commit-config.yaml
@@ -0,0 +1,50 @@
+# Formatting shouldn't be applied to auto generated files,
+# or files taken verbatim from external resources.
+exclude: |-
+ (?x)^(
+ LEMS/.*|
+ Brian/.*|
+ NEURON/.*|
+ NeuroML2/.*|
+ tellurium/simple.py*|
+ .*\.xml$|
+ .*\.sedml$|
+ .*\.sbml$|
+ .*\.omex$|
+ .*\.json$|
+ .*\.md$|
+ )$
+
+repos:
+ - repo: https://github.com/astral-sh/ruff-pre-commit
+ rev: v0.8.1
+ hooks:
+ - id: ruff
+ - id: ruff-format
+ - repo: https://github.com/pappasam/toml-sort
+ rev: v0.24.2
+ hooks:
+ - id: toml-sort-fix
+ - repo: https://github.com/pre-commit/mirrors-prettier
+ rev: v3.1.0
+ hooks:
+ - id: prettier
+ args:
+ - --quote-props=as-needed
+ - repo: https://github.com/pre-commit/pre-commit-hooks
+ rev: v5.0.0
+ hooks:
+ - id: check-case-conflict
+ - id: check-docstring-first
+ - id: check-merge-conflict
+ - id: check-toml
+ - id: end-of-file-fixer
+ - id: mixed-line-ending
+ args:
+ - --fix=lf
+ - id: trailing-whitespace
+
+ - repo: https://github.com/pre-commit/mirrors-isort
+ rev: v5.10.1
+ hooks:
+ - id: isort
diff --git a/BioModels/BIOMD0000000001/BIOMD0000000001_url.omex b/BioModels/BIOMD0000000001/BIOMD0000000001_url.omex
new file mode 100644
index 00000000..01e982da
Binary files /dev/null and b/BioModels/BIOMD0000000001/BIOMD0000000001_url.omex differ
diff --git a/BioModels/BIOMD0000000001/BIOMD0000000001_url.sedml b/BioModels/BIOMD0000000001/BIOMD0000000001_url.sedml
index bb4d00ef..bf616787 100644
--- a/BioModels/BIOMD0000000001/BIOMD0000000001_url.sedml
+++ b/BioModels/BIOMD0000000001/BIOMD0000000001_url.sedml
@@ -4,7 +4,7 @@
-
+
@@ -613,7 +613,7 @@
-
+
diff --git a/BioModels/BIOMD0000000001/tests/d1_plots_local/amici_autogen_plot_for_task1.pdf b/BioModels/BIOMD0000000001/tests/d1_plots_local/amici_autogen_plot_for_task1.pdf
index 58e8eda7..26b4c729 100644
Binary files a/BioModels/BIOMD0000000001/tests/d1_plots_local/amici_autogen_plot_for_task1.pdf and b/BioModels/BIOMD0000000001/tests/d1_plots_local/amici_autogen_plot_for_task1.pdf differ
diff --git a/BioModels/BIOMD0000000001/tests/d1_plots_local/copasi_autogen_plot_for_task1.pdf b/BioModels/BIOMD0000000001/tests/d1_plots_local/copasi_autogen_plot_for_task1.pdf
index a6c0d151..32519528 100644
Binary files a/BioModels/BIOMD0000000001/tests/d1_plots_local/copasi_autogen_plot_for_task1.pdf and b/BioModels/BIOMD0000000001/tests/d1_plots_local/copasi_autogen_plot_for_task1.pdf differ
diff --git a/BioModels/BIOMD0000000001/tests/d1_plots_local/pysces_autogen_plot_for_task1.pdf b/BioModels/BIOMD0000000001/tests/d1_plots_local/pysces_autogen_plot_for_task1.pdf
index ab72f0e4..e85b4740 100644
Binary files a/BioModels/BIOMD0000000001/tests/d1_plots_local/pysces_autogen_plot_for_task1.pdf and b/BioModels/BIOMD0000000001/tests/d1_plots_local/pysces_autogen_plot_for_task1.pdf differ
diff --git a/BioModels/BIOMD0000000001/tests/d1_plots_local/tellurium_autogen_plot_for_task1.pdf b/BioModels/BIOMD0000000001/tests/d1_plots_local/tellurium_autogen_plot_for_task1.pdf
index 26e29013..d0c04f17 100644
Binary files a/BioModels/BIOMD0000000001/tests/d1_plots_local/tellurium_autogen_plot_for_task1.pdf and b/BioModels/BIOMD0000000001/tests/d1_plots_local/tellurium_autogen_plot_for_task1.pdf differ
diff --git a/BioModels/BIOMD0000000001/tests/d1_plots_local/vcell_autogen_plot_for_task1.pdf b/BioModels/BIOMD0000000001/tests/d1_plots_local/vcell_autogen_plot_for_task1.pdf
index c31075b1..b566d77e 100644
Binary files a/BioModels/BIOMD0000000001/tests/d1_plots_local/vcell_autogen_plot_for_task1.pdf and b/BioModels/BIOMD0000000001/tests/d1_plots_local/vcell_autogen_plot_for_task1.pdf differ
diff --git a/BioModels/BIOMD0000000001/tests/d1_plots_remote/amici_autogen_plot_for_task1.pdf b/BioModels/BIOMD0000000001/tests/d1_plots_remote/amici_autogen_plot_for_task1.pdf
index 5dbadff8..c29fb3a4 100644
Binary files a/BioModels/BIOMD0000000001/tests/d1_plots_remote/amici_autogen_plot_for_task1.pdf and b/BioModels/BIOMD0000000001/tests/d1_plots_remote/amici_autogen_plot_for_task1.pdf differ
diff --git a/BioModels/BIOMD0000000001/tests/d1_plots_remote/copasi_autogen_plot_for_task1.pdf b/BioModels/BIOMD0000000001/tests/d1_plots_remote/copasi_autogen_plot_for_task1.pdf
index 969aa979..89420a5b 100644
Binary files a/BioModels/BIOMD0000000001/tests/d1_plots_remote/copasi_autogen_plot_for_task1.pdf and b/BioModels/BIOMD0000000001/tests/d1_plots_remote/copasi_autogen_plot_for_task1.pdf differ
diff --git a/BioModels/BIOMD0000000001/tests/d1_plots_remote/masspy_autogen_plot_for_task1.pdf b/BioModels/BIOMD0000000001/tests/d1_plots_remote/masspy_autogen_plot_for_task1.pdf
index 5f97467a..8d98585e 100644
Binary files a/BioModels/BIOMD0000000001/tests/d1_plots_remote/masspy_autogen_plot_for_task1.pdf and b/BioModels/BIOMD0000000001/tests/d1_plots_remote/masspy_autogen_plot_for_task1.pdf differ
diff --git a/BioModels/BIOMD0000000001/tests/d1_plots_remote/pysces_autogen_plot_for_task1.pdf b/BioModels/BIOMD0000000001/tests/d1_plots_remote/pysces_autogen_plot_for_task1.pdf
index eb9e956b..decd04b8 100644
Binary files a/BioModels/BIOMD0000000001/tests/d1_plots_remote/pysces_autogen_plot_for_task1.pdf and b/BioModels/BIOMD0000000001/tests/d1_plots_remote/pysces_autogen_plot_for_task1.pdf differ
diff --git a/BioModels/BIOMD0000000001/tests/d1_plots_remote/tellurium_autogen_plot_for_task1.pdf b/BioModels/BIOMD0000000001/tests/d1_plots_remote/tellurium_autogen_plot_for_task1.pdf
index fe9685aa..5810fdf3 100644
Binary files a/BioModels/BIOMD0000000001/tests/d1_plots_remote/tellurium_autogen_plot_for_task1.pdf and b/BioModels/BIOMD0000000001/tests/d1_plots_remote/tellurium_autogen_plot_for_task1.pdf differ
diff --git a/BioModels/BIOMD0000000001/tests/d1_plots_remote/vcell_autogen_plot_for_task1.pdf b/BioModels/BIOMD0000000001/tests/d1_plots_remote/vcell_autogen_plot_for_task1.pdf
index 84b28b1b..d1be5e72 100644
Binary files a/BioModels/BIOMD0000000001/tests/d1_plots_remote/vcell_autogen_plot_for_task1.pdf and b/BioModels/BIOMD0000000001/tests/d1_plots_remote/vcell_autogen_plot_for_task1.pdf differ
diff --git a/BioModels/BIOMD0000000001/tests/results_compatibility_biosimulators.md b/BioModels/BIOMD0000000001/tests/results_BIOMD0000000001_url.md
similarity index 82%
rename from BioModels/BIOMD0000000001/tests/results_compatibility_biosimulators.md
rename to BioModels/BIOMD0000000001/tests/results_BIOMD0000000001_url.md
index bd58a772..b4bcc661 100644
--- a/BioModels/BIOMD0000000001/tests/results_compatibility_biosimulators.md
+++ b/BioModels/BIOMD0000000001/tests/results_BIOMD0000000001_url.md
@@ -1,23 +1,23 @@
| Engine | Compatibility | pass / FAIL (R) | pass / FAIL (L) | d1 (R) | d1 (L) |
|:-------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:------------------------------------------------------------------------|:-----------------------------------------------------------------------|
-| AMICI
https://docs.biosimulators.org/Biosimulators_AMICI/
| ❓ UNSURE
The file extensions ('xml', 'sedml') suggest the input file types may not be compatibe with AMICI.
SED-ML and SBML are compatible with AMICI. | ✅ PASS
view
download
logs
| ✅ PASS | plot | plot |
-| BioNetGen
https://docs.biosimulators.org/Biosimulators_BioNetGen/
| ⚠ XFAIL
EXPECTED FAIL
Only BNGL, SED-ML are compatible with BioNetGen. | ⚠ XFAIL
EXPECTED FAIL
view
download
logs
ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.
ERROR TYPE:
ValueError | ⚠ XFAIL
EXPECTED FAIL
ERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.
ERROR TYPE:
ValueError | | |
-| BoolNet
https://docs.biosimulators.org/Biosimulators_BoolNet/
| ⚠ XFAIL
EXPECTED FAIL
Only SBML-qual, SED-ML are compatible with BoolNet. | ⚠ XFAIL
EXPECTED FAIL
view
download
logs
ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.
ERROR TYPE:
ValueError | ⚠ XFAIL
EXPECTED FAIL
ERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.
ERROR TYPE:
ValueError | | |
-| Brian 2
https://docs.biosimulators.org/Biosimulators_pyNeuroML/
| ⚠ XFAIL
EXPECTED FAIL
Only NeuroML, SED-ML are compatible with Brian 2. | ⚠ XFAIL
EXPECTED FAIL
view
download
logs
ERROR MESSAGE:
No module named 'libsbml'
ERROR TYPE:
ModuleNotFoundError | ⚠ XFAIL
EXPECTED FAIL
ERROR MESSAGE:
No module named 'libsbml'
ERROR TYPE:
ModuleNotFoundError | | |
-| CBMPy
https://docs.biosimulators.org/Biosimulators_CBMPy/
| ❓ UNSURE
The file extensions ('xml', 'sedml') suggest the input file types may not be compatibe with CBMPy.
SED-ML and SBML are compatible with CBMPy. | ❌ FAIL
view
download
logs
ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.
ERROR TYPE:
ValueError | ❌ FAIL
ERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.
ERROR TYPE:
ValueError | | |
-| COBRApy
https://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations | ❓ UNSURE
The file extensions ('xml', 'sedml') suggest the input file types may not be compatibe with COBRApy.
SED-ML and SBML are compatible with COBRApy. | ❌ FAIL
view
download
logs
ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.
ERROR TYPE:
ValueError | ❌ FAIL
ERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.
ERROR TYPE:
ValueError | | |
-| COPASI
https://docs.biosimulators.org/Biosimulators_COPASI/
| ❓ UNSURE
The file extensions ('xml', 'sedml') suggest the input file types may not be compatibe with COPASI.
SED-ML and SBML are compatible with COPASI. | ✅ PASS
view
download
logs
| ✅ PASS | plot | plot |
-| GillesPy2
https://docs.biosimulators.org/Biosimulators_GillesPy2/
| ❓ UNSURE
The file extensions ('xml', 'sedml') suggest the input file types may not be compatibe with GillesPy2.
SED-ML and SBML are compatible with GillesPy2. | ❌ FAIL
view
download
logs
ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.
ERROR TYPE:
ValueError | ❌ FAIL
ERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.
ERROR TYPE:
ValueError | | |
-| GINsim
https://docs.biosimulators.org/Biosimulators_GINsim/
| ⚠ XFAIL
EXPECTED FAIL
Only SBML-qual, SED-ML are compatible with GINsim. | ⚠ XFAIL
EXPECTED FAIL
view
download
logs
ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.
ERROR TYPE:
ValueError | ⚠ XFAIL
EXPECTED FAIL
ERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.
ERROR TYPE:
ValueError | | |
-| LibSBMLSim
https://docs.biosimulators.org/Biosimulators_LibSBMLSim/
| ❓ UNSURE
The file extensions ('xml', 'sedml') suggest the input file types may not be compatibe with LibSBMLSim.
SED-ML and SBML are compatible with LibSBMLSim. | ❌ FAIL
view
download
logs
ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.
ERROR TYPE:
ValueError | ❌ FAIL
ERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.
ERROR TYPE:
ValueError | | |
-| MASSpy
https://docs.biosimulators.org/Biosimulators_MASSpy/
| ❓ UNSURE
The file extensions ('xml', 'sedml') suggest the input file types may not be compatibe with MASSpy.
SED-ML and SBML are compatible with MASSpy. | ❌ FAIL
view
download
logs
ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:
The SED document did not execute successfully:
Could not load MassModel 'BIOMD0000000001'
ERROR TYPE:
CombineArchiveExecutionError | ❌ FAIL
ERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.
ERROR TYPE:
ValueError | plot | |
-| NetPyNE
https://docs.biosimulators.org/Biosimulators_pyNeuroML/
| ⚠ XFAIL
EXPECTED FAIL
Only NeuroML, SED-ML are compatible with NetPyNE. | ⚠ XFAIL
EXPECTED FAIL
view
download
logs
ERROR MESSAGE:
No module named 'libsbml'
ERROR TYPE:
ModuleNotFoundError | ⚠ XFAIL
EXPECTED FAIL
ERROR MESSAGE:
No module named 'libsbml'
ERROR TYPE:
ModuleNotFoundError | | |
-| NEURON
https://docs.biosimulators.org/Biosimulators_pyNeuroML/
| ⚠ XFAIL
EXPECTED FAIL
Only NeuroML, SED-ML are compatible with NEURON. | ⚠ XFAIL
EXPECTED FAIL
view
download
logs
ERROR MESSAGE:
No module named 'libsbml'
ERROR TYPE:
ModuleNotFoundError | ⚠ XFAIL
EXPECTED FAIL
ERROR MESSAGE:
No module named 'libsbml'
ERROR TYPE:
ModuleNotFoundError | | |
-| OpenCOR
https://docs.biosimulators.org/Biosimulators_OpenCOR/
| ⚠ XFAIL
EXPECTED FAIL
Only CellML, SED-ML are compatible with OpenCOR. | ⚠ XFAIL
EXPECTED FAIL
view
download
logs
ERROR MESSAGE:
No module named 'libsbml'
ERROR TYPE:
ModuleNotFoundError | ⚠ XFAIL
EXPECTED FAIL
ERROR MESSAGE:
No module named 'libsbml'
ERROR TYPE:
ModuleNotFoundError | | |
-| pyNeuroML
https://docs.biosimulators.org/Biosimulators_pyNeuroML/
| ⚠ XFAIL
EXPECTED FAIL
Only NeuroML, SED-ML are compatible with pyNeuroML. | ⚠ XFAIL
EXPECTED FAIL
view
download
logs
ERROR MESSAGE:
No module named 'libsbml'
ERROR TYPE:
ModuleNotFoundError | ⚠ XFAIL
EXPECTED FAIL
ERROR MESSAGE:
No module named 'libsbml'
ERROR TYPE:
ModuleNotFoundError | | |
-| PySCeS
https://docs.biosimulators.org/Biosimulators_PySCeS/
| ❓ UNSURE
The file extensions ('xml', 'sedml') suggest the input file types may not be compatibe with PySCeS.
SED-ML and SBML are compatible with PySCeS. | ✅ PASS
view
download
logs
| ✅ PASS | plot | plot |
-| RBApy
https://docs.biosimulators.org/Biosimulators_RBApy/
| ⚠ XFAIL
EXPECTED FAIL
Only RBApy, SED-ML are compatible with RBApy. | ⚠ XFAIL
EXPECTED FAIL
view
download
logs
ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.
ERROR TYPE:
ValueError | ⚠ XFAIL
EXPECTED FAIL
ERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.
ERROR TYPE:
ValueError | | |
-| Smoldyn
https://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
| ⚠ XFAIL
EXPECTED FAIL
Only Smoldyn, SED-ML are compatible with Smoldyn. | ⚠ XFAIL
EXPECTED FAIL
view
download
logs
ERROR MESSAGE:
No module named 'libsbml'
ERROR TYPE:
ModuleNotFoundError | ⚠ XFAIL
EXPECTED FAIL
ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.
| | |
-| Tellurium
https://docs.biosimulators.org/Biosimulators_tellurium/
| ❓ UNSURE
The file extensions ('xml', 'sedml') suggest the input file types may not be compatibe with Tellurium.
SED-ML and SBML are compatible with Tellurium. | ✅ PASS
view
download
logs
| ✅ PASS | plot | plot |
-| VCell
https://github.com/virtualcell/vcell
| ❓ UNSURE
The file extensions ('xml', 'sedml') suggest the input file types may not be compatibe with VCell.
BNGL, SED-ML and SBML are compatible with VCell. | ✅ PASS
view
download
logs
| ✅ PASS | plot | plot |
-| XPP
https://docs.biosimulators.org/Biosimulators_XPP/
| ⚠ XFAIL
EXPECTED FAIL
Only XPP, SED-ML are compatible with XPP. | ⚠ XFAIL
EXPECTED FAIL
view
download
logs
ERROR MESSAGE:
No module named 'libsbml'
ERROR TYPE:
ModuleNotFoundError | ⚠ XFAIL
EXPECTED FAIL
ERROR MESSAGE:
No module named 'libsbml'
ERROR TYPE:
ModuleNotFoundError | | |
\ No newline at end of file
+| AMICI
https://docs.biosimulators.org/Biosimulators_AMICI/
| ❓ UNSURE
The file extensions ('xml', 'sedml') suggest the input file types may not be compatibe with AMICI.
SBML and SED-ML are compatible with AMICI. | ❌ FAIL
view
download
logs
ERROR MESSAGE:
Reached maximum number of steps
| ❌ FAIL
ERROR MESSAGE:
Reached maximum number of steps
| plot | plot |
+| BioNetGen
https://docs.biosimulators.org/Biosimulators_BioNetGen/
| ⚠ XFAIL
EXPECTED FAIL
Only BNGL, SED-ML are compatible with BioNetGen. | ⚠ XFAIL
EXPECTED FAIL
view
download
logs
ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.
ERROR TYPE:
ValueError | ⚠ XFAIL
EXPECTED FAIL
ERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.
ERROR TYPE:
ValueError | | |
+| BoolNet
https://docs.biosimulators.org/Biosimulators_BoolNet/
| ⚠ XFAIL
EXPECTED FAIL
Only SBML-qual, SED-ML are compatible with BoolNet. | ⚠ XFAIL
EXPECTED FAIL
view
download
logs
ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.
ERROR TYPE:
ValueError | ⚠ XFAIL
EXPECTED FAIL
ERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.
ERROR TYPE:
ValueError | | |
+| Brian 2
https://docs.biosimulators.org/Biosimulators_pyNeuroML/
| ⚠ XFAIL
EXPECTED FAIL
Only NeuroML, SED-ML are compatible with Brian 2. | ⚠ XFAIL
EXPECTED FAIL
view
download
logs
ERROR MESSAGE:
No module named 'libsbml'
ERROR TYPE:
ModuleNotFoundError | ⚠ XFAIL
EXPECTED FAIL
ERROR MESSAGE:
No module named 'libsbml'
ERROR TYPE:
ModuleNotFoundError | | |
+| CBMPy
https://docs.biosimulators.org/Biosimulators_CBMPy/
| ❓ UNSURE
The file extensions ('xml', 'sedml') suggest the input file types may not be compatibe with CBMPy.
SBML and SED-ML are compatible with CBMPy. | ❌ FAIL
view
download
logs
ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.
ERROR TYPE:
ValueError | ❌ FAIL
ERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.
ERROR TYPE:
ValueError | | |
+| COBRApy
https://docs.biosimulators.org/Biosimulators_COBRApy/
Only allows steady state simulations | ❓ UNSURE
The file extensions ('xml', 'sedml') suggest the input file types may not be compatibe with COBRApy.
SBML and SED-ML are compatible with COBRApy. | ❌ FAIL
view
download
logs
ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.
ERROR TYPE:
ValueError | ❌ FAIL
ERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.
ERROR TYPE:
ValueError | | |
+| COPASI
https://docs.biosimulators.org/Biosimulators_COPASI/
| ❓ UNSURE
The file extensions ('xml', 'sedml') suggest the input file types may not be compatibe with COPASI.
SBML and SED-ML are compatible with COPASI. | ✅ PASS
view
download
logs
| ✅ PASS | plot | plot |
+| GillesPy2
https://docs.biosimulators.org/Biosimulators_GillesPy2/
| ❓ UNSURE
The file extensions ('xml', 'sedml') suggest the input file types may not be compatibe with GillesPy2.
SBML and SED-ML are compatible with GillesPy2. | ❌ FAIL
view
download
logs
ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.
ERROR TYPE:
ValueError | ❌ FAIL
ERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.
ERROR TYPE:
ValueError | | |
+| GINsim
https://docs.biosimulators.org/Biosimulators_GINsim/
| ⚠ XFAIL
EXPECTED FAIL
Only SBML-qual, SED-ML are compatible with GINsim. | ⚠ XFAIL
EXPECTED FAIL
view
download
logs
ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.
ERROR TYPE:
ValueError | ⚠ XFAIL
EXPECTED FAIL
ERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.
ERROR TYPE:
ValueError | | |
+| LibSBMLSim
https://docs.biosimulators.org/Biosimulators_LibSBMLSim/
| ❓ UNSURE
The file extensions ('xml', 'sedml') suggest the input file types may not be compatibe with LibSBMLSim.
SBML and SED-ML are compatible with LibSBMLSim. | ❌ FAIL
view
download
logs
ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.
ERROR TYPE:
ValueError | ❌ FAIL
ERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.
ERROR TYPE:
ValueError | | |
+| MASSpy
https://docs.biosimulators.org/Biosimulators_MASSpy/
| ❓ UNSURE
The file extensions ('xml', 'sedml') suggest the input file types may not be compatibe with MASSpy.
SBML and SED-ML are compatible with MASSpy. | ❌ FAIL
view
download
logs
ERROR MESSAGE:
The COMBINE/OMEX did not execute successfully:
The SED document did not execute successfully:
Could not load MassModel 'BIOMD0000000001'
ERROR TYPE:
CombineArchiveExecutionError | ❌ FAIL
ERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.
ERROR TYPE:
ValueError | plot | |
+| NetPyNE
https://docs.biosimulators.org/Biosimulators_pyNeuroML/
| ⚠ XFAIL
EXPECTED FAIL
Only NeuroML, SED-ML are compatible with NetPyNE. | ⚠ XFAIL
EXPECTED FAIL
view
download
logs
ERROR MESSAGE:
No module named 'libsbml'
ERROR TYPE:
ModuleNotFoundError | ⚠ XFAIL
EXPECTED FAIL
ERROR MESSAGE:
No module named 'libsbml'
ERROR TYPE:
ModuleNotFoundError | | |
+| NEURON
https://docs.biosimulators.org/Biosimulators_pyNeuroML/
| ⚠ XFAIL
EXPECTED FAIL
Only NeuroML, SED-ML are compatible with NEURON. | ⚠ XFAIL
EXPECTED FAIL
view
download
logs
ERROR MESSAGE:
No module named 'libsbml'
ERROR TYPE:
ModuleNotFoundError | ⚠ XFAIL
EXPECTED FAIL
ERROR MESSAGE:
No module named 'libsbml'
ERROR TYPE:
ModuleNotFoundError | | |
+| OpenCOR
https://docs.biosimulators.org/Biosimulators_OpenCOR/
| ⚠ XFAIL
EXPECTED FAIL
Only CellML, SED-ML are compatible with OpenCOR. | ⚠ XFAIL
EXPECTED FAIL
view
download
logs
ERROR MESSAGE:
No module named 'libsbml'
ERROR TYPE:
ModuleNotFoundError | ⚠ XFAIL
EXPECTED FAIL
ERROR MESSAGE:
No module named 'libsbml'
ERROR TYPE:
ModuleNotFoundError | | |
+| pyNeuroML
https://docs.biosimulators.org/Biosimulators_pyNeuroML/
| ⚠ XFAIL
EXPECTED FAIL
Only NeuroML, SED-ML are compatible with pyNeuroML. | ⚠ XFAIL
EXPECTED FAIL
view
download
logs
ERROR MESSAGE:
No module named 'libsbml'
ERROR TYPE:
ModuleNotFoundError | ⚠ XFAIL
EXPECTED FAIL
ERROR MESSAGE:
No module named 'libsbml'
ERROR TYPE:
ModuleNotFoundError | | |
+| PySCeS
https://docs.biosimulators.org/Biosimulators_PySCeS/
| ❓ UNSURE
The file extensions ('xml', 'sedml') suggest the input file types may not be compatibe with PySCeS.
SBML and SED-ML are compatible with PySCeS. | ✅ PASS
view
download
logs
| ✅ PASS | plot | plot |
+| RBApy
https://docs.biosimulators.org/Biosimulators_RBApy/
| ⚠ XFAIL
EXPECTED FAIL
Only RBApy, SED-ML are compatible with RBApy. | ⚠ XFAIL
EXPECTED FAIL
view
download
logs
ERROR MESSAGE:
`/root/archive.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.
ERROR TYPE:
ValueError | ⚠ XFAIL
EXPECTED FAIL
ERROR MESSAGE:
`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.
- The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.
- Simulation `auto_ten_seconds` is invalid.
- Algorithm has an invalid KiSAO id `KISAO_0000694`.
ERROR TYPE:
ValueError | | |
+| Smoldyn
https://smoldyn.readthedocs.io/en/latest/python/api.html#sed-ml-combine-biosimulators-api
| ⚠ XFAIL
EXPECTED FAIL
Only Smoldyn, SED-ML are compatible with Smoldyn. | ⚠ XFAIL
EXPECTED FAIL
view
download
logs
ERROR MESSAGE:
No module named 'libsbml'
ERROR TYPE:
ModuleNotFoundError | ⚠ XFAIL
EXPECTED FAIL
ERROR MESSAGE:
Error unknown. The log.yml containing error information was not found.
| | |
+| Tellurium
https://docs.biosimulators.org/Biosimulators_tellurium/
| ❓ UNSURE
The file extensions ('xml', 'sedml') suggest the input file types may not be compatibe with Tellurium.
SBML and SED-ML are compatible with Tellurium. | ✅ PASS
view
download
logs
| ✅ PASS | plot | plot |
+| VCell
https://github.com/virtualcell/vcell
| ❓ UNSURE
The file extensions ('xml', 'sedml') suggest the input file types may not be compatibe with VCell.
BNGL, SBML and SED-ML are compatible with VCell. | ✅ PASS
view
download
logs
| ✅ PASS | plot | plot |
+| XPP
https://docs.biosimulators.org/Biosimulators_XPP/
| ⚠ XFAIL
EXPECTED FAIL
Only XPP, SED-ML are compatible with XPP. | ⚠ XFAIL
EXPECTED FAIL
view
download
logs
ERROR MESSAGE:
No module named 'libsbml'
ERROR TYPE:
ModuleNotFoundError | ⚠ XFAIL
EXPECTED FAIL
ERROR MESSAGE:
No module named 'libsbml'
ERROR TYPE:
ModuleNotFoundError | | |
\ No newline at end of file
diff --git a/BioModels/BIOMD0000000001/tests/results_local.json b/BioModels/BIOMD0000000001/tests/results_local.json
index 497dc6e0..52a5788a 100644
--- a/BioModels/BIOMD0000000001/tests/results_local.json
+++ b/BioModels/BIOMD0000000001/tests/results_local.json
@@ -2,12 +2,12 @@
"amici": {
"exception_message": "",
"log_yml": {
- "duration": 19.08304,
+ "duration": 101.597932,
"exception": null,
"output": "",
"sedDocuments": [
{
- "duration": 18.56752,
+ "duration": 100.767004,
"exception": null,
"location": "BIOMD0000000001_url.sedml",
"output": "Archive contains 1 SED-ML documents with 1 models, 1 simulations, 1 tasks, 1 reports, and 1 plots:\r\n BIOMD0000000001_url.sedml:\r\n Tasks (1):\r\n task1\r\n Reports (1):\r\n autogen_report_for_task1: 66 data sets\r\n Plots (1):\r\n autogen_plot_for_task1: 12 curves\r\n\r\nExecuting SED-ML file 1: BIOMD0000000001_url.sedml ...\r\n Found 1 tasks and 2 outputs:\r\n Tasks:\r\n `task1`\r\n Outputs:\r\n `autogen_plot_for_task1`\r\n `autogen_report_for_task1`\r\n Executing task 1: `task1`\r\n Executing simulation ... \u001b[34msucceeded\u001b[0m\r\n Generating 2 outputs ...\r\n Generating output 1: `autogen_report_for_task1` ... \u001b[34msucceeded\u001b[0m\r\n Generating output 2: `autogen_plot_for_task1` ...",
@@ -279,7 +279,7 @@
"status": "SUCCEEDED"
}
],
- "duration": 0.274286,
+ "duration": 16.255451,
"exception": null,
"id": "autogen_report_for_task1",
"output": "",
@@ -337,7 +337,7 @@
"status": "SUCCEEDED"
}
],
- "duration": 0.521209,
+ "duration": 6.551666,
"exception": null,
"id": "autogen_plot_for_task1",
"output": "",
@@ -350,10 +350,10 @@
"tasks": [
{
"algorithm": "KISAO_0000496",
- "duration": 17.605662,
+ "duration": 77.741589,
"exception": null,
"id": "task1",
- "output": "",
+ "output": "2025-01-14 11:39:32.867 - amici.swig_wrappers - ERROR - [OTHER] AMICI simulation failed: Reached maximum number of steps 10000 before reaching tout at t=1769.08.\r\n2025-01-14 11:39:32.868 - amici.swig_wrappers - DEBUG - [BACKTRACE] The previous error occurred at:\r\n2 0x7f36e520fa8b /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0xb5a8b) [0x7f36e520fa8b]\r\n3 0x7f36e5303262 amici::Solver::run(double) const + 34\r\n4 0x7f36e533b5d0 amici::ForwardProblem::workForwardProblem() + 1728\r\n5 0x7f36e52ef763 amici::runAmiciSimulation(amici::Solver&, amici::ExpData const*, amici::Model&, bool) + 435\r\n6 0x7f36e5299280 /usr/local/lib/python3.11/site-packages/amici/_amici.cpython-311-x86_64-linux-gnu.so(+0x13f\r\n",
"simulatorDetails": [
{
"key": "solver",
@@ -382,12 +382,12 @@
"brian2": {
"exception_message": "Command '-i '/root/in/BIOMD0000000001_url.omex' -o /root/out' in image 'ghcr.io/biosimulators/brian2' returned non-zero exit status 1",
"log_yml": {
- "duration": 0.072886,
+ "duration": 0.058421,
"exception": {
"message": "No module named 'libsbml'",
"type": "ModuleNotFoundError"
},
- "output": "WARNING /usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmpa3e54sxx/./BIOMD0000000001_url.sedml` is encoded using L1V4. Only a few features introduced after L1V3 are supported. Most newer features, such as finer stylistic control of plots and parameter estimation, are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n [py.warnings]\r\npyNeuroML >>> WARNING - /usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmpa3e54sxx/./BIOMD0000000001_url.sedml` is encoded using L1V4. Only a few features introduced after L1V3 are supported. Most newer features, such as finer stylistic control of plots and parameter estimation, are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n\r\n",
+ "output": "WARNING /usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmpxw4_t7xz/./BIOMD0000000001_url.sedml` is encoded using L1V4. Only a few features introduced after L1V3 are supported. Most newer features, such as finer stylistic control of plots and parameter estimation, are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n [py.warnings]\r\npyNeuroML >>> WARNING - /usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmpxw4_t7xz/./BIOMD0000000001_url.sedml` is encoded using L1V4. Only a few features introduced after L1V3 are supported. Most newer features, such as finer stylistic control of plots and parameter estimation, are not yet supported.\u001b[0m\r\n warnings.warn(termcolor.colored(message, Colors.warning.value), category)\r\n\r\n",
"sedDocuments": [],
"skipReason": null,
"status": "FAILED"
@@ -397,12 +397,12 @@
"bionetgen": {
"exception_message": "Command '-i '/root/in/BIOMD0000000001_url.omex' -o /root/out' in image 'ghcr.io/biosimulators/bionetgen' returned non-zero exit status 1",
"log_yml": {
- "duration": 0.185835,
+ "duration": 0.192712,
"exception": {
"message": "`/root/in/BIOMD0000000001_url.omex` is not a valid COMBINE/OMEX archive.\n - The SED-ML file at location `./BIOMD0000000001_url.sedml` is invalid.\n - Simulation `auto_ten_seconds` is invalid.\n - Algorithm has an invalid KiSAO id `KISAO_0000694`.",
"type": "ValueError"
},
- "output": "/usr/local/lib/python3.9/site-packages/biosimulators_utils/warnings.py:31: SedmlFeatureNotSupportedWarning: \u001b[33m`/tmp/tmpkjoig1rs/./BIOMD0000000001_url.sedml` is encoded using L1V4. Only a few features introduced after L1V3 are supported. Most newer features, such as finer stylistic control of plots and parameter estimation, are not yet supported.\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 SED document is potentially incorrect.\r\n - Model `BIOMD0000000001_url` has warnings.\r\n - The model file `BIOMD0000000001_url.xml` has warnings.\r\n - 26 warnings of type SBML unit consistency (99505). The following is the first warning at line 467, column 8:\r\n - In situations where a mathematical expression contains literal numbers or parameters whose units have not been declared, it is not possible to verify accurately the consistency of the units in the expression. \r\n The units of the