This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Load GSE dataset in R

I'm trying to load GSE147507 dataset in R. But it loads with zero rows (marked as yellow inside image). Here is my code.

library(GEOquery)

gse <- GEOquery::getGEO("GSE147507", GSEMatrix = TRUE)
show(gse)

And R output...

enter image description here

Can anyone help me out?

r getgeo

1 answer

Hi,

It is a bulk RNA-sequencing study; so, GEOquery will not 'work'.

You need to obtain the TSV files and load them into R manually.

Kind regards, Kevin

Log in to answer this question.