Human Gene 1.1 ST cdf
2
0
Entering edit mode
@nicolas-servant-1466
Last seen 23 months ago
France
Hi, I'm looking for the cdf package of the Affymetrix Human Gene 1.1 ST ArrayPlate. I found the hugene1.0 package but not the 1.1 (only the annotation package .db are available) ... Does anybody know if such a package exists ? Thanks Nicolas -- Nicolas Servant Equipe Bioinformatique Institut Curie 26, rue d'Ulm - 75248 Paris Cedex 05 - FRANCE Email: Nicolas.Servant at curie.fr Tel: 01 56 24 69 85 http://bioinfo.curie.fr/
cdf cdf • 1.7k views
ADD COMMENT
0
Entering edit mode
@james-w-macdonald-5106
Last seen 3 hours ago
United States
Hi Nicolas, On 3/21/2011 11:18 AM, Nicolas Servant wrote: > Hi, > > I'm looking for the cdf package of the Affymetrix Human Gene 1.1 ST > ArrayPlate. > I found the hugene1.0 package but not the 1.1 (only the annotation > package .db are available) ... > Does anybody know if such a package exists ? No. We build the cdf package for this chip (1.0) using the unsupported cdf file that affy supplies. They have never to my knowledge offered an unsupported version of the 1.1 chip, so we don't have a cdf package. You can however use some functions from the aroma.affymetrix project to create a cdf if you are feeling adventurous (https://stat.ethz.ch/pipermail/bioconductor/2010-December/036730.html ). But you should really be using either oligo or xps to analyze these chips. The affy package was never intended for these chips, and there are real reasons not to use it. Best, Jim > > Thanks > Nicolas > -- James W. MacDonald, M.S. Biostatistician Douglas Lab University of Michigan Department of Human Genetics 5912 Buhl 1241 E. Catherine St. Ann Arbor MI 48109-5618 734-615-7826 ********************************************************** Electronic Mail is not secure, may not be read every day, and should not be used for urgent or sensitive issues
ADD COMMENT
0
Entering edit mode
Thanks Jim. I found a cdf on BrainArray http://www.affymetrix.com/browse/products.jsp?navMode=34000&productId= 131554&navAction=jump&aId=productsNav#1_1 Then I plan to simply use the RMA function from the affy package. require(hugene11stv1hsentrezgcdf) require(hugene11stv1hsentrezg.db) require(hugene11stv1hsentrezgprobe) cdfname <- "hugene11stv1hsentrezg" abatch <- ReadAffy(celfile.path=rawDataDir, cdfname=cdfname) rmaData <- rma(abatch, cdfname = cdfname) Is there still some reason to use xps or oligo instead of the affy package ? The vignette of oligo seems to also use RMA ... http://www.bioconductor.org/packages/2.7/bioc/vignettes/oligo/inst/doc /V5ExonGene.pdf Thanks Nicolas James W. MacDonald a ?crit : > Hi Nicolas, > > On 3/21/2011 11:18 AM, Nicolas Servant wrote: >> Hi, >> >> I'm looking for the cdf package of the Affymetrix Human Gene 1.1 ST >> ArrayPlate. >> I found the hugene1.0 package but not the 1.1 (only the annotation >> package .db are available) ... >> Does anybody know if such a package exists ? > > No. We build the cdf package for this chip (1.0) using the unsupported > cdf file that affy supplies. They have never to my knowledge offered > an unsupported version of the 1.1 chip, so we don't have a cdf package. > > You can however use some functions from the aroma.affymetrix project > to create a cdf if you are feeling adventurous > (https://stat.ethz.ch/pipermail/bioconductor/2010-December/036730.ht ml). > > But you should really be using either oligo or xps to analyze these > chips. The affy package was never intended for these chips, and there > are real reasons not to use it. > > Best, > > Jim > > >> >> Thanks >> Nicolas >> > -- Nicolas Servant Equipe Bioinformatique Institut Curie 26, rue d'Ulm - 75248 Paris Cedex 05 - FRANCE Email: Nicolas.Servant at curie.fr Tel: 01 56 24 69 85 http://bioinfo.curie.fr/
ADD REPLY
0
Entering edit mode
Hi Nicolas, On 3/21/2011 12:51 PM, Nicolas Servant wrote: > Thanks Jim. > I found a cdf on BrainArray > http://www.affymetrix.com/browse/products.jsp?navMode=34000&productI d=131554&navAction=jump&aId=productsNav#1_1 > Then I plan to simply use the RMA function from the affy package. > > require(hugene11stv1hsentrezgcdf) > require(hugene11stv1hsentrezg.db) > require(hugene11stv1hsentrezgprobe) > cdfname<- "hugene11stv1hsentrezg" > abatch<- ReadAffy(celfile.path=rawDataDir, cdfname=cdfname) > rmaData<- rma(abatch, cdfname = cdfname) > > Is there still some reason to use xps or oligo instead of the affy > package ? It depends on what you are trying to do. The MBNI re-mapped cdfs are nice because you get updated mappings, but for these chips the original mappings aren't that out of date. So I don't know how much you gain. In addition, AFAIK, the probes are collected into gene or transcript-level probesets, so you cannot do any exon-level analyses. Both oligo and xps will do RMA, but they also allow you to vary at what level you collapse the probes into probesets (exon or gene level). If you are interested in alternate splicing, then you might want to be able to do exon-level stuff. The downside of oligo and xps is that they take Affy at their word vis a vis the mapping of probes to (exons, transcripts), which involves mapping some probes to multiple things. This is a bit sketchy; by definition you don't know what those probes are measuring. The MBNI cdf packages have no multiple-mapped probes (they are discarded), so that isn't an issue. Best, Jim > The vignette of oligo seems to also use RMA ... > http://www.bioconductor.org/packages/2.7/bioc/vignettes/oligo/inst/d oc/V5ExonGene.pdf > > Thanks > Nicolas > > James W. MacDonald a ?crit : >> Hi Nicolas, >> >> On 3/21/2011 11:18 AM, Nicolas Servant wrote: >>> Hi, >>> >>> I'm looking for the cdf package of the Affymetrix Human Gene 1.1 ST >>> ArrayPlate. >>> I found the hugene1.0 package but not the 1.1 (only the annotation >>> package .db are available) ... >>> Does anybody know if such a package exists ? >> >> No. We build the cdf package for this chip (1.0) using the unsupported >> cdf file that affy supplies. They have never to my knowledge offered >> an unsupported version of the 1.1 chip, so we don't have a cdf package. >> >> You can however use some functions from the aroma.affymetrix project >> to create a cdf if you are feeling adventurous >> (https://stat.ethz.ch/pipermail/bioconductor/2010-December/036730.h tml). >> >> But you should really be using either oligo or xps to analyze these >> chips. The affy package was never intended for these chips, and there >> are real reasons not to use it. >> >> Best, >> >> Jim >> >> >>> >>> Thanks >>> Nicolas >>> >> > > -- James W. MacDonald, M.S. Biostatistician Douglas Lab University of Michigan Department of Human Genetics 5912 Buhl 1241 E. Catherine St. Ann Arbor MI 48109-5618 734-615-7826 ********************************************************** Electronic Mail is not secure, may not be read every day, and should not be used for urgent or sensitive issues
ADD REPLY
0
Entering edit mode
Dear Nicolas, If you want to use xps for Gene 1.1 ST arrays depends on you. Some people consider it as an advantage that xps uses the official Affymetrix PGF-files and annotation files, and the fact that it allows to do the analysis on computers with 1-2 GB RAM only. Furthermore, xps does not only allow you to use RMA but also MAS5 for these arrays, and it supports DABG detection calls. Best regards Christian _._._._._._._._._._._._._._._._._._ C.h.r.i.s.t.i.a.n S.t.r.a.t.o.w.a V.i.e.n.n.a A.u.s.t.r.i.a e.m.a.i.l: cstrato at aon.at _._._._._._._._._._._._._._._._._._ On 3/21/11 5:51 PM, Nicolas Servant wrote: > Thanks Jim. > I found a cdf on BrainArray > http://www.affymetrix.com/browse/products.jsp?navMode=34000&productI d=131554&navAction=jump&aId=productsNav#1_1 > Then I plan to simply use the RMA function from the affy package. > > require(hugene11stv1hsentrezgcdf) > require(hugene11stv1hsentrezg.db) > require(hugene11stv1hsentrezgprobe) > cdfname<- "hugene11stv1hsentrezg" > abatch<- ReadAffy(celfile.path=rawDataDir, cdfname=cdfname) > rmaData<- rma(abatch, cdfname = cdfname) > > Is there still some reason to use xps or oligo instead of the affy > package ? > The vignette of oligo seems to also use RMA ... > http://www.bioconductor.org/packages/2.7/bioc/vignettes/oligo/inst/d oc/V5ExonGene.pdf > > Thanks > Nicolas > > James W. MacDonald a ?crit : >> Hi Nicolas, >> >> On 3/21/2011 11:18 AM, Nicolas Servant wrote: >>> Hi, >>> >>> I'm looking for the cdf package of the Affymetrix Human Gene 1.1 ST >>> ArrayPlate. >>> I found the hugene1.0 package but not the 1.1 (only the annotation >>> package .db are available) ... >>> Does anybody know if such a package exists ? >> >> No. We build the cdf package for this chip (1.0) using the unsupported >> cdf file that affy supplies. They have never to my knowledge offered >> an unsupported version of the 1.1 chip, so we don't have a cdf package. >> >> You can however use some functions from the aroma.affymetrix project >> to create a cdf if you are feeling adventurous >> (https://stat.ethz.ch/pipermail/bioconductor/2010-December/036730.h tml). >> >> But you should really be using either oligo or xps to analyze these >> chips. The affy package was never intended for these chips, and there >> are real reasons not to use it. >> >> Best, >> >> Jim >> >> >>> >>> Thanks >>> Nicolas >>> >> > >
ADD REPLY
0
Entering edit mode
@michal-blazejczyk-2231
Last seen 9.6 years ago
Hi Nicolas, There was a thread here about two weeks ago that discussed this specific question. The question was: > I have noticed that Bioconductor's just.rma() function returns fewer transcript-level > probesets that RMA in APT for the Human Gene 1.0 ST array. To be specific, 819 probesets > are missing, and most of them seem to be "real", i.e. they are annotated when I run them > through NetAffx. And one of the responses was: > in just.rma and rma, it was assumed that each probe could be in at most 1 probeset. > once a probe was used, it cannot be reused. on the ST arrays, some probes can be in many > probesets... so if you use rma, eventually, all the probes in a probeset have been used > once by the time the current probeset needs it & you get NA's. Best, Micha? B?a?ejczyk McGill University and Genome Quebec Innovation Centre http://www.gqinnovationcenter.com/services/bioinformatics/flexarray/in dex.aspx?l=e > Thanks Jim. > I found a cdf on BrainArray > http://www.affymetrix.com/browse/products.jsp?navMode=34000&productI d=131554&navAction=jump&aId=productsNav#1_1 > Then I plan to simply use the RMA function from the affy package. > > require(hugene11stv1hsentrezgcdf) > require(hugene11stv1hsentrezg.db) > require(hugene11stv1hsentrezgprobe) > cdfname <- "hugene11stv1hsentrezg" > abatch <- ReadAffy(celfile.path=rawDataDir, cdfname=cdfname) > rmaData <- rma(abatch, cdfname = cdfname) > > Is there still some reason to use xps or oligo instead of the affy > package ? > The vignette of oligo seems to also use RMA ... > http://www.bioconductor.org/packages/2.7/bioc/vignettes/oligo/inst/d oc/V5ExonGene.pdf > > Thanks > Nicolas
ADD COMMENT

Login before adding your answer.

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