Enrichment analysis

Material

Exercises

Load the following packages:

If the FindMarkers or FindAllMarkers functions were used, we obtained a table listing only the significant genes, but we don’t have any information of fold change for the non-significant genes. Therefore, we can use the over-representation analysis which is a threshold-based method. Using our list of significant genes, we can test if any gene set is over-represented among significant genes or not using a test similar to a Fisher test to compare differences in proportions.

The clusterProfiler package provides functions for over-representation analysis of Gene Ontology gene sets (among other functions, including functions for actual GSEA) or KEGG gene sets.

Genes can be labeled using different types of labels, eg symbol, Ensembl ID, Entrez ID. To list the allowed label types use:

# BiocManager::install("org.Hs.eg.db", update = FALSE)
library(org.Hs.eg.db)
AnnotationDbi::keytypes(org.Hs.eg.db)

About OrgDb

For other organisms, you can find available OrgDbs at bioconductor

Let’s select a set of genes that are downregulated in the tumor cells compared to normal:

tum_down  <- subset(limma_de,
                    limma_de$logFC < -1 
                      & limma_de$adj.P.Val <  0.05)
tum_down_genes <- rownames(tum_down)

We can do a Gene Ontology term over-representation analysis based on this set of genes. Make sure you check out the help of this function to understand its arguments:

?enrichGO
tum_vs_norm_go <- clusterProfiler::enrichGO(tum_down_genes,
                                            "org.Hs.eg.db",
                                            keyType = "SYMBOL",
                                            ont = "BP",
                                            minGSSize = 50)

The results are stored in the @result slot:

View(tum_vs_norm_go@result)
ID Description GeneRatio BgRatio RichFactor FoldEnrichment zScore
GO:0007059 GO:0007059 chromosome segregation 106/803 431/18805 0.2459397 5.759521 21.11167
GO:0000070 GO:0000070 mitotic sister chromatid segregation 66/803 193/18805 0.3419689 8.008375 20.66912
GO:0098813 GO:0098813 nuclear chromosome segregation 83/803 322/18805 0.2577640 6.036428 19.25249
GO:0000819 GO:0000819 sister chromatid segregation 71/803 234/18805 0.3034188 7.105592 19.84909
GO:0140014 GO:0140014 mitotic nuclear division 74/803 282/18805 0.2624113 6.145262 18.38649
GO:0000280 GO:0000280 nuclear division 91/803 448/18805 0.2031250 4.756869 16.99756
The columns GeneRatio and BgRatio

The columns GeneRatio and BgRatio that are in the enrichResult object represent the numbers that are used as input for the Fisher’s exact test.

The two numbers (M/N) in the GeneRatio column are:

  • M: Number of genes of interest (in our case tum_down_genes) that are in the GO set
  • N: Number of genes of interest with any GO annoation.

The two numbers (k/n) in the BgRatio column are:

  • k: Number of genes in the universe that are in the GO set
  • n: Number of genes in the universe with any GO annoation

A low p-value resulting from the Fisher’s exact means that M/N is signficantly greater than k/n. 

Some GO terms seem redundant because they contain many of the same genes, which is a characteristic of Gene Ontology gene sets. We can simplify this list by removing redundant gene sets:

enr_go <- clusterProfiler::simplify(tum_vs_norm_go)
View(enr_go@result)
ID Description GeneRatio BgRatio RichFactor FoldEnrichment zScore
GO:0007059 GO:0007059 chromosome segregation 106/803 431/18805 0.2459397 5.759521 21.11167
GO:0000070 GO:0000070 mitotic sister chromatid segregation 66/803 193/18805 0.3419689 8.008375 20.66912
GO:0098813 GO:0098813 nuclear chromosome segregation 83/803 322/18805 0.2577640 6.036428 19.25249
GO:0000280 GO:0000280 nuclear division 91/803 448/18805 0.2031250 4.756869 16.99756
GO:0044772 GO:0044772 mitotic cell cycle phase transition 75/803 457/18805 0.1641138 3.843287 12.99592
GO:1905818 GO:1905818 regulation of chromosome separation 32/803 77/18805 0.4155844 9.732335 16.21633

We can quite easily generate a plot called an enrichment map with the enrichplot package:

enrichplot::emapplot(enrichplot::pairwise_termsim(enr_go),
                     showCategory = 30)

Instead of testing for Gene Ontology terms, we can also test for other gene set collections. For example the Hallmark collection from MSigDB:

library(msigdbr)
library(msigdbdf)
gmt <- msigdbr::msigdbr(species = "human", category = "H")
Warning: The `category` argument of `msigdbr()` is deprecated as of msigdbr 10.0.0.
ℹ Please use the `collection` argument instead.

We can use the function enricher to test for over-representation of any set of genes of the Hallmark collection. We have to include the “universe”, i.e. the full list of background, non significant genes, against which to test for differences in proportions:

tum_vs_norm_enrich <- clusterProfiler::enricher(gene = tum_down_genes,
                                                universe = rownames(proB),
                                                pAdjustMethod = "BH",
                                                pvalueCutoff  = 0.05,
                                                qvalueCutoff  = 0.05,
                                                TERM2GENE = gmt[,c("gs_name", "gene_symbol")])

When using the genes down-regulated in tumor, among the over-represented Hallmark gene sets, we have HALLMARK_G2M_CHECKPOINT, which includes genes involved in the G2/M checkpoint in the progression through the cell division cycle.

View(tum_vs_norm_enrich@result[tum_vs_norm_enrich@result$p.adjust < 0.05,])
ID Description GeneRatio BgRatio RichFactor FoldEnrichment zScore
HALLMARK_E2F_TARGETS HALLMARK_E2F_TARGETS HALLMARK_E2F_TARGETS 80/344 195/3858 0.4102564 4.601073 16.144849
HALLMARK_G2M_CHECKPOINT HALLMARK_G2M_CHECKPOINT HALLMARK_G2M_CHECKPOINT 67/344 188/3858 0.3563830 3.996876 13.180076
HALLMARK_MITOTIC_SPINDLE HALLMARK_MITOTIC_SPINDLE HALLMARK_MITOTIC_SPINDLE 48/344 197/3858 0.2436548 2.732617 7.809784
HALLMARK_MYC_TARGETS_V1 HALLMARK_MYC_TARGETS_V1 HALLMARK_MYC_TARGETS_V1 33/344 193/3858 0.1709845 1.917611 4.091695
HALLMARK_ESTROGEN_RESPONSE_LATE HALLMARK_ESTROGEN_RESPONSE_LATE HALLMARK_ESTROGEN_RESPONSE_LATE 28/344 164/3858 0.1707317 1.914776 3.745341

Clear environment

Clear your environment:

rm(list = ls())
gc()
.rs.restartR()