Skip to content

Commit

Permalink
Merge pull request #1393 from StochSS/develop
Browse files Browse the repository at this point in the history
Release v2.4.15
  • Loading branch information
BryanRumsey authored Oct 5, 2022
2 parents 3828892 + 49b32ac commit 9be6f4b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion __version__.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# @website https://github.com/stochss/stochss
# =============================================================================

__version__ = '2.4.14'
__version__ = '2.4.15'
__title__ = 'StochSS'
__description__ = 'StochSS is an integrated development environment (IDE) \
for simulation of biochemical networks.'
Expand Down
2 changes: 1 addition & 1 deletion client/models/reaction.js
Original file line number Diff line number Diff line change
Expand Up @@ -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}`;
Expand Down
5 changes: 3 additions & 2 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 9be6f4b

Please sign in to comment.