How to save the RMA result in .RData file (oligo package)?
1
0
Entering edit mode
Peng Yu ▴ 940
@peng-yu-3586
Last seen 9.6 years ago
I currrently use the following code to generate RMA results (in exprs.txt). But it is inconvenient to save a text file. If I can save the result in '.RData' format, it would be faster. I'm wondering what variable in 'eset' I should 'save()' into '.RData' format. library(oligo) cel_files = list.celfiles('.', full.names=T,recursive=T) data=read.celfiles(cel_files) eset=rma(data) write.exprs(eset, file="exprs.txt", sep="\t")
• 1.7k views
ADD COMMENT
0
Entering edit mode
@steve-lianoglou-2771
Last seen 13 months ago
United States
Hi, On Nov 10, 2009, at 3:17 PM, Peng Yu wrote: > I currrently use the following code to generate RMA results (in > exprs.txt). But it is inconvenient to save a text file. If I can save > the result in '.RData' format, it would be faster. I'm wondering what > variable in 'eset' I should 'save()' into '.RData' format. > > library(oligo) > cel_files = list.celfiles('.', full.names=T,recursive=T) > data=read.celfiles(cel_files) > eset=rma(data) > write.exprs(eset, file="exprs.txt", sep="\t") It shouldn't be different than saving another other R object: save(eset, file="exprs.eset.rda") -steve -- Steve Lianoglou Graduate Student: Computational Systems Biology | Memorial Sloan-Kettering Cancer Center | Weill Medical College of Cornell University Contact Info: http://cbio.mskcc.org/~lianos/contact
ADD COMMENT
0
Entering edit mode
On Tue, Nov 10, 2009 at 2:21 PM, Steve Lianoglou <mailinglist.honeypot at="" gmail.com=""> wrote: > Hi, > > On Nov 10, 2009, at 3:17 PM, Peng Yu wrote: > >> I currrently use the following code to generate RMA results (in >> exprs.txt). But it is inconvenient to save a text file. If I can save >> the result in '.RData' format, it would be faster. ?I'm wondering what >> variable in 'eset' I should 'save()' into '.RData' format. >> >> library(oligo) >> cel_files = list.celfiles('.', full.names=T,recursive=T) >> data=read.celfiles(cel_files) >> eset=rma(data) >> write.exprs(eset, file="exprs.txt", sep="\t") > > It shouldn't be different than saving another other R object: > > save(eset, file="exprs.eset.rda") 'eset' has a lot of things that I don't need. I only want to save the RMA corrected expression values that were in 'exprs.txt' to a '.RData' file.
ADD REPLY
0
Entering edit mode
Hi Peng, On Nov 10, 2009, at 8:53 PM, Peng Yu wrote: > On Tue, Nov 10, 2009 at 2:21 PM, Steve Lianoglou > <mailinglist.honeypot at="" gmail.com=""> wrote: >> Hi, >> >> On Nov 10, 2009, at 3:17 PM, Peng Yu wrote: >> >>> I currrently use the following code to generate RMA results (in >>> exprs.txt). But it is inconvenient to save a text file. If I can >>> save >>> the result in '.RData' format, it would be faster. I'm wondering >>> what >>> variable in 'eset' I should 'save()' into '.RData' format. >>> >>> library(oligo) >>> cel_files = list.celfiles('.', full.names=T,recursive=T) >>> data=read.celfiles(cel_files) >>> eset=rma(data) >>> write.exprs(eset, file="exprs.txt", sep="\t") >> >> It shouldn't be different than saving another other R object: >> >> save(eset, file="exprs.eset.rda") > > 'eset' has a lot of things that I don't need. I only want to save the > RMA corrected expression values that were in 'exprs.txt' to a '.RData' > file. I'd suggest reading some of the introductory vignettes you have access to when you load the affy library. In particular, check out the "Primer", and "An introduction to Biobase and ExpressionSets". You'll find it quite helpful down the road if you get familiar with working with ExpressionSets, etc. now (it can be a pain at first). So, you'd do: ... eset <- rma(data) expr.matrix <- exprs(eset) save(expr.matrix, file="exprs.rda") ... HTH, -steve -- Steve Lianoglou Graduate Student: Computational Systems Biology | Memorial Sloan-Kettering Cancer Center | Weill Medical College of Cornell University Contact Info: http://cbio.mskcc.org/~lianos/contact
ADD REPLY
0
Entering edit mode
exprsData = exprs(eset) save(exprsData, file="fileName.rda") b On Nov 10, 2009, at 11:53 PM, Peng Yu wrote: > On Tue, Nov 10, 2009 at 2:21 PM, Steve Lianoglou > <mailinglist.honeypot at="" gmail.com=""> wrote: >> Hi, >> >> On Nov 10, 2009, at 3:17 PM, Peng Yu wrote: >> >>> I currrently use the following code to generate RMA results (in >>> exprs.txt). But it is inconvenient to save a text file. If I can >>> save >>> the result in '.RData' format, it would be faster. I'm wondering >>> what >>> variable in 'eset' I should 'save()' into '.RData' format. >>> >>> library(oligo) >>> cel_files = list.celfiles('.', full.names=T,recursive=T) >>> data=read.celfiles(cel_files) >>> eset=rma(data) >>> write.exprs(eset, file="exprs.txt", sep="\t") >> >> It shouldn't be different than saving another other R object: >> >> save(eset, file="exprs.eset.rda") > > 'eset' has a lot of things that I don't need. I only want to save the > RMA corrected expression values that were in 'exprs.txt' to a '.RData' > file. > > _______________________________________________ > Bioconductor mailing list > Bioconductor at stat.math.ethz.ch > https://stat.ethz.ch/mailman/listinfo/bioconductor > Search the archives: http://news.gmane.org/gmane.science.biology.informatics.conductor
ADD REPLY

Login before adding your answer.

Traffic: 719 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