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)
RGlist
, AffyBatch
or simple data
frame formatNULL
,
no filtering is done. If an integer (0-500), probes are flagged based on raw channel
intensity. If a vector of two numbers is provided, the first will be used for red channel
and the second for green channel. If 'background'
, probes whose intensities are
lower than 2 standard deviations less than the mean of the background intensity for
the channel are flagged.Intensity
, the reference channels for all arrays are used to construct an
array-specific smoothing function which is then applied to normalize the sample channel.
If Between
, the normalization method normalizeBetweenArrays
in the
LIMMA package is used (use normmethod
to further specify normalization
methods. See packaged LIMMA for details.). If Within
, the normalization
method normalizeWithinArrays
in the LIMMA package is used.NULL
.
Can be one of 'quantile', 'vsn', 'Between'TRUE
, background filtering
will be done on Affy data.TRUE
, the log-ratio data will be mean centered to
0 in the column space.TRUE
, boxplots of normalized channel intensities and
log-ratios are drawn.0.8
. Fraction of samples with missing data
for individual probes to be filtered out.FALSE
. Is the data in logscale? If FALSE,
log2 transformation is done on the data.Rnits
(which is
derived from class exprSet
), containing the probe data,
design data, expression data, phenotypical data (i.e. Time).
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.
ExpressionSet
# load pre-compiled expressionSet object for Ronen and Botstein yeast chemostat data
data(yeastchemostat)
rnitsobj = build.Rnits(yeastchemostat, logscale = TRUE, normmethod = 'Between')
Run the code above in your browser using DataLab