I want to retrieve the dataset GSE152938
from the GEO database and convert it to a Seurat object. However, my code below returned an empty dataframe.
Is the dataset itself empty or did I import the dataset wrongly?
gse <- getGEO("GSE152938",GSEMatrix=TRUE)
eset <- gse[[1]]
pData(eset)
exprs(eset)
Output:
exprs(eset)
GSM4630027 GSM4630028 GSM4630029 GSM4630030 GSM4630031
Convert to Seurat:
seurat <- CreateSeuratObject(exprs(eset))
melissachua90 why did you delete this post?