This is a test version of Biostars. For the public version, visit https://www.biostars.org.
GEOquerry error, expression dataset is loading as a list

please see here if you need to install GEOquerry library.

library(GEOquerry)
eset <- getGEO("GSE4051", getGPL = FALSE)
exprs(eset)
> exprs(eset)
Error in (function (classes, fdef, mtable)  : 
unable to find an inherited method for function ‘exprs’ for signature ‘"list"’
> pData(eset)
Error in (function (classes, fdef, mtable)  : 
unable to find an inherited method for function ‘pData’ for signature ‘"list"’

As a sanity check I wanted to see if GEOquerry was working properly and I think something is fishy.

> class(eset) == "ExpressionSet"
[1] FALSE

Also in the Environemtn window of Rstudio the eset variable is showing as a Massive list, shouldn't it be some object?

software error

1 answer

There is your expression set: eset$GSE4051_series_matrix.txt.gz

> class(eset$GSE4051_series_matrix.txt.gz)
[1] "ExpressionSet"
attr(,"package")
[1] "Biobase"

Log in to answer this question.