miRNA Array from Affymetrix
1
0
Entering edit mode
@claudia-doring-1119
Last seen 9.6 years ago
Dear Sir and Madam, I have a problem with the miRNA Microarray from Affymetrix. I get the follow error message: AffyBatch object size of arrays=230x230 features (11 kb) cdf=miRNA-1_0_2Xgain (??? affyids) number of samples=9 Error in getCdfInfo(object) : Could not obtain CDF environment, problems encountered: Specified environment does not contain miRNA-1_0_2Xgain Library - package mirna102xgaincdf not installed Bioconductor - mirna102xgaincdf not available In addition: Warning message: missing cdf environment! in show(AffyBatch) I installed <http: www.bioconductor.org="" help="" bioc-="" views="" release="" data="" annotation="" html="" mi="" rna10cdf.html=""> mirna10cdf and <http: www.bioconductor.org="" help="" bioc-="" views="" release="" data="" annotation="" html="" mi="" rna10probe.html=""> mirna10probe. R und Bioconductor are installed last week, but also in older versions it doesn’t work. Thank you very much Claudia Döring [[alternative HTML version deleted]]
miRNA Microarray cdf miRNA Microarray cdf • 1.8k views
ADD COMMENT
0
Entering edit mode
Guido Hooiveld ★ 3.9k
@guido-hooiveld-2020
Last seen 1 day ago
Wageningen University, Wageningen, the …
Hi Claudia, I have used the same arrays as well, and did not expercience any problem. Based on the error it indeed has something to do with the CDF environment that is not properly recognized. It should be 'miRNA-1_0' without the _2Xgain attached to it... Why this in your case is added is difficult to find out without your code and sessionInfo. As you can see below his works for me using 6 sample miRNA files. HTH, Guido > library(affy) Loading required package: Biobase Welcome to Bioconductor Vignettes contain introductory material. To view, type 'openVignette()'. To cite Bioconductor, see 'citation("Biobase")' and for packages 'citation(pkgname)'. > > affy.data <- ReadAffy() > affy.data AffyBatch object size of arrays=230x230 features (12 kb) cdf=miRNA-1_0 (7815 affyids) number of samples=6 number of genes=7815 annotation=mirna10 notes= > x.norm <- rma(affy.data) Background correcting Normalizing Calculating Expression > x.norm ExpressionSet (storageMode: lockedEnvironment) assayData: 7815 features, 6 samples element names: exprs protocolData sampleNames: Z001_101_LF_LIVER_(MIRNA-1_0).CEL Z001_102_LF_LIVER_(MIRNA-1_0).CEL ... Z001_118_LF_LIVER_(MIRNA-1_0).CEL (6 total) varLabels: ScanDate varMetadata: labelDescription phenoData sampleNames: Z001_101_LF_LIVER_(MIRNA-1_0).CEL Z001_102_LF_LIVER_(MIRNA-1_0).CEL ... Z001_118_LF_LIVER_(MIRNA-1_0).CEL (6 total) varLabels: sample varMetadata: labelDescription featureData: none experimentData: use 'experimentData(object)' Annotation: mirna10 > sessionInfo() R version 2.12.0 (2010-10-15) Platform: i386-pc-mingw32/i386 (32-bit) locale: [1] LC_COLLATE=English_United States.1252 [2] LC_CTYPE=English_United States.1252 [3] LC_MONETARY=English_United States.1252 [4] LC_NUMERIC=C [5] LC_TIME=English_United States.1252 attached base packages: [1] stats graphics grDevices utils datasets methods base other attached packages: [1] mirna10cdf_2.7.0 affy_1.28.0 Biobase_2.10.0 loaded via a namespace (and not attached): [1] affyio_1.18.0 preprocessCore_1.12.0 tools_2.12.0 > ------------------------------------------------ Guido Hooiveld, PhD Nutrition, Metabolism & Genomics Group Division of Human Nutrition Wageningen University Biotechnion, Bomenweg 2 NL-6703 HD Wageningen the Netherlands tel: (+)31 317 485788 fax: (+)31 317 483342 internet: http://nutrigene.4t.com email: guido.hooiveld at wur.nl > -----Original Message----- > From: bioconductor-bounces at r-project.org > [mailto:bioconductor-bounces at r-project.org] On Behalf Of > Claudia D?ring > Sent: Monday, December 06, 2010 16:10 > To: bioconductor at r-project.org > Subject: [BioC] miRNA Array from Affymetrix > > Dear Sir and Madam, > > > > I have a problem with the miRNA Microarray from Affymetrix. > > > > I get the follow error message: > > > > AffyBatch object > > size of arrays=230x230 features (11 kb) > > cdf=miRNA-1_0_2Xgain (??? affyids) > > number of samples=9 > > Error in getCdfInfo(object) : > > Could not obtain CDF environment, problems encountered: > > Specified environment does not contain miRNA-1_0_2Xgain > > Library - package mirna102xgaincdf not installed > > Bioconductor - mirna102xgaincdf not available > > In addition: Warning message: > > missing cdf environment! in show(AffyBatch) > > > > I installed > <http: www.bioconductor.org="" help="" bioc-views="" release="" data="" anno="" tation="" html="" mi=""> rna10cdf.html> mirna10cdf and > <http: www.bioconductor.org="" help="" bioc-views="" release="" data="" anno="" tation="" html="" mi=""> rna10probe.html> mirna10probe. R und Bioconductor are > installed last week, but also in older versions it doesn't work. > > > > Thank you very much > > > > Claudia D?ring > > > > > > > [[alternative HTML version deleted]] > >
ADD COMMENT
0
Entering edit mode
Just to add on what Guido wrote, I had the same problem with some CEL files I recently came across and manually setting the CDF to mirna10 seemed to work fine. I've not found any issues with annotation, so I'm assuming that while kludgy this is OK: data = ReadAffy(celfile.path="../data/miRNA_raw_data/") data AffyBatch object size of arrays=230x230 features (40 kb) cdf=miRNA-1_0_2Xgain (??? affyids) number of samples=78 Error in getCdfInfo(object) : Could not obtain CDF environment, problems encountered: Specified environment does not contain miRNA-1_0_2Xgain Library - package mirna102xgaincdf not installed Bioconductor - mirna102xgaincdf not available In addition: Warning message: missing cdf environment! in show(AffyBatch) data = ReadAffy(celfile.path="../data/miRNA_raw_data/",cdfname="mirna10") data AffyBatch object size of arrays=230x230 features (40 kb) cdf=mirna10 (7815 affyids) number of samples=78 number of genes=7815 annotation=mirna10 notes= -- Alex Gutteridge
ADD REPLY
0
Entering edit mode
Hi Claudia, Aha, that explains it. For your info; we performed the miRNA arrays more than a year ago before this new FlashTag HSR kit was available, so this is new to me. However, since I *assume* the arrays that are used for hybridizations are still the same (in other words the content should be identical), you could make use of the suggestion Alex made (i.e. specifying the CDF environment to be used as per the example below). The BioC core team takes responsibility for providing the CDF environments for all Affymetrix catalog arrays. When asked, James MacDonald (copied in this mail) was so kind to make availble the miRNA-1_0 CDF @ BioC, so I expect he doesn't mind doing so as well for this _2xgain cdf file. :) http://www.affymetrix.com/support/downloads/library_files/miRNA- 1_0_2xgain.zip Regards, Guido > -----Original Message----- > From: Claudia D?ring [mailto:C.Doering at em.uni-frankfurt.de] > Sent: Monday, December 06, 2010 16:57 > To: Hooiveld, Guido > Subject: AW: [BioC] miRNA Array from Affymetrix > > Hi Guido, > > I think the problem is, that we use the FlashTag HSR Kit from > Genisphere. In the technical documentation from Affymetrix is > a different library file (miRNA-1_0_2Xgain (to be used with > FlashTag HSR)) recommended. > So, I need a CDF-file of this library file. > > Sincerely > > Claudia > > -----Original Message----- > From: bioconductor-bounces at r-project.org > [mailto:bioconductor-bounces at r-project.org] On Behalf Of Alex > Gutteridge > Sent: Monday, December 06, 2010 17:06 > To: bioconductor at r-project.org > Subject: Re: [BioC] miRNA Array from Affymetrix > > Just to add on what Guido wrote, I had the same problem with > some CEL files I recently came across and manually setting > the CDF to mirna10 seemed to work fine. I've not found any > issues with annotation, so I'm assuming that while kludgy this is OK: > > > data = ReadAffy(celfile.path="../data/miRNA_raw_data/") data > > AffyBatch object > size of arrays=230x230 features (40 kb) > cdf=miRNA-1_0_2Xgain (??? affyids) > number of samples=78 > Error in getCdfInfo(object) : > Could not obtain CDF environment, problems encountered: > Specified environment does not contain miRNA-1_0_2Xgain > Library - package mirna102xgaincdf not installed Bioconductor > - mirna102xgaincdf not available In addition: Warning message: > missing cdf environment! in show(AffyBatch) > > data = > > ReadAffy(celfile.path="../data/miRNA_raw_data/",cdfname="mirna10") > > data > > AffyBatch object > size of arrays=230x230 features (40 kb) > cdf=mirna10 (7815 affyids) > number of samples=78 > number of genes=7815 > annotation=mirna10 > notes= > > -- > Alex Gutteridge > > _______________________________________________ > Bioconductor mailing list > Bioconductor at r-project.org > https://stat.ethz.ch/mailman/listinfo/bioconductor > Search the archives: > http://news.gmane.org/gmane.science.biology.informatics.conductor > >
ADD REPLY
0
Entering edit mode
This works! Thank you very much. Claudia -----Urspr?ngliche Nachricht----- Von: bioconductor-bounces at r-project.org [mailto:bioconductor-bounces at r-project.org] Im Auftrag von Alex Gutteridge Gesendet: Monday, December 06, 2010 5:06 PM An: bioconductor at r-project.org Betreff: Re: [BioC] miRNA Array from Affymetrix Just to add on what Guido wrote, I had the same problem with some CEL files I recently came across and manually setting the CDF to mirna10 seemed to work fine. I've not found any issues with annotation, so I'm assuming that while kludgy this is OK: data = ReadAffy(celfile.path="../data/miRNA_raw_data/") data AffyBatch object size of arrays=230x230 features (40 kb) cdf=miRNA-1_0_2Xgain (??? affyids) number of samples=78 Error in getCdfInfo(object) : Could not obtain CDF environment, problems encountered: Specified environment does not contain miRNA-1_0_2Xgain Library - package mirna102xgaincdf not installed Bioconductor - mirna102xgaincdf not available In addition: Warning message: missing cdf environment! in show(AffyBatch) data = ReadAffy(celfile.path="../data/miRNA_raw_data/",cdfname="mirna10") data AffyBatch object size of arrays=230x230 features (40 kb) cdf=mirna10 (7815 affyids) number of samples=78 number of genes=7815 annotation=mirna10 notes= -- Alex Gutteridge _______________________________________________ Bioconductor mailing list Bioconductor at r-project.org 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: 483 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