This pipeline inspects significant overlapping pathway gene sets for a given gene list using a hypergeometric test. For the gene set database, we uses GSEA MSigDB Class2: Canonical Pathways DB as a gene set data. Further details about the MsigDB gene sets, please visit The Broad Institute GSEA MsigDB
For a given gene list, a hypergeometric test was tried to find significant overlapping canonical pathways using 1320 gene sets. In terms of FDR adjusted p.values, top 5 significant overlapping gene sets are listed as below.
-
KEGG_PATHWAYS_IN_CANCER, REACTOME_IMMUNE_SYSTEM, REACTOME_SIGNALING_BY_GPCR, REACTOME_HEMOSTASIS, KEGG_FOCAL_ADHESION
GS(gene set) pathway name | gene.list | GS size (m) | n.NotInGS (n) | Gene universe (N) | n.drawn (k) | n.found (x) | p.value (p(X>=x)) | FDR (q.value) |
---|---|---|---|---|---|---|---|---|
KEGG PATHWAYS IN CANCER | gene.list | 328 | 45628 | 45956 | 2659 | 104 | 3.739e-48 | 4.935e-45 |
REACTOME IMMUNE SYSTEM | gene.list | 933 | 45023 | 45956 | 2659 | 169 | 1.812e-40 | 1.196e-37 |
REACTOME SIGNALING BY GPCR | gene.list | 920 | 45036 | 45956 | 2659 | 141 | 3.334e-26 | 1.467e-23 |
REACTOME HEMOSTASIS | gene.list | 466 | 45490 | 45956 | 2659 | 93 | 6.335e-26 | 2.090e-23 |
KEGG FOCAL ADHESION | gene.list | 201 | 45755 | 45956 | 2659 | 57 | 2.955e-24 | 7.800e-22 |
REACTOME CYTOKINE SIGNALING IN IMMUNE SYSTEM | gene.list | 270 | 45686 | 45956 | 2659 | 66 | 7.441e-24 | 1.637e-21 |
KEGG ADHERENS JUNCTION | gene.list | 75 | 45881 | 45956 | 2659 | 35 | 1.168e-23 | 2.203e-21 |
KEGG MAPK SIGNALING PATHWAY | gene.list | 267 | 45689 | 45956 | 2659 | 65 | 2.071e-23 | 3.417e-21 |
REACTOME DEVELOPMENTAL BIOLOGY | gene.list | 396 | 45560 | 45956 | 2659 | 80 | 7.623e-23 | 1.118e-20 |
REACTOME GENERIC TRANSCRIPTION PATHWAY | gene.list | 352 | 45604 | 45956 | 2659 | 72 | 5.015e-21 | 6.620e-19 |
ST INTEGRIN SIGNALING PATHWAY | gene.list | 82 | 45874 | 45956 | 2659 | 34 | 5.714e-21 | 6.857e-19 |
REACTOME GPCR DOWNSTREAM SIGNALING | gene.list | 805 | 45151 | 45956 | 2659 | 118 | 1.617e-20 | 1.779e-18 |
KEGG REGULATION OF ACTIN CYTOSKELETON | gene.list | 216 | 45740 | 45956 | 2659 | 54 | 2.890e-20 | 2.934e-18 |
KEGG PROSTATE CANCER | gene.list | 89 | 45867 | 45956 | 2659 | 34 | 1.301e-19 | 1.227e-17 |
REACTOME CELL CYCLE | gene.list | 421 | 45535 | 45956 | 2659 | 76 | 8.990e-19 | 7.911e-17 |
KEGG COLORECTAL CANCER | gene.list | 62 | 45894 | 45956 | 2659 | 28 | 9.825e-19 | 8.105e-17 |
REACTOME SIGNALLING BY NGF | gene.list | 217 | 45739 | 45956 | 2659 | 52 | 1.064e-18 | 8.261e-17 |
KEGG CHRONIC MYELOID LEUKEMIA | gene.list | 73 | 45883 | 45956 | 2659 | 30 | 1.536e-18 | 1.126e-16 |
PID VEGFR1 2 PATHWAY | gene.list | 69 | 45887 | 45956 | 2659 | 29 | 2.710e-18 | 1.883e-16 |
KEGG ERBB SIGNALING PATHWAY | gene.list | 87 | 45869 | 45956 | 2659 | 32 | 5.723e-18 | 3.777e-16 |
-
Gene set database = c2.cp.v4.0.symbols.gmt
-
Input gene list = MutSig2CV.input.genenames.txt
For a given gene list, it uses a hypergeometric test to get a significance of each overlapping pathway gene set. The hypergeometric p-value is obtained by R library function phyper() and is defined as a probability of randomly drawing x or more successes(gene matches) from the population consisting N genes in k(the input genes) total draws.
-
a cumulative p-value using the R function phyper():
-
ex). a probability to see at least x genes in the group is defined as p(X>=x) = 1 - p(X<=x)= 1 - phyper(x-1, m, n, k, lower.tail=FALSE, log.p=FALSE) that is, f(x| N, m, k) = (m) C (k) * ((N-m) C (n-k)) / ((N) C (n))
-
The hypergeometric test is identical to the corresponding one-tailed version of Fisher's exact test.
-
ex). Fisher' exact test = matrix(c(n.Found, n.GS-n.Found, n.drawn-n.Found, n.NotGS- (n.drawn-n.Found)), nrow=2, dimnames = list(inputGenes = c("Found", "NotFound"),GeneUniverse = c("GS", "nonGS")) )
In addition to the links below, the full results of the analysis summarized in this report can also be downloaded programmatically using firehose_get, or interactively from either the Broad GDAC website or TCGA Data Coordination Center Portal.