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]]
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
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
>
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
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
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