Table expression data from GEO file
1
0
Entering edit mode
lsbew • 0
@lsbew-23269
Last seen 4.0 years ago

Hi everybody,

I downloaded a GEO dataset with GEOquery and have my gse file turned into an ExpressionSet. I have two questions how to further proceed.

1) How can I get a table with all the gene expression levels?

2) How can I compare the Row labeling to the gene information from the CHIP that was used for the Assay? I know that there is a package for the CHIP infos that I need but I have no idea how to assign the gene names to the IDs.

I am not very familiar with R, so please excuse that my questions might be confusing.

Thanks a lot in advance!

GEO expression GEOquery • 1.1k views
ADD COMMENT
1
Entering edit mode
Robert Castelo ★ 3.3k
@rcastelo
Last seen 1 day ago
Barcelona/Universitat Pompeu Fabra

hi,

1) the function exprs(eset), where eset is an ExpressionSet object, will give you a matrix of the expression values stored in the object, with rows corresponding to features and columns to samples.

2) I guess you mean how to get gene symbols from microarray chip feature identifiers. Assuming your ExpressionSet object is called eset, you can use the function getSYMBOL() from the annotate package:

syms <- annotate::getSYMBOL(featureNames(eset), annotation(eset))
head(syms)

If you are unfamiliar with R, and probably then with this support site, I strongly recommend you to read the Bioconductor posting guide to learn how to get the best answers in this support forum.

cheers,

robert.

ADD COMMENT

Login before adding your answer.

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