ptransmodelODE {magi} | R Documentation |
Protein transduction model
Description
The protein transduction equations model a biochemical reaction involving a signaling protein that degrades over time. The system components represent the levels of signaling protein, its degraded form, inactive state of
,
complex, and activated state of
.
,
,
,
and
are governed by the following differential equations:
where are system parameters.
Usage
ptransmodelODE(theta, x, tvec)
ptransmodelDx(theta, x, tvec)
ptransmodelDtheta(theta, x, tvec)
Arguments
theta |
vector of parameters. |
x |
matrix of system states (one per column) at the time points in |
tvec |
vector of time points |
Value
ptransmodelODE
returns an array with the values of the derivatives .
ptransmodelDx
returns a 3-D array with the values of the gradients with respect to .
ptransmodelDtheta
returns a 3-D array with the values of the gradients with respect to .
References
Vyshemirsky, V., & Girolami, M. A. (2008). Bayesian Ranking of Biochemical System Models. Bioinformatics, 24(6), 833-839.
Examples
theta <- c(0.07, 0.6, 0.05, 0.3, 0.017, 0.3)
x <- matrix(1:25, nrow = 5, ncol = 5)
tvec <- 1:5
ptransmodelODE(theta, x, tvec)