miRNA microarray analysis
2
0
Entering edit mode
aswathym ▴ 10
@aswathym-7607
Last seen 6.5 years ago
United States

Hii, 

I was working on this microRNA expression analysis. while doing I stuck by this error. Need to help to proceed further

Thank you

>library(affy)
>data <- ReadAffy() 
>data
AffyBatch object
size of arrays=541x541 features (18 kb)
cdf=miRNA-4_0 (??? affyids)
number of samples=4
Error in getCdfInfo(object) : 
  Could not obtain CDF environment, problems encountered:
Specified environment does not contain miRNA-4_0
Library - package mirna40cdf not installed
Bioconductor - mirna40cdf not available
In addition: Warning message:
missing cdf environment! in show(AffyBatch) 

I have searched to find solution for the cdf file.How to obtain a CDF 

microarray cdf • 4.2k views
ADD COMMENT
2
Entering edit mode
@james-w-macdonald-5106
Last seen 8 hours ago
United States

You cannot use the affy/makecdfenv pipeline with these arrays. You should be using oligo instead.

library(oligo)
dat <- read.celfiles(list.celfiles())
eset <- rma(dat)

 

ADD COMMENT
0
Entering edit mode

i did normalization. using the same procedure.

Thank you so much

ADD REPLY
1
Entering edit mode
Johannes Rainer ★ 2.0k
@johannes-rainer-6987
Last seen 7 weeks ago
Italy

This basically means that the CDF package to work with this microarray is not available in Bioconductor. If you do have the CDF file yourself (usually you can find them at Affymetrix) you could try to create the package by yourself using the makecdfenv package, install it and then you should be able to process these arrays.

ADD COMMENT
0
Entering edit mode

Thank you sir

Still I tried all this. I couldn't understand what is the real problem.

 make.cdf.package("mirna40cdf", version = packageDescription("makecdfenv", field = "Version"), species="", unlink=TRUE, compress=FALSE, package.path = pkgpath)
Error in isCDFXDA(file.path(path.expand(cdf.path), filename)) : 
 

> make.cdf.package("mirna40.cdf", species = "mouse")
Error in isCDFXDA(file.path(path.expand(cdf.path), filename)) : 
  Unable to open the file D:/aswathy_works/hari_sir/KBH/mirna40.cdf

ADD REPLY
0
Entering edit mode

do you have the mirna40.cdf file on your hand? if so, did you place it into the current directory? the last error message rather looks like the function is simply not finding your cdf file.

it actually looks that you can get the CDF from http://www.affymetrix.com/support/technical/byproduct.affx?product=miRNAGalaxy

ADD REPLY
0
Entering edit mode

sir I have the cdf file in the directory. Do I need to install in cmd ??

i have miRNA-4_0-st-v1 in my directory

I read somewhere like that.

 

ADD REPLY
0
Entering edit mode

Sir I solved that problem

now its showing another

eset.rma <- expresso(abatch, bgcorrect.method="rma", normalize.method="quantiles", pmcorrect.method="pmonly", summary.method="medianpolish")
background correction: rma 
normalization: quantiles 
PM/MM correction : pmonly 
expression values: medianpolish 
background correcting...done.
normalizing...
Error in ans[[i]][, i.probes] : subscript out of bounds

 

why i just cant normalizing using

eset<-rma(abatch)

 

 

ADD REPLY

Login before adding your answer.

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