From 0f998cc7f1c0facc8ee70beced92ab12828e9392 Mon Sep 17 00:00:00 2001 From: BryanRumsey <44621966+BryanRumsey@users.noreply.github.com> Date: Tue, 27 Sep 2022 14:45:03 -0400 Subject: [PATCH 1/4] Updated version to v2.5.0 --- __version__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__version__.py b/__version__.py index dd5c2877ae..90131bf160 100644 --- a/__version__.py +++ b/__version__.py @@ -5,7 +5,7 @@ # @website https://github.com/stochss/stochss # ============================================================================= -__version__ = '2.4.14' +__version__ = '2.5.0' __title__ = 'StochSS' __description__ = 'StochSS is an integrated development environment (IDE) \ for simulation of biochemical networks.' From 2f50b5e4300fdb35017a4113229f36f608ab93c3 Mon Sep 17 00:00:00 2001 From: Bryan Rumsey Date: Wed, 5 Oct 2022 12:19:08 -0400 Subject: [PATCH 2/4] Fixed propensity generator for mass action reactions. --- client/models/reaction.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/models/reaction.js b/client/models/reaction.js index 18c123c506..67685f921d 100644 --- a/client/models/reaction.js +++ b/client/models/reaction.js @@ -78,7 +78,7 @@ module.exports = State.extend({ let name = stoichSpecies.specie.name; if(stoichSpecies.ratio == 2) { odePropensity += ` * ${name} * ${name}`; - propensity = `0.5 * ${propensity} * ${name} * (${name} - 1) / vol`; + propensity = `${propensity} * ${name} * (${name} - 1) / vol`; }else{ odePropensity += ` * ${name}`; propensity += ` * ${name}`; From bef02973ae934f2cbb42ede1f32c801c3abdb580 Mon Sep 17 00:00:00 2001 From: Bryan Rumsey Date: Wed, 5 Oct 2022 12:20:05 -0400 Subject: [PATCH 3/4] Updated GillesPy2 and SpatialPy and added pyabc. --- requirements.txt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index c8a3d64a92..bd89812cc4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,8 @@ python-libsbml==5.18.0 python-libsedml==2.0.9 python-libcombine==0.2.7 +pyabc==0.12.6 escapism==1.0.1 -gillespy2==1.7.0 -spatialpy==1.1.0 +gillespy2==1.7.1 +spatialpy==1.1.1 git+https://github.com/StochSS/sciope.git@master From 49b32ac4c54af92ee56348c3f077357dff73f11e Mon Sep 17 00:00:00 2001 From: BryanRumsey <44621966+BryanRumsey@users.noreply.github.com> Date: Wed, 5 Oct 2022 13:29:22 -0400 Subject: [PATCH 4/4] Updated version to v2.4.15 --- __version__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__version__.py b/__version__.py index 90131bf160..afa635caba 100644 --- a/__version__.py +++ b/__version__.py @@ -5,7 +5,7 @@ # @website https://github.com/stochss/stochss # ============================================================================= -__version__ = '2.5.0' +__version__ = '2.4.15' __title__ = 'StochSS' __description__ = 'StochSS is an integrated development environment (IDE) \ for simulation of biochemical networks.'