Skip to content

Commit

Permalink
Merge pull request #472 from biosustain/allostery_free_enzyme_ratio_bug
Browse files Browse the repository at this point in the history
Allostery free enzyme ratio bug
  • Loading branch information
carrascomj authored Aug 15, 2024
2 parents 094d460 + 3e3f725 commit 949e9ab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions maud/stan/functions.stan
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ functions {
}
out[f] = inv(1
+ tc_edge
* (free_enzyme_ratio[edge_to_enzyme[f]] * Q_num / Q_denom) ^ subunits[edge_to_enzyme[f]]);
* (free_enzyme_ratio[f] * Q_num / Q_denom) ^ subunits[edge_to_enzyme[f]]);
}
return out;
}
Expand Down Expand Up @@ -680,7 +680,7 @@ functions {
out[f] = 1
/ (1
+ tc_edge
* (free_enzyme_ratio[edge_to_enzyme[f]] * Q_num / Q_denom) ^ subunits[edge_to_enzyme[f]]);
* (free_enzyme_ratio[f] * Q_num / Q_denom) ^ subunits[edge_to_enzyme[f]]);
}
return out;
}
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -184,5 +184,5 @@ legacy_tox_ini = """
safety
commands=
pip install --upgrade pip
safety check -i 44715 -i 51549
safety check -i 44715 -i 51549 -i 70612
"""

0 comments on commit 949e9ab

Please sign in to comment.