degCurve: Calculating ratio of proteins turnover using theoretical...

Description Usage Arguments Details Value Examples

Description

Generate ratio of proteins turnover using theoretical formula. This used for control/unit test.

Usage

1
2
3
degCurve(A, B, kd, tcc, t)

synCurve(A, B, kd, tcc, t)

Arguments

A

model parameter A (amplitude), see details

B

model parameter B (offset), see details.

kd

model parameter kd (degradation/synthesis constant), see details.

tcc

model parameter tcc (doubling time), see details.

t

The time points (hours)

Details

Generate withMathJax("$$f(t)=(A-B)\cdot e^-(k_d+\fracln2t_cc)\cdot t+B$$") "The model fitted for the synthesis curve is as:" withMathJax("$$f(t)=(B-A)\cdot e^-(k_s+\fracln2t_cc)\cdot t+A$$") "where t is the time points (given in hours)

Value

A vector of ratios of protein turned over

Examples

1
2
3
4
5
6
 times <- 2^(0:6)
 drat <- degCurve(A = 1, B = 0, kd = 0.05, tcc = Inf, times)
 plot(times, drat)
 times <- 2^(0:6)
 srat <- synCurve(A = 1, B = 0, kd = 0.05, tcc = Inf, times)
 plot(times, srat)

mengchen18/proturn documentation built on May 30, 2019, 4:37 p.m.