Skip to content

Commit

Permalink
fixing annotation of hybrid method
Browse files Browse the repository at this point in the history
  • Loading branch information
jonrkarr committed Feb 26, 2021
1 parent e32c312 commit 4035e08
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Base OS
FROM python:3.7.9-slim-buster

ARG VERSION=0.1.19
ARG VERSION=0.1.20
ARG SIMULATOR_VERSION="1.5.7"

# metadata
Expand Down
2 changes: 1 addition & 1 deletion biosimulators.json
Original file line number Diff line number Diff line change
Expand Up @@ -1119,7 +1119,7 @@
"name": "slow-scale stochastic simulation algorithm",
"kisaoId": {
"namespace": "KISAO",
"id": "KISAO_0000028"
"id": "KISAO_0000575"
},
"modelingFrameworks": [
{
Expand Down
2 changes: 1 addition & 1 deletion biosimulators_gillespy2/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = '0.1.19'
__version__ = '0.1.20'
2 changes: 1 addition & 1 deletion biosimulators_gillespy2/data_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ class HybridTauIntegrationMethod(str, enum.Enum):
'KISAO_0000228': AlgorithmParameter("epsilon", 'tau_tol', float, 0.03),
}),

'KISAO_0000028': Algorithm("hybrid tau solver", gillespy2.TauHybridSolver, parameters={
'KISAO_0000575': Algorithm("hybrid tau solver", gillespy2.TauHybridSolver, parameters={
'KISAO_0000488': AlgorithmParameter("seed", 'seed', int, None),
'KISAO_0000228': AlgorithmParameter("epsilon", 'tau_tol', float, 0.03),
'KISAO_0000475': AlgorithmParameter("integration method", 'integrator',
Expand Down

0 comments on commit 4035e08

Please sign in to comment.