(no subject)
4
0
Entering edit mode
@qian_hui-ronglillycom-401
Last seen 9.7 years ago
When I tried to install Bioconductor libraries, I got this error message (at the same time I can open the Bioconductor website fine in IE): > getBioC() Running getBioC version 1.2.40.... If you encounter problems, first make sure that you are running the latest version of getBioC() which can be found at: www.bioconductor.org/getBioC.R Please direct any concerns or questions to bioconductor@stat.math.ethz.ch. Error in getBioC() : Your R can not connect to the Bioconductor website, which is required for getBioc to work properly. The most likely cause of this is the internet configuration of R > How can I fix this? Thanks a lot, Hui-Rong ---------------------------------- Hui-Rong Qian Sr. Statistician Eli Lilly and Company [[alternative HTML version deleted]]
• 1.1k views
ADD COMMENT
0
Entering edit mode
@anna-gustafsson-129
Last seen 9.7 years ago
Dear all, Unfortunately - more questions: I wonder how to use mva.pairs to plot 2 replicate slides from an "eset" object of background corrected, normalized, pm corrected and summarized data (i.e rma output). I can only find a vignette describing plots from only normalized, non summarized (16 individual expression measures / gene plotted) and I do not understand how to transfer that information to work for my data in the "eset" format..... :( With hopes on help! // Anna :o) ********************************************************************** ********************* Anna Gustafsson Royal Institute of Technology AlbaNova University Center Stockholm Center for Physics, Astronomy and Biotechnology Department of Molecular Biotechnology 106 91 Stockholm, Sweden Phone (office): +46 8 553 783 41 Fax: + 46 8 553 784 81 Visiting adress: Roslagstullsbacken 21, Floor 3 Delivery adress: Roslagsv?gen 30B
ADD COMMENT
0
Entering edit mode
Hi Anna, it does not hurt to read the help pages. The function mva.pairs expects a matrix. A call like the following should work: mva.pairs(exprs(eset), log.it=FALSE) (Oddly enough, the default of this function is to log the data.) However, if you have many (n) chips, rather than looking at all n*(n-1)/2 pairs of chips, it might be more illuminating to do something like: A = rowMeans(exprs(eset)) for (i in 1:nrchips) { M = exprs(eset)[,i] - A plot(A, M, pch=".") } Best, Wolfgang ------------------------------------- Wolfgang Huber Division of Molecular Genome Analysis German Cancer Research Center Heidelberg, Germany Phone: +49 6221 424709 Fax: +49 6221 42524709 Http: www.dkfz.de/mga/whuber ------------------------------------- On Thu, 14 Aug 2003, Anna Gustafsson wrote: > Dear all, > > Unfortunately - more questions: > I wonder how to use mva.pairs to plot 2 replicate slides from an "eset" object of background corrected, normalized, pm corrected and summarized data (i.e rma output). > > I can only find a vignette describing plots from only normalized, non summarized (16 individual expression measures / gene plotted) and I do not understand how to transfer that information to work for my data in the "eset" format..... :( > > With hopes on help! > > // Anna :o) > > ******************************************************************** *********************** > Anna Gustafsson > > Royal Institute of Technology > AlbaNova University Center > Stockholm Center for Physics, Astronomy and Biotechnology > Department of Molecular Biotechnology > 106 91 Stockholm, Sweden > > Phone (office): +46 8 553 783 41 > Fax: + 46 8 553 784 81 > Visiting adress: Roslagstullsbacken 21, Floor 3 > Delivery adress: Roslagsv?gen 30B > > _______________________________________________ > Bioconductor mailing list > Bioconductor@stat.math.ethz.ch > https://www.stat.math.ethz.ch/mailman/listinfo/bioconductor >
ADD REPLY
0
Entering edit mode
Marcus ▴ 150
@marcus-410
Last seen 9.7 years ago
Hello all! First of all I would like to thank everybody for a great mailing list, it has halped me a lot. Question: How is the background calculated and how is it stored in my affybatch object? Is it derived from the mm values or does it originate from other data? Best regards /Marcus ********************************************************************** ********************* Marcus Gry Bj?rklund Royal Institute of Technology AlbaNova University Center Stockholm Center for Physics, Astronomy and Biotechnology Department of Molecular Biotechnology 106 91 Stockholm, Sweden Phone (office): +46 8 553 783 39 Fax: + 46 8 553 784 81 Visiting adress: Roslagstullsbacken 21, Floor 3 Delivery adress: Roslagsv?gen 30B
ADD COMMENT
0
Entering edit mode
If you are talking about the RMA background then I have a brief description on this page http://www.stat.berkeley.edu/users/bolstad/ComputeRMAFAQ/ComputeRMAFAQ .html and there are numerous other documents on my website also explaining it. If you are interested in the other "background" methods implemented in the affy package look at the vignette entitled "affy: Built-in Processing Methods" which give a description of each of the methods. You can get the vignettes by typing openVignette() (they are also on the bioconductor website). Ben On Thu, 2003-08-28 at 03:58, Marcus wrote: > Hello all! > > First of all I would like to thank everybody for a great mailing list, it > has halped me a lot. > > Question: How is the background calculated and how is it stored in my > affybatch object? > Is it derived from the mm values or does it originate from other data? > > Best regards > > /Marcus > > > ******************************************************************** *********************** > Marcus Gry Bj?rklund > > Royal Institute of Technology > AlbaNova University Center > Stockholm Center for Physics, Astronomy and Biotechnology > Department of Molecular Biotechnology > 106 91 Stockholm, Sweden > > Phone (office): +46 8 553 783 39 > Fax: + 46 8 553 784 81 > Visiting adress: Roslagstullsbacken 21, Floor 3 > Delivery adress: Roslagsv?gen 30B > > _______________________________________________ > Bioconductor mailing list > Bioconductor@stat.math.ethz.ch > https://www.stat.math.ethz.ch/mailman/listinfo/bioconductor -- Ben Bolstad <bolstad@stat.berkeley.edu> http://www.stat.berkeley.edu/~bolstad
ADD REPLY
0
Entering edit mode
@james-w-macdonald-5106
Last seen 1 day ago
United States
Technical details of how background is calculated can be found on Rafael Irizarry's website http://www.biostat.jhsph.edu/~ririzarr/papers/index.html Background is not stored in the affybatch object. It is simply calculated (using PM data) and subtracted from the PM data when you run rma (or expresso, if you accept the default bg.correct-TRUE). Note this is not true if you use bg.correct.method="MAS". The new background correction method (gcrma) does use MM probes. Info can also be found on the website. Jim James W. MacDonald Affymetrix and cDNA Microarray Core University of Michigan Cancer Center 1500 E. Medical Center Drive 7410 CCGC Ann Arbor MI 48109 734-647-5623 >>> Marcus <marcusb@biotech.kth.se> 08/28/03 06:58AM >>> Hello all! First of all I would like to thank everybody for a great mailing list, it has halped me a lot. Question: How is the background calculated and how is it stored in my affybatch object? Is it derived from the mm values or does it originate from other data? Best regards /Marcus ********************************************************************** ********************* Marcus Gry Bj?rklund Royal Institute of Technology AlbaNova University Center Stockholm Center for Physics, Astronomy and Biotechnology Department of Molecular Biotechnology 106 91 Stockholm, Sweden Phone (office): +46 8 553 783 39 Fax: + 46 8 553 784 81 Visiting adress: Roslagstullsbacken 21, Floor 3 Delivery adress: Roslagsv?gen 30B _______________________________________________ Bioconductor mailing list Bioconductor@stat.math.ethz.ch https://www.stat.math.ethz.ch/mailman/listinfo/bioconductor
ADD COMMENT
0
Entering edit mode
@bioconductor-bouncesstatmathethzch-423
Last seen 9.7 years ago

Login before adding your answer.

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