Description Objects from the Class Slots Methods Author(s) References See Also Examples
This class represents post-normalization intensity data for a batch of cDNA microarrays. A batch of arrays consists of a collection of arrays with the same layout ("marrayLayout"
). The class contains slots for the average log-intensities A, the normalized log-ratios M, the location and scale normalization values, the layout of the arrays, and descriptions of the target samples hybridized to the arrays and probe sequences spotted onto the arrays.
Objects can be created by calls of the form
new('marrayNorm',
maA = ...., # Object of class matrix
maM = ...., # Object of class matrix
maMloc = ...., # Object of class matrix
maMscale = ...., # Object of class matrix
maW = ...., # Object of class matrix
maLayout = ...., # Object of class marrayLayout
maGnames = ...., # Object of class marrayInfo
maTargets = ...., # Object of class marrayInfo
maNotes = ...., # Object of class character
maNormCall = ...., # Object of class call
)
maA
:Object of class "matrix"
, average log-intensities (base 2) A, rows correspond to spotted probe sequences, columns to arrays in the batch.
maM
:Object of class "matrix"
, intensity log-ratios (base 2) M, rows correspond to spotted probe sequences, columns to arrays in the batch.
maMloc
:Object of class "matrix"
, location normalization values, rows correspond to spotted probe sequences, columns to arrays in the batch.
maMscale
:Object of class "matrix"
, scale normalization values, rows correspond to spotted probe sequences, columns to arrays in the batch.
maW
:Object of class "matrix"
, spot quality weights, rows correspond to spotted probe sequences, columns to arrays in the batch.
maLayout
:Object of class "marrayLayout"
, layout parameters for cDNA microarrays.
maGnames
:Object of class "marrayInfo"
, description of spotted probe sequences.
maTargets
:Object of class "marrayInfo"
, description of target samples hybridized to the arrays.
maNotes
:Object of class "character"
, any notes concerning the microarray experiments, e.g. hybridization or scanning conditions.
maNormCall
:Object of class "call"
, function call for normalizing the batch of arrays.
signature(x = "marrayNorm")
: subsetting operator for spots on the array and arrays in the batch, ensures that all slots are subset properly.
signature(from = "marrayRaw", to = "marrayNorm")
: coerce an object of class "marrayRaw"
into an object of class marrayNorm
.
signature(object = "marrayNorm")
: slot accessor method.
signature(object = "marrayNorm", value = "matrix")
: slot assignment method.
signature(object = "marrayNorm")
: slot assignment method.
signature(object = "marrayNorm")
: slot accessor method.
signature(object = "marrayNorm")
: slot accessor method.
signature(object = "marrayNorm", value = "marrayInfo")
: slot assignment method.
signature(object = "marrayNorm")
: method which computes a vector of grid column coordinates for each spot.
signature(object = "marrayNorm")
: method which computes a vector of grid row coordinates for each spot.
signature(object = "marrayNorm")
: slot accessor method.
signature(object = "marrayNorm", value = "marrayLayout")
: slot assignment method.
signature(object = "marrayNorm")
: slot accessor method.
signature(object = "marrayNorm", value = "matrix")
: slot assignment method.
signature(object = "marrayNorm")
: slot accessor method.
signature(object = "marrayNorm", value = "matrix")
: slot assignment method.
signature(object = "marrayNorm")
: slot accessor method.
signature(object = "marrayNorm", value = "matrix")
: slot assignment method.
signature(object = "marrayNorm")
: slot accessor method.
signature(object = "marrayNorm", value = "numeric")
: slot assignment method.
signature(object = "marrayNorm")
: slot accessor method.
signature(object = "marrayNorm", value = "numeric")
: slot assignment method.
signature(object = "marrayNorm")
: slot accessor method.
signature(object = "marrayNorm")
: slot accessor method.
signature(object = "marrayNorm", value = "character")
: slot assignment method.
signature(object = "marrayNorm")
: slot accessor method.
signature(object = "marrayNorm")
: slot accessor method.
signature(object = "marrayNorm", value = "numeric")
: slot assignment method.
signature(object = "marrayNorm")
: slot accessor method.
signature(object = "marrayNorm", value = "numeric")
: slot assignment method.
signature(object = "marrayNorm")
: slot accessor method.
signature(object = "marrayNorm", value = "numeric")
: slot assignment method.
signature(object = "marrayNorm")
: slot accessor method.
signature(object = "marrayNorm")
: slot assignment method.
signature(object = "marrayNorm")
: method which computes a vector of print-tip-group indices for each spot.
signature(object = "marrayNorm")
: method which computes a vector of spot column coordinates for each spot.
signature(object = "marrayNorm")
: method which computes a vector of spot row coordinates for each spot.
signature(object = "marrayNorm")
: slot accessor method.
signature(object = "marrayNorm")
: slot assignment method.
signature(object = "marrayNorm")
: slot accessor method.
signature(object = "marrayNorm", value = "marrayInfo")
: slot assignment method.
signature(object = "marrayNorm")
: slot accessor method.
signature(object = "marrayNorm", value = "matrix")
: slot assignment method.
signature(x = "marrayNorm")
: print method for "marrayNorm"
class.
Sandrine Dudoit, http://www.stat.berkeley.edu/~sandrine.
S. Dudoit and Y. H. Yang. (2002). Bioconductor R packages for exploratory analysis and normalization of cDNA microarray data. In G. Parmigiani, E. S. Garrett, R. A. Irizarry and S. L. Zeger, editors, The Analysis of Gene Expression Data: Methods and Software, Springer, New York.
marrayLayout
, marrayRaw
,
marrayInfo
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 | # Examples use swirl dataset, for description type ? swirl
data(swirl)
# Median normalization
mnorm<-maNorm(swirl[,2:3],norm="m")
# Object of class marrayNorm for the second and third swirl arrays
mnorm
# Function call
maNormCall(mnorm)
# Object of class marrayInfo -- Probe sequences
maGnames(mnorm)
# Object of class marrayInfo -- Target samples
maTargets(mnorm)
# Density plot of log-ratios M for third array
plot(density(maM(mnorm[,2])), lwd=2, col=2, main="Density plots of log-ratios M")
lines(density(maM(swirl[,3])), lwd=2)
abline(v=0)
legend(2,1,c("Pre-normalization","Post-normalization"))
|
Loading required package: limma
An object of class "marrayNorm"
@maA
C:/GNU/R/R-2.4.1/library/marray/swirldata/swirl.2.spot
[1,] 14.09380
[2,] 14.21926
[3,] 14.18555
[4,] 12.69088
[5,] 12.59373
C:/GNU/R/R-2.4.1/library/marray/swirldata/swirl.3.spot
[1,] 11.412575
[2,] 11.449228
[3,] 11.282760
[4,] 8.148732
[5,] 9.594076
8443 more rows ...
@maM
C:/GNU/R/R-2.4.1/library/marray/swirldata/swirl.2.spot
[1,] -0.285832418
[2,] -0.342926131
[3,] -0.263816797
[4,] 0.003256647
[5,] -0.145964826
C:/GNU/R/R-2.4.1/library/marray/swirldata/swirl.3.spot
[1,] 0.5510083
[2,] 0.5600710
[3,] 0.6486954
[4,] 0.1846651
[5,] 0.2544244
8443 more rows ...
@maMloc
[,1] [,2]
[1,] 0.03029219 -0.4602068
[2,] 0.03029219 -0.4602068
[3,] 0.03029219 -0.4602068
[4,] 0.03029219 -0.4602068
[5,] 0.03029219 -0.4602068
8443 more rows ...
@maMscale
<0 x 0 matrix>
@maW
<0 x 0 matrix>
@maLayout
An object of class "marrayLayout"
@maNgr
[1] 4
@maNgc
[1] 4
@maNsr
[1] 22
@maNsc
[1] 24
@maNspots
[1] 8448
@maSub
[1] TRUE TRUE TRUE TRUE TRUE
8443 more elements ...
@maPlate
[1] 1 1 1 1 1
Levels: 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
8443 more elements ...
@maControls
[1] 1 1 1 1 1
Levels: 0 1
8443 more elements ...
@maNotes
[1] "No Input File"
@maGnames
An object of class "marrayInfo"
@maLabels
[1] "geno1" "geno2" "geno3" "3XSSC" "3XSSC"
8443 more elements ...
@maInfo
"ID" "Name"
1 control geno1
2 control geno2
3 control geno3
4 control 3XSSC
5 control 3XSSC
8443 more rows ...
@maNotes
[1] "C:/GNU/R/R-2.4.1/library/marray/swirldata/fish.gal"
@maTargets
An object of class "marrayInfo"
@maLabels
[1] "swirl.2.spot" "swirl.3.spot"
@maInfo
Names slide number experiment Cy3 experiment Cy5 date comments
2 swirl.2.spot 82 wild type swirl 2001/9/20 NA
3 swirl.3.spot 93 swirl wild type 2001/11/8 NA
@maNotes
[1] "C:/GNU/R/R-2.4.1/library/marray/swirldata/SwirlSample.txt"
@maNotes
[1] "Spot Data"
@maNormCall
maNormMain(mbatch = mbatch, f.loc = list(maNormMed(x = NULL,
y = "maM", subset = subset)), Mloc = Mloc, Mscale = Mscale,
echo = echo)
maNormMain(mbatch = mbatch, f.loc = list(maNormMed(x = NULL,
y = "maM", subset = subset)), Mloc = Mloc, Mscale = Mscale,
echo = echo)
An object of class "marrayInfo"
@maLabels
[1] "geno1" "geno2" "geno3" "3XSSC" "3XSSC"
8443 more elements ...
@maInfo
"ID" "Name"
1 control geno1
2 control geno2
3 control geno3
4 control 3XSSC
5 control 3XSSC
8443 more rows ...
@maNotes
[1] "C:/GNU/R/R-2.4.1/library/marray/swirldata/fish.gal"
An object of class "marrayInfo"
@maLabels
[1] "swirl.2.spot" "swirl.3.spot"
@maInfo
Names slide number experiment Cy3 experiment Cy5 date comments
2 swirl.2.spot 82 wild type swirl 2001/9/20 NA
3 swirl.3.spot 93 swirl wild type 2001/11/8 NA
@maNotes
[1] "C:/GNU/R/R-2.4.1/library/marray/swirldata/SwirlSample.txt"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.