how to obtain differentially expressed genes from a GSE serie
2
1
Entering edit mode
Salvo88 ▴ 20
@salvo88-14379
Last seen 4.8 years ago

Hello everyone,

I have loaded through GEOquery a GSE serie, I used this function from a quick tutorial I found and I just modified with my dataset of interest:

ex:

GSE16444 <- getGEO('GSE16444', GSEMatrix=FALSE)

I tried to transform in a dataset with the  function find in the same tutorial: 

eset <- GDS2eSet(gds,do.log2=TRUE)

my daaset of interest it is a miRNA microarray dataset, what I would like to do is to perform the different express miRNAs between two groups of the dataset. How I should procede? Which packages and function you suggest?

thank you very much for your help

Salvo

microarray GSE • 1.2k views
ADD COMMENT
1
Entering edit mode
Salvo88 ▴ 20
@salvo88-14379
Last seen 4.8 years ago

Yes, I did it, now it works perfectly

 

Thank you very much

ADD COMMENT
0
Entering edit mode
@sean-davis-490
Last seen 12 weeks ago
United States

Use GSEMatrix = TRUE. The result from getGEO is a list, so use only the first element.

GSE16444 <- getGEO('GSE16444', GSEMatrix = TRUE)

The GSE16444 is now an ExpressionSet that can be used in any package that performs differential expression analysis starting from there. Limma is an appropriate choice, but there are many others.

ADD COMMENT

Login before adding your answer.

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