Analysing GSE datasets with GEOquery
1
0
Entering edit mode
6.9 years ago
IsmailM ▴ 110

Hi,

I'm having difficulties in analyzing a number of GSE datasets using the GEOquery package.

I have managed to get it to work with certain accession numbers, but am having issues running the same code with other accession numbers.

e.g. it works with GSE51808 but does not work with GSE61369 etc.

accession <- 'GSE51808'
# accession <- 'GSE61369' # DOES NOT WORK
gset <- getGEO(accession, GSEMatrix = TRUE)
if (length(gset) > 1) idx <- grep(gset@annotation, attr(gse, "names")) else idx <- 1
eset        <- gset[[idx]]
X           <- exprs(eset) # Get Expression Data
pData       <- pData(eset)
gene.names  <- as.character(eset@featureData@data[, "Gene Symbol"])
rownames(X) <- gene.names

head(X)

It seems that both datasets are downloaded from NCBI via the getGEO() command but the matrix is not created with the second datasets meaning that the downstream analysis fails...

GEO data series that is working

enter image description here

GEO data series that isn't working enter image description here

I would appreciate any help in getting the above code working with the following accesion number: GSE61369.

RNA-Seq Geo R • 4.3k views
ADD COMMENT
0
Entering edit mode

GSE61369 is all sequencing data; I don't think sequencing studies have been summarised as expression matrices by GEO

ADD REPLY
0
Entering edit mode
3.9 years ago

GSE61369 is Genome binding/occupancy profiling by high throughput sequencing,not Expression profiling by array

ADD COMMENT

Login before adding your answer.

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