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, KEGG_GLIOMA, KEGG_PROSTATE_CANCER, KEGG_MELANOMA, KEGG_SMALL_CELL_LUNG_CANCER
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 | 17 | 4 | 5.635e-06 | 0.001488 |
KEGG GLIOMA | gene.list | 65 | 45891 | 45956 | 17 | 3 | 1.810e-06 | 0.001488 |
KEGG PROSTATE CANCER | gene.list | 89 | 45867 | 45956 | 17 | 3 | 4.681e-06 | 0.001488 |
KEGG MELANOMA | gene.list | 71 | 45885 | 45956 | 17 | 3 | 2.366e-06 | 0.001488 |
KEGG SMALL CELL LUNG CANCER | gene.list | 84 | 45872 | 45956 | 17 | 3 | 3.932e-06 | 0.001488 |
BIOCARTA RB PATHWAY | gene.list | 13 | 45943 | 45956 | 17 | 2 | 1.002e-05 | 0.002205 |
BIOCARTA P53 PATHWAY | gene.list | 16 | 45940 | 45956 | 17 | 2 | 1.541e-05 | 0.002305 |
BIOCARTA PML PATHWAY | gene.list | 17 | 45939 | 45956 | 17 | 2 | 1.746e-05 | 0.002305 |
BIOCARTA ARF PATHWAY | gene.list | 17 | 45939 | 45956 | 17 | 2 | 1.746e-05 | 0.002305 |
PID P53DOWNSTREAMPATHWAY | gene.list | 137 | 45819 | 45956 | 17 | 3 | 1.709e-05 | 0.002305 |
BIOCARTA TEL PATHWAY | gene.list | 18 | 45938 | 45956 | 17 | 2 | 1.964e-05 | 0.002356 |
BIOCARTA TID PATHWAY | gene.list | 19 | 45937 | 45956 | 17 | 2 | 2.194e-05 | 0.002414 |
BIOCARTA CTCF PATHWAY | gene.list | 23 | 45933 | 45956 | 17 | 2 | 3.244e-05 | 0.003294 |
BIOCARTA G1 PATHWAY | gene.list | 28 | 45928 | 45956 | 17 | 2 | 4.841e-05 | 0.004564 |
KEGG BLADDER CANCER | gene.list | 42 | 45914 | 45956 | 17 | 2 | 1.099e-04 | 0.009674 |
KEGG ENDOMETRIAL CANCER | gene.list | 52 | 45904 | 45956 | 17 | 2 | 1.689e-04 | 0.013940 |
KEGG NON SMALL CELL LUNG CANCER | gene.list | 54 | 45902 | 45956 | 17 | 2 | 1.822e-04 | 0.014150 |
PID ATF2 PATHWAY | gene.list | 59 | 45897 | 45956 | 17 | 2 | 2.176e-04 | 0.015960 |
KEGG COLORECTAL CANCER | gene.list | 62 | 45894 | 45956 | 17 | 2 | 2.404e-04 | 0.016700 |
KEGG P53 SIGNALING PATHWAY | gene.list | 69 | 45887 | 45956 | 17 | 2 | 2.978e-04 | 0.018390 |
-
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.