GSEA: Difference between revisions

From 太極
Jump to navigation Jump to search
Line 70: Line 70:
<ul>
<ul>
<li>https://github.com/broadinstitute/ssGSEA2.0 </li>
<li>https://github.com/broadinstitute/ssGSEA2.0 </li>
<li>[https://gsea-msigdb.github.io/ssGSEAProjection-gpmodule/v9/index.html ssGSEAProjection (v9.1.2)]. Each ssGSEA enrichment score represents the degree to which the genes in a particular gene set are coordinately up- or down-regulated within a sample. </li>
<li>[http://baderlab.org/CancerStemCellProject/VeroniqueVoisin/AdditionalResources/GSEA#single_sample_GSEA_.28ssGSEA.29 single sample GSEA (ssGSEA)] from http://baderlab.org/ </li>
<li>[https://www.biostars.org/p/391420/ How single sample GSEA works] </li>
<li>[https://www.bioconductor.org/packages/release/bioc/html/GSVA.html GSVA] which also has an option to compute ssGSEA. [https://www.jianshu.com/p/0074965a2bd0 单样本基因集富集分析 --- ssGSEA]</li>
<li>[https://gist.github.com/gaoce/39e0907146c752c127728ad74e123b33 A simple implementation of ssGSEA (single sample gene set enrichment analysis)] </li>
<li>Use "ssgsea-gui.R". The first question is a folder containing input files GCT. The 2nd question is about gene set database in GMT format. This has to be very restrict. For example, "ptm.sig.db.all.uniprot.human.v1.9.0.gmt" and "ptm.sig.db.all.sitegrpid.human.v1.9.0.gmt" provided in github won't work with the example GCT file.
<li>Use "ssgsea-gui.R". The first question is a folder containing input files GCT. The 2nd question is about gene set database in GMT format. This has to be very restrict. For example, "ptm.sig.db.all.uniprot.human.v1.9.0.gmt" and "ptm.sig.db.all.sitegrpid.human.v1.9.0.gmt" provided in github won't work with the example GCT file.
<pre>
<pre>
Line 103: Line 108:
</li>
</li>
<li>Some [https://www.biostars.org/p/402856/ discussions] from biostars.org. Find -> "ssgsea"</li>
<li>Some [https://www.biostars.org/p/402856/ discussions] from biostars.org. Find -> "ssgsea"</li>
<li>Some papers. [https://www.sciencedirect.com/science/article/pii/S0092867420307443 Proteogenomic Characterization Reveals Therapeutic Vulnerabilities in Lung Adenocarcinoma] 2020 </li>
<li>Some papers.  
* [https://www.sciencedirect.com/science/article/pii/S0092867420307443 Proteogenomic Characterization Reveals Therapeutic Vulnerabilities in Lung Adenocarcinoma] 2020  
* [https://www.thelancet.com/journals/ebiom/article/PIIS2352-3964(20)30366-2/fulltext Specific TP53 subtype as biomarker for immune checkpoint inhibitors in lung adenocarcinoma] 2020
</li>
<li>[https://youtu.be/AdxTuwAPskg 【生信分析 3】教你看懂GSEA和ssGSEA分析结果]. [https://youtu.be/AdxTuwAPskg?t=393 No groups/classes in the data] (6:33). Output is a heatmap. Each value is computed sample by sample. Rows = gene set. Columns = (sorted by the 1st gene set) samples.</li>
<li>[https://youtu.be/AdxTuwAPskg 【生信分析 3】教你看懂GSEA和ssGSEA分析结果]. [https://youtu.be/AdxTuwAPskg?t=393 No groups/classes in the data] (6:33). Output is a heatmap. Each value is computed sample by sample. Rows = gene set. Columns = (sorted by the 1st gene set) samples.</li>
</ul>
</ul>

Revision as of 19:05, 21 March 2021

GSEA

https://en.wikipedia.org/wiki/Gene_set_enrichment_analysis

Determines whether an a priori defined set of genes shows statistically significant, concordant differences between two biological states

Two categories of GSEA procedures:

  • Competitive: compare genes in the test set relative to all other genes.
  • Self-contained: whether the gene-set is more DE than one were to expect under the null of no association between two phenotype conditions (without reference to other genes in the genome). For example the method by Jiang & Gentleman Bioinformatics 2007

See also BRB-ArrayTools -> GSEA.

Subramanian algorithm

In the plot, (x-axis) genes are sorted by their expression across all samples. Y-axis represents enrichment score. See HOW TO PERFORM GSEA - A tutorial on gene set enrichment analysis for RNA-seq. Bars represents genes being in the gene set. Genes on the LHS/RHS are more highly expressed in the experimental/control group. Small p means this gene set is enriched in this experimental sample.

ssGSEA