View source: R/Seahorse-class.R
Seahorse | R Documentation |
Seahorse
is an S4 container used to store the calibration values and raw
data from a single Seahorse assay; to calculate oxygen consumption,
extracellular acidification, and proton efflux rates from the raw data; and
to facilitate outlier detection, data analysis, and visualization.
Seahorse(
path,
wells = list(),
stages = list(),
cells = list(),
units = NA_character_,
bf = NA_real_,
cf = NA_real_
)
path |
Character vector for the Seahorse |
wells |
An optional list or data frame containing vectors of
experimental descriptors for each of the sample wells. At minimum,
|
stages |
An optional list or data frame containing vectors of
experimental descriptors for each of the measurement stages. |
cells |
An optional list or data frame containing vectors of
normalization data for an experiment. If provided, |
units |
An optional character vector describing the units of the
normalization factor provided in the |
bf |
An optional length-one numeric vector containing the buffer factor of the medium. This value is used to calculate the proton efflux rate (PER) from the extracellular acidification rate (ECAR). |
cf |
An optional length-one numeric vector describing the carbon dioxide correction factor for the cells in the assay. This parameter is used to separate the mitochondrial and glycolytic contributions to the proton efflux rate. |
During creation of the Seahore object, raw fluorescence readings are converted to O2 and pH measurements from which oxygen consumptions and extracellular acidification rates are calculated. Outlying wells are identified and removed.
helpers, format_cells, accessors, blanks, outliers, plot
path <- system.file("extdata/raw_1.xlsx", package = "seahorse", mustWork = TRUE)
wells <- wells_ex
stages <- stages_mst
cells <- list(well = wells_24, value = 20000)
Seahorse(path, wells, stages, cells, units = "cell", bf = 2.4, cf = 0.41)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.