MiRNA cel file is not being read in Bioconductor R. R version is 3.5.2
Rstudio massage is following:
"Couldn't obtain CDF environment, problems encountered: specified environment does not contain miRNA-3_0
Library -package mirna30cdf not installed
Bioconductor - mirna30cdf not available"
Affymetrix (and hence Bioconductor) doesn't provide a chip definition file (CDF) for this type of array. To process your CEL files you will need the oligo package (here) and corresponding platform design package (here).
You may want to check e.g. this post of James McDonald (here) for some code to get you started. [Obviously you have to modify the name of the PdInfo package as well as the location of your CEL files...]
i have excused following command given your link but any solution come out.
setwd("C:/Users/Chandan Yadav/Desktop/New folder/chandan")
library(pd.mirna.3.0)
library(oligo)
library(pd.mirna.3.0)
celFiles <- list.celfiles("~/Desktop/AffymetrixmiRNA/RawDatamiRNA", full.names=TRUE)
rawData <- read.celfiles(celFiles, pkgname="pd.mirna.3.0")
All the CEL files must be of the same type.
Error in read.celfiles(celFiles, pkgname = "pd.mirna.3.0") :
checkChipTypes(filenames, verbose, "affymetrix", TRUE) is not TRUE
is rather self-explanatory. It means that either a) you have an experiment consisting of some CEL files that you think are mirna 3.0 arrays, but rather are (all) of a different type; or b) that your CEL files are of 'mixed origin' [you thus have e.g. some 3.0 arrays, but also 4.0 arrays].
Easiest to do is NOT to specify the PdInfo package when reading-in the CELL files (situation a). Thus do:
rawData <- read.celfiles(celFiles) #pkgname argument is not specified
If this doesn't work either, then likely situation b) is at hand. I would then suggest to read ech CEL file separately/individually to check which ones are different.
i have excused following command given your link but any solution come out.
The error you got:
is rather self-explanatory. It means that either a) you have an experiment consisting of some CEL files that you think are mirna 3.0 arrays, but rather are (all) of a different type; or b) that your CEL files are of 'mixed origin' [you thus have e.g. some 3.0 arrays, but also 4.0 arrays].
Easiest to do is NOT to specify the
PdInfo
package when reading-in the CELL files (situation a). Thus do:If this doesn't work either, then likely situation b) is at hand. I would then suggest to read ech CEL file separately/individually to check which ones are different.