build.Rnits | R Documentation |
This function takes high-dimensional expression data as a RGList, creates a
Rnits
object for subsequent filtering and normalization
build.Rnits(obj, probedata = NULL, phenodata = NULL, filter = NULL, normalize = NULL, normmethod = NULL, plot = FALSE, center = FALSE, background = NULL, threshold = 0.8, logscale = FALSE)
obj |
Raw expression data in |
probedata |
A data frame containing the probe names that should match the probe names in raw data (optional) |
phenodata |
A data frame with information about sample names. The rownames of the data frame must match column names of the expression values. If input data is data frame of log ratios, this is required. |
filter |
An argument to perform background filtering of probes. If |
normalize |
Character string specifying the normalization method for raw data.
If |
normmethod |
Normalization method for input data. Default |
background |
Only for AffyBatch data. If |
center |
If |
plot |
If |
threshold |
Default |
logscale |
Default |
See the Limma User's Guide for more details on read.maimages
, normalizeBetweenArrays
,
normalizeWithinArrays
and RGList
. For importing microarray raw data,
use the 'Targets file' to specify experimental design. The target file has columns
SlideNumber, FileName, Cy3 (description of Cy3 channel ref/control/treatment), Cy5
(description of Cy3 channel ref/control/treatment) and Time. Time values should be
identical for control and treatment.
An object of S4 class Rnits
(which is
derived from class exprSet
), containing the probe data,
design data, expression data, phenotypical data (i.e. Time).
ExpressionSet
# load pre-compiled expressionSet object for Ronen and Botstein yeast chemostat data data(yeastchemostat) rnitsobj = build.Rnits(yeastchemostat, logscale = TRUE, normmethod = 'Between')
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.