Annotation Using GEOquery
1
0
Entering edit mode
ekl • 0
@ekl-22229
Last seen 4.4 years ago

I am trying to finish a microarray analysis. The array I am using does not have an annotation package in Bioconductor. I got the data from GEO NCBI. Now I am trying to annotate the data to be able to find DEGs. How do I go about doing that? Also, when I try to use the read.table function for a txt tile, it says permission denied; see below. Thank you in advance.

corn<-read.table("C:\\Users\\EKL\\Downloads\\GSE51469_RAW.txt",header=TRUE,sep=",")
Error in file(file, "rt") : cannot open the connection
In addition: Warning message:
In file(file, "rt") :
  cannot open file 'C:\Users\EKL\Downloads\GSE51469_RAW.txt': No such file or directory
Annotation GEO TXT • 852 views
ADD COMMENT
0
Entering edit mode

The problems you are having above are not related to Bioconductor. You might want to spend a little time taking a quick intro-to-R course.

ADD REPLY
0
Entering edit mode
@sean-davis-490
Last seen 12 weeks ago
United States

As for the annotation from GEOquery, the fData accessor will access the feature data that the submitter supplied to GEO.

g = getGEO("GSE51469")[[1]]
head(fData(g))

In your case, it appears that the only informative column is the "SEQUENCE" column which you could use to BLAST against genes or genome of interest. Alternatively, write to the submitter of the data to ask for more information about the array platform and features.

ADD COMMENT

Login before adding your answer.

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