Skip to content

Commit

Permalink
Fix allostery free enzyme ratio bug
Browse files Browse the repository at this point in the history
It sounds like it should be a per-enzyme vector, but it's a per-edge one. Oops!
  • Loading branch information
teddygroves committed Aug 14, 2024
1 parent 094d460 commit 9ed5064
Showing 1 changed file with 2 additions and 2 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

0 comments on commit 9ed5064

Please sign in to comment.