Hello,
I have a series of accession and I am wondering whether there is a fast way to extract information related to each of them? For example, I want to extract related to the following
Instead to check them one by one using GEO. for example I want to get info whether they are RNAseq or something else, tissue, Characteristics etc.
GSM1387801
GSM1387802
GSM1387803
GSM1387804
GSM1409334
GSM1409335
I tried in another way to first import all samples based on a platform ID in R based on previous question Querying Ncbi Geo By Platform Id. However, I am afraid that this way does not lead me to what I really want and not working properly Lets imagine this as my platform ID GPL17301 consisting of 53 samples
I did
library(GEOquery)
gpl <- getGEO("GPL17301")
length(Meta(gpl)$series_id)
# It only showed 10?!
@Ram thanks for your message but seems like you did not read my question. I am not looking to extract expression profiles . Please read my question carefully, if I can do that with GeoQuery , can you please provide me with an example based on the given accession IDs? I read the manual but I could not use it for this purpose
In my experience, most APIs can be used to fetch records, and the data you need seems to be part of the record. APIs usually parse the record into accessible formats for programmable analysis.
I have no experience with GeoQuery, but I was extrapolating from my experience and from common sense. I apologize f my answer was not specific to your query - I prefer showing people the path than taking them to their destination.