simulate_experiment: Simulates the dynamics of a molecular perturbation

Description Usage Arguments Details Author(s) See Also Examples

View source: R/simulate_experiment.R

Description

This function simulates the kinetics of the system, in accordance with a chosen molecular perturbation.

Usage

1
simulate_experiment(theta, knobj, experiment_fun)

Arguments

theta

A named numeric parameter vector

knobj

A knowledge list. See knobjs.

experiment_fun

An element of experiment_list1 that represents a molecular perturbation

Details

Transforms parameter values and initial conditions in order to pass it to deSolve ode solver.

Author(s)

Edouard Pauwels

See Also

transform_params, experiment_list1, simulate_experiment_no_transform

Examples

1
2
3
4
5
6
7
8
9
data(experiment_list1)

## Generate the knowledge object with correct parameter value
knobj <- generate_our_knowledge(transform_params)

temp <- simulate_experiment(knobj$global_parameters$true_params, 
 knobj, experiment_list1$nothing)

head(temp)

pauwels2014 documentation built on May 1, 2019, 6:29 p.m.