Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix GAPDH binding equations #35

Merged
merged 2 commits into from
Apr 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "Glycolysis"
uuid = "1acb6d80-f93a-4117-912f-ae4c0dd090a6"
authors = ["Denis-Titov <titov@berkeley.edu> and contributors"]
version = "0.7.2"
version = "0.7.3"

[deps]
LabelledArrays = "2ee39098-c373-598a-b85f-a56591580800"
Expand Down
6 changes: 3 additions & 3 deletions src/enzyme_binding.jl
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ function binding_GAPDH(metabs, params)
metabs.NADH / params.GAPDH_K_i_NADH * (
1 +
metabs.GAP / params.GAPDH_K_GAP * (1 + metabs.Phosphate / params.GAPDH_K_i_Phosphate) +
metabs.BPG / (params.GAPDH_β_i_BPG * params.GAPDH_K_BPG)
params.GAPDH_β_i_BPG * metabs.BPG / (params.GAPDH_K_BPG)
)
Z = (Z_a^4 + params.GAPDH_L * Z_i^4)
GAP_bound =
Expand Down Expand Up @@ -326,7 +326,7 @@ function binding_GAPDH(metabs, params)
(
1 +
metabs.NAD / params.GAPDH_K_i_NAD +
metabs.NADH / (params.GAPDH_β_i_BPG * params.GAPDH_K_i_NADH)
mparams.GAPDH_β_i_BPG * etabs.NADH / (params.GAPDH_K_i_NADH)
) *
(1 + metabs.Phosphate / params.GAPDH_K_i_Phosphate) *
Z_i^3
Expand All @@ -347,7 +347,7 @@ function binding_GAPDH(metabs, params)
(
1 +
metabs.GAP / params.GAPDH_K_GAP * (1 + metabs.Phosphate / params.GAPDH_K_i_Phosphate) +
metabs.BPG / (params.GAPDH_β_i_BPG * params.GAPDH_K_BPG)
params.GAPDH_β_i_BPG * metabs.BPG / (params.GAPDH_K_BPG)
) *
Z_i^3
)
Expand Down
Loading