Gsea Plot
4
3
Entering edit mode
10.1 years ago
lkmklsmn ▴ 970

Hi,
I thought this would be fairly straight forward but so far I have been surprisingly unsuccessful. I am looking for a R package which replicates the Gene Set Enrichment Analysis (GSEA) graphic. From my quick read-through of the GSEABase package it was not clear to me that I can reproduce the same graphic.
Any suggestions?

r gene enrichment • 13k views
ADD COMMENT
3
Entering edit mode
8.4 years ago
Gordon Smyth ★ 7.0k

You can easily use the limma package to draw a gene set enrichment plot from a set of indices. For example

library(limma)
barcodeplot(statistic, index=indices)

where 'statistic' is the score by which you want to rank the genes and 'indices' is the vector of indices of genes in your set.

However this of course draws the style of plot that the limma authors like rather than being identical to the Broad Institute GSEA plot, the latter being specific to the Kolmorogov-Smirnov type enrichment statistic used by GSEA.

The Broad Institute code is copyrighted in such a way that Bioconductor package authors are not allowed to copy or adapt code from R-GSEA into a new package. And one probably couldn't reproduce the GSEA plot exactly without looking at the code. So it is not surprising that a reimplemented version has not appeared.

ADD COMMENT
2
Entering edit mode
10.1 years ago

If you download the GSEA desktop version, it will automatically create these plots (for the top gene lists)

http://www.broadinstitute.org/gsea/downloads.jsp

This how I always run GSEA. That same website has a download for R-GSEA, but I've never tried it. The desktop version requires files to be in a special format, but I would imagine the R package does as well.

ADD COMMENT
2
Entering edit mode
7.7 years ago
thomaskuilman ▴ 850

I have written a post about a new tool that does just this: recreating the GSEA plots in a decent format using R. The post is here.

ADD COMMENT
0
Entering edit mode

This works perfectly. No modification needed. Allows you to export in whatever file format you want from R.

ADD REPLY
1
Entering edit mode
10.1 years ago
lkmklsmn ▴ 970

Thats what I ended up doing. Downloading the JAVA desktop version. Fussing with data type conversions etc. Considering all the effort spent on documentation by the BROAD, it is an incredibly user-UN-friendly tool. Hard to believe that there really isnt an R package out there where I could just give it a ranked list of genes with the indices of the genes from my gene set of interest.

ADD COMMENT
1
Entering edit mode

Feel free to write one yourself. ;-)

ADD REPLY

Login before adding your answer.

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