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 X=(S,Sd,R,SR,Rpp)X = (S, S_d, R, S_R, R_{pp}) represent the levels of signaling protein, its degraded form, inactive state of RR, SRS-R complex, and activated state of RR.

SS, SdS_d, RR, SRS_R and RppR_{pp} are governed by the following differential equations:

dSdt=k1Sk2SR+k3SR \frac{dS}{dt} = -k_1 \cdot S -k_2 \cdot S \cdot R + k_3 \cdot S_R

dSddt=k1S \frac{dS_d}{dt} = k_1 \cdot S

dRdt=k2SR+k3SR+VRppKm+Rpp \frac{dR}{dt} = -k_2 \cdot S \cdot R + k_3 \cdot S_R + \frac{V \cdot R_{pp}}{K_m + R_{pp}}

dSRdt=k2SRk3SRk4SR \frac{dS_R}{dt} = k_2 \cdot S \cdot R - k_3 \cdot S_R - k_4 \cdot S_R

dRppdt=k4SRVRppKm+Rpp \frac{dR_{pp}}{dt} = k_4 \cdot S_R - \frac{V \cdot R_{pp}}{K_m + R_{pp}}

where θ=(k1,k2,k3,k4,V,Km)\theta = (k_1, k_2, k_3,k_4, V, K_m) 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.

tvec

vector of time points

Value

ptransmodelODE returns an array with the values of the derivatives X˙\dot{X}.

ptransmodelDx returns a 3-D array with the values of the gradients with respect to XX.

ptransmodelDtheta returns a 3-D array with the values of the gradients with respect to θ\theta.

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)


[Package magi version 1.2.4 Index]