How to use affy's image function on RMA values?
1
0
Entering edit mode
@malard-joel-m-917
Last seen 9.6 years ago
Greetings, I would like to compare (visually) the raw intensities of 40 affymetrix MOE430A arrays with the corresponding expression values computed by RMA, e.g. using the function image. It seemed a good idea to replace the exprs component of the AffyBatch object with the exprs component of the object returned by justRMA but that does not work. library(affy); data <- ReadAffy(filenames=c("A1.CEL", etc, "A40.CEL")); exprs(data) <- exprs(justRMA(filenames=c("A1.CEL", etc, "A40.CEL"))); image(data[,1]); The error message is: > image(data[,1]); Warning message: data length [22690] is not a sub-multiple or multiple of the number of rows [712] in matrix The resulting image shows diagonal lines that shouldn't be there. Could anyone put me on the right track? Thanks for your help. Joel Malard [[alternative HTML version deleted]]
• 893 views
ADD COMMENT
0
Entering edit mode
Ben Bolstad ★ 1.1k
@ben-bolstad-93
Last seen 9.6 years ago
I'm a little perplexed by why you want to replace the raw probe intensities by processed RMA expression values. It makes no sense to do this and what is happening is that your RMA expression values are being duplicated many times to fill up the expr slot of the AffyBatch (this probably explains the diagonal structures you are observing). Instead this is what I think you really want to do: library(affyPLM) Data <- ReadAffy( filenames=c("A1.CEL", etc, "A40.CEL")) image(Data) # to create/view images of the raw intensities my.Pset <- rmaPLM(Data) image(my.Pset,type="resids") #image the residuals from RMA image(my.Pset,type="pos.resids") #image the positive residuals from RMA image(my.Pset,type="neg.resids") #image the negative residuals from RMA image(my.Pset,type="sign.resids") #image the sign of residuals from RMA Note that image() on PLMsets also will take a "which" argument to see individual arrays rather than the whole dataset in quick sucession eg image(my.Pset,which=2,type="resids") would show an image of the RMA residuals for the second chip in the dataset. If you are interested there are a large number of images at http://www.stat.berkeley.edu/~bolstad/PLMImageGallery/ of this type which you could use as a comparison aid on your own images Hope this helps, Ben On Wed, 2005-06-08 at 18:47 -0700, Malard, Joel M wrote: > Greetings, > > I would like to compare (visually) the raw intensities of 40 affymetrix > MOE430A arrays with the corresponding expression values computed by RMA, > e.g. using the function image. > > It seemed a good idea to replace the exprs component of the AffyBatch > object with the exprs component of the object returned by justRMA but > that does not work. > > library(affy); > data <- ReadAffy(filenames=c("A1.CEL", etc, "A40.CEL")); > > exprs(data) <- exprs(justRMA(filenames=c("A1.CEL", etc, > "A40.CEL"))); > image(data[,1]); > > The error message is: > > > image(data[,1]); > Warning message: > data length [22690] is not a sub-multiple or multiple of the number of > rows [712] in matrix > > The resulting image shows diagonal lines that shouldn't be there. > > Could anyone put me on the right track? > > Thanks for your help. > > Joel Malard > > > > [[alternative HTML version deleted]] > > _______________________________________________ > Bioconductor mailing list > Bioconductor@stat.math.ethz.ch > https://stat.ethz.ch/mailman/listinfo/bioconductor -- Ben Bolstad <bolstad@stat.berkeley.edu> http://www.stat.berkeley.edu/~bolstad
ADD COMMENT

Login before adding your answer.

Traffic: 580 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6