Learn R Programming

pulseTD (version 0.1.0)

predictExpression: predict Expression

Description

It is used to predict the expression of all gene at a given time, including the expression of pre-mRNA (Precursor RNA) and the expression of total mRNA (Mature RNA). End time and time interval can be arbitrarily defined

Usage

predictExpression(object, tg)

Arguments

object

a 'pulseTDmodel' that has been calculated with estimateParams

tg

A vector of points in time at which experimental data is collected, not allowed to be repeated

Value

Returns a list containing predicted values for each gene and a 0.95 confidence interval

Examples

Run this code
# NOT RUN {
data('pulseRates', package='pulseTD')
pulseRates_correct = correctionParams(pulseRates)
TimeGrid = seq(0,180,15)
# }
# NOT RUN {
preExp = predictExpression(pulseRates_correct, tg=TimeGrid)
# }
# NOT RUN {
data('preExp', packages='pulseTD')
df = data.frame(preExp[['NM_001002011']])
head(df)
# }

Run the code above in your browser using DataLab