Description Usage Arguments Details Value Author(s) References See Also Examples
View source: R/proliferationIndex.R
Proliferation index calculator. Proliferation index is calculated as the sum of the cells in all generations including the parental divided by the computed number of original parent cells theoretically present at the start of the experiment. It is a measure of the fold increase in cell number in the culture over the course of the experiment.
1 | proliferationIndex(object)
|
object |
An object of class |
The formula is: \frac{∑_0^iN_i}{∑_0^iN^i/2^i} Where i is the generation number (parent generation = 0). In the absence of proliferation, that is, when all cells are in the parent generation, the formula gives: \frac{N_0}{N_0/2^0} = 1 defining the lower limit of the PI.
return a numeric
Davide Rambaldi
Munson ME. An improved technique for calculating relative response in cellular proliferation experiments. Cytometry A. 2010 Oct;77(10):909-10. doi: 10.1002/cyto.a.20935. Erratum in: Cytometry A. 2010 Dec;77(12):1177. PubMed PMID: 21290464.
proliferationFitting
proliferationFittingData-class
1 2 3 4 5 6 7 8 9 | # load data
if(require(flowFitExampleData)){
data(PKH26data)
parent.fitting <- parentFitting(PKH26data[[1]], "FL2-Height LOG")
my.fit <- proliferationFitting(PKH26data[[2]], "FL2-Height LOG",
parent.fitting@parentPeakPosition,
parent.fitting@parentPeakSize)
my.index <- proliferationIndex(my.fit)
}
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.