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_PROSTATE_CANCER, KEGG_PATHWAYS_IN_CANCER, KEGG_GLIOMA, KEGG_MELANOMA, KEGG_BLADDER_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 PROSTATE CANCER | gene.list | 89 | 45867 | 45956 | 24 | 6 | 5.816e-12 | 7.677e-09 |
KEGG PATHWAYS IN CANCER | gene.list | 328 | 45628 | 45956 | 24 | 7 | 2.760e-10 | 1.045e-07 |
KEGG GLIOMA | gene.list | 65 | 45891 | 45956 | 24 | 5 | 2.014e-10 | 1.045e-07 |
KEGG MELANOMA | gene.list | 71 | 45885 | 45956 | 24 | 5 | 3.168e-10 | 1.045e-07 |
KEGG BLADDER CANCER | gene.list | 42 | 45914 | 45956 | 24 | 4 | 6.316e-09 | 1.668e-06 |
KEGG ENDOMETRIAL CANCER | gene.list | 52 | 45904 | 45956 | 24 | 4 | 1.522e-08 | 3.349e-06 |
KEGG NON SMALL CELL LUNG CANCER | gene.list | 54 | 45902 | 45956 | 24 | 4 | 1.777e-08 | 3.351e-06 |
KEGG PANCREATIC CANCER | gene.list | 70 | 45886 | 45956 | 24 | 4 | 5.124e-08 | 8.455e-06 |
KEGG CHRONIC MYELOID LEUKEMIA | gene.list | 73 | 45883 | 45956 | 24 | 4 | 6.076e-08 | 8.912e-06 |
BIOCARTA PML PATHWAY | gene.list | 17 | 45939 | 45956 | 24 | 3 | 8.468e-08 | 1.118e-05 |
BIOCARTA TEL PATHWAY | gene.list | 18 | 45938 | 45956 | 24 | 3 | 1.016e-07 | 1.219e-05 |
BIOCARTA ATRBRCA PATHWAY | gene.list | 21 | 45935 | 45956 | 24 | 3 | 1.654e-07 | 1.819e-05 |
KEGG THYROID CANCER | gene.list | 29 | 45927 | 45956 | 24 | 3 | 4.532e-07 | 4.601e-05 |
PID RAS PATHWAY | gene.list | 30 | 45926 | 45956 | 24 | 3 | 5.034e-07 | 4.746e-05 |
PID P53DOWNSTREAMPATHWAY | gene.list | 137 | 45819 | 45956 | 24 | 4 | 7.667e-07 | 6.747e-05 |
PID FOXM1PATHWAY | gene.list | 40 | 45916 | 45956 | 24 | 3 | 1.221e-06 | 1.007e-04 |
PID HNF3APATHWAY | gene.list | 44 | 45912 | 45956 | 24 | 3 | 1.634e-06 | 1.262e-04 |
REACTOME DEVELOPMENTAL BIOLOGY | gene.list | 396 | 45560 | 45956 | 24 | 5 | 1.721e-06 | 1.262e-04 |
PID PI3KCIPATHWAY | gene.list | 49 | 45907 | 45956 | 24 | 3 | 2.269e-06 | 1.577e-04 |
PID ATF2 PATHWAY | gene.list | 59 | 45897 | 45956 | 24 | 3 | 3.991e-06 | 2.634e-04 |
-
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.