Skip to content

Commit

Permalink
fixing KiSAO id for algorithm parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
jonrkarr committed Jun 5, 2021
1 parent 6eb72cb commit 4162e66
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# Base OS
FROM python:3.9-slim-buster

ARG VERSION="0.1.9"
ARG VERSION="0.1.10"
ARG SIMULATOR_VERSION="2.2.0"

# metadata
Expand Down
6 changes: 3 additions & 3 deletions biosimulators.json
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@
{
"kisaoId": {
"namespace": "KISAO",
"id": "KISAO_0000107"
"id": "KISAO_0000656"
},
"id": "variable_step_size",
"name": "Adaptive time steps",
Expand Down Expand Up @@ -460,7 +460,7 @@
"parameters": [{
"kisaoId": {
"namespace": "KISAO",
"id": "KISAO_0000107"
"id": "KISAO_0000656"
},
"name": "Adaptive time steps",
"type": "boolean",
Expand Down Expand Up @@ -572,7 +572,7 @@
{
"kisaoId": {
"namespace": "KISAO",
"id": "KISAO_0000107"
"id": "KISAO_0000656"
},
"name": "Adaptive time steps",
"type": "boolean",
Expand Down
2 changes: 1 addition & 1 deletion biosimulators_tellurium/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.1.9'
__version__ = '0.1.10'
5 changes: 5 additions & 0 deletions biosimulators_tellurium/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@
import shutil
import tellurium
import tempfile
import tellurium.sedml.tesedml


# correct KISAO to parameter mapping
tellurium.sedml.tesedml.KISAOS_ALGORITHMPARAMETERS[656] = ('variable_step_size', bool)


__all__ = ['exec_sedml_docs_in_combine_archive']
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
biosimulators_utils[logging] >= 0.1.80
biosimulators_utils[logging] >= 0.1.81
pandas
tellurium

0 comments on commit 4162e66

Please sign in to comment.