Entering edit mode
8.5 years ago
12021560-002
▴
30
Hi
I am reading microarray data (CEL files) through R. While reading GSE35021 based on platform Affymetrix Human Exon 1.0 ST Array [CDF: HuEx-1_0-st-v2,coreR3,A20071112,EP]. I am getting this error when I give command to read these files. let me clear I am using oligo pkg to read celfiles for this platform. Could please help how to remove this error? Is there is some other pkg to read files for this package? if yes then kindly share the name of pkg and command as well.
rawData <- read.celfiles(celfiles)
Error in read.celfiles.header (x):
Is GSE35021/CEL/GPL9793_gene_assignment
Your
GSE35021/CEL/GPL9793_gene_assignment
is not a CEL file. It should end by .CEL or .CEL.gzthis is the script I am using. Am i giving write commands please pick up the error
library(affy)
library(limma)
library(annotate)
library(oligo)
library("pd.huex.1.0.st.v2")
library("huex10sttranscriptcluster.db")
gse30521dat = getGEO('GSE30521')
gse30521raw= getGEOSuppFiles("GSE30521")
tarfile<- grep(".tar$", rownames(gse30521raw), value = TRUE)
list.files("GSE30521")
untar("GSE30521/GSE30521_RAW.tar", exdir = "GSE30521/CEL")
list.files("GSE30521/CEL")
celfiles<- list.files("GSE30521/CEL", full = TRUE)
rawData<- read.celfiles(celfiles)
Sometimes you need to see/read the error properly. Apart from *.CEL.gz files, your folder has 3 more files:
Either move them to other folder or do
what does 4:26 mean?
It is vector index in R. It means pick the elements from 4 to 26. I would highly recommend you to go thru some R programming basics before you start with microarray analysis.