Contents

1 Overview

Gene Set Enrichment Analysis (GSEA) is a very powerful and interesting computational method that allows an easy correlation between differential expressed genes and biological processes. Unfortunately, although it was designed to help researchers to interpret gene expression data it can generate huge amounts of results whose biological meaning can be difficult to interpret.

Many available tools rely on the hierarchically structured Gene Ontology (GO) classification to reduce reundandcy in the results. However, due to the popularity of GSEA many more gene set collections, such as those in the Molecular Signatures Database (MSigDB), are emerging. Since these collections are not organized as those in GO, their usage for GSEA do not always give a straightforward answer or, in other words, getting all the meaninful information can be challenging with the currently available tools. For these reasons, GSEAmining was born to be an easy tool to create reproducible reports to help researchers make biological sense of GSEA outputs.

Given the results of GSEA, GSEAmining clusters the different gene sets collections based on the presence of the same genes in the leadind edge (core) subset. Leading edge subsets are those genes that contribute most to the enrichment score of each collection of genes or gene sets. For this reason, gene sets that participate in similar biological processes should share genes in common and in turn cluster together. After that, GSEAmining is able to identify and represent for each cluster:

In each case, positive and negative enrichments are shown in different colors so it is easy to distinguish biological processes or genes that may be of interest in that particular study.

2 Installation

You can install GSEAmining from Bioconductor:

if (!requireNamespace("BiocManager", quietly = TRUE))
    install.packages("BiocManager")

BiocManager::install("GSEAmining")

Or directly from GitHub:

install.packages("devtools") # If you have not installed "devtools" package
library(devtools)
devtools::install_github("oriolarques/GSEAmining")

3 Input data format: gm_filter

By default GSEAmining is designed to accept the resuls of the GSEA function from the clusterProfiler package. For more information about this function click here. However, it is not mandatory to use this package.

In this example the data corresponds to GSEA analysis of differential expressed genes from treated versus control samples in HGPalmer-PDX-P30 experiment. Differential gene expression (tableTop) was obtained using the oligo and limma R packages.

# A geneList contains three features:
# 1.numeric vector: fold change or other type of numerical variable
# 2.named vector: every number has a name, the corresponding gene ID
# 3.sorted vector: number should be sorted in decreasing order
tableTop_p30 <- as.data.frame(tableTop_p30)
geneList = tableTop_p30[,2]
names(geneList) = as.character(tableTop_p30[,1])
library(clusterProfiler)
# Read the .gmt file from MSigDB
gmtC2<- read.gmt("gmt files/c2.all.v7.1.symbols.gmt")
gmtC5<- read.gmt('gmt files/c5.all.v7.1.symbols.gmt')
gmtHALL <- read.gmt('gmt files/h.all.v7.1.symbols.gmt')

# Merge all the gene sets
gmt_all <- rbind(gmtC2, gmtC5, gmtHALL)
GSEA_p30<-GSEA(geneList, TERM2GENE = gmt_all, nPerm = 1000, pvalueCutoff = 0.5)

# Selection of gene sets with a specific thershold in terms of NES and p.adjust
genesets_sel <- GSEA_p30@result

Data should be in a data.frame with, at least three columns labelled as follows:

# Structure of the data included in the package
data('genesets_sel', package = 'GSEAmining')
tibble::glimpse(genesets_sel)
#> Rows: 52
#> Columns: 4
#> $ ID              <chr> "WATANABE_COLON_CANCER_MSI_VS_MSS_DN", "GO_RNA_BINDING…
#> $ NES             <dbl> 2.511796, 2.234696, 2.200913, 2.167304, 2.127964, 2.11…
#> $ p.adjust        <dbl> 0.02463671, 0.02716912, 0.03017176, 0.02612857, 0.0222…
#> $ core_enrichment <chr> "DACH1/DUOX2/GRM8/CDHR1/SPINK1/CEL/CYP2B6/C10orf99/SLC…

gm_filter: Filter the input data

GSEA outputs normally presents tens or hundreds of genesets but many of them may not meet the thresholds for considering them significantly enriched. For that it is better to filter the data for a better visualization.

The gm_filter() function of GSEAmining allows this process to be very easy, especially if the format of your data meets the aforementioned criteria.

library(GSEAmining)
data("genesets_sel", package = 'GSEAmining')
gs.filt <- gm_filter(genesets_sel, 
                     p.adj = 0.05, 
                     neg_NES = 2.6, 
                     pos_NES = 2)

4 Clustering

4.1 gm_clust: Creation of a gm_clust object

Using the gm_clust() function, we can create an object that will contain the hierarchical clustering of the gene sets according to their genes in the core_enrichment column. This function accepts the data frame created with gm_filter. In the process, a distance matrix is calculated using the binary method (from the dist() function in stats) and then a cluster with the complete method (from hclust() function in stats) is created.

# Create an object that will contain the cluster of gene sets.
gs.cl <- gm_clust(gs.filt)

4.2 gm_dendplot: Plot the cluster

The gm_dendplot() function uses (i) the filtered data frame and (ii) the gm_clust object to plot the cluster dendrogram. It shows which gene sets are positively or negatively enriched coloring them in red or blue respectively. Additionally by default the function will highlight every other cluster with a rectangle to facilitate the differentiation of all the clusters.

gm_dendplot(gs.filt, 
            gs.cl)

It is possible to tune the height of the dendrogram, the colors for the enrichment and the use of rectangles (and their sizes) for highlighting clusters.

gm_dendplot(gs.filt, 
            gs.cl, 
            col_pos = 'orange', 
            col_neg = 'black', 
            rect = TRUE,
            dend_len = 20, 
            rect_len = 2)

5 Evaluation of gene sets enriched terms by cluster

To start getting an idea of what kind of biological processes are represented in each cluster we can use gm_enrichterms(). This function plots word clouds for the most enriched terms in the names of the different gene sets in each cluster. Again it needs (i) the filtered data frame and (ii) the gm_clust object created before. By default Positive or negative enrichment are colored in red or in blue respectively and two ploting options are available:

gm_enrichterms(gs.filt, gs.cl)

- Without clustering:

gm_enrichterms(gs.filt, 
               gs.cl, 
               clust = FALSE,
               col_pos = 'chocolate3',
               col_neg = 'skyblue3')

6 Evaluation of gene enrichment in leading edge subsets by clusters

As for the gene set terms, it is also possible to evaluate which are the most enriched genes in the leading edge (or core enrichment) subsets in the different clusters with the function gm_enrichcores(). In this case the representation is shown as bar plots following the same options as in gm_enrichterms() regarding colors and clustering the results.

gm_enrichcores(gs.filt, gs.cl)

Additionally, this function allows the possibility to decide the number of the most top genes that will be plotted using the parameter top. In case more than the indicated number of top genes appear the same number of times in the same cluster they all will be shown.

7 gm_enrichreport: Create a report

Finally, the gm_enrichreport() is a tool that generates a pdf file where each page contains both the terms word cloud and the leading edge bar plot for each of the different clusters in the gm_clust object.

gm_enrichreport(gs.filt, gs.cl, output = 'gm_report')

The outputparameter can be used to name the file that will be generated (by default it will be called gm_report.pdf). As in the previous functions the colors and the number of top genes are also editable parameters of the function.

8 SessionInfo()

sessionInfo()
#> R version 4.2.1 (2022-06-23)
#> Platform: x86_64-pc-linux-gnu (64-bit)
#> Running under: Ubuntu 20.04.5 LTS
#> 
#> Matrix products: default
#> BLAS:   /home/biocbuild/bbs-3.16-bioc/R/lib/libRblas.so
#> LAPACK: /home/biocbuild/bbs-3.16-bioc/R/lib/libRlapack.so
#> 
#> locale:
#>  [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C              
#>  [3] LC_TIME=en_GB              LC_COLLATE=C              
#>  [5] LC_MONETARY=en_US.UTF-8    LC_MESSAGES=en_US.UTF-8   
#>  [7] LC_PAPER=en_US.UTF-8       LC_NAME=C                 
#>  [9] LC_ADDRESS=C               LC_TELEPHONE=C            
#> [11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C       
#> 
#> attached base packages:
#> [1] stats     graphics  grDevices utils     datasets  methods   base     
#> 
#> other attached packages:
#> [1] GSEAmining_1.8.0 BiocStyle_2.26.0
#> 
#> loaded via a namespace (and not attached):
#>  [1] tidyselect_1.2.0    xfun_0.34           bslib_0.4.0        
#>  [4] slam_0.1-50         NLP_0.2-1           lattice_0.20-45    
#>  [7] colorspace_2.0-3    vctrs_0.5.0         generics_0.1.3     
#> [10] htmltools_0.5.3     SnowballC_0.7.0     viridisLite_0.4.1  
#> [13] tidytext_0.3.4      yaml_2.3.6          utf8_1.2.2         
#> [16] rlang_1.0.6         jquerylib_0.1.4     pillar_1.8.1       
#> [19] withr_2.5.0         glue_1.6.2          DBI_1.1.3          
#> [22] lifecycle_1.0.3     stringr_1.4.1       munsell_0.5.0      
#> [25] gtable_0.3.1        evaluate_0.17       labeling_0.4.2     
#> [28] ggwordcloud_0.5.0   knitr_1.40          fastmap_1.1.0      
#> [31] parallel_4.2.1      tm_0.7-9            fansi_1.0.3        
#> [34] highr_0.9           tokenizers_0.2.3    Rcpp_1.0.9         
#> [37] scales_1.2.1        BiocManager_1.30.19 cachem_1.0.6       
#> [40] magick_2.7.3        jsonlite_1.8.3      farver_2.1.1       
#> [43] gridExtra_2.3       ggplot2_3.3.6       png_0.1-7          
#> [46] digest_0.6.30       stringi_1.7.8       bookdown_0.29      
#> [49] dplyr_1.0.10        grid_4.2.1          cli_3.4.1          
#> [52] tools_4.2.1         magrittr_2.0.3      sass_0.4.2         
#> [55] tibble_3.1.8        janeaustenr_1.0.0   pkgconfig_2.0.3    
#> [58] dendextend_1.16.0   Matrix_1.5-1        xml2_1.3.3         
#> [61] assertthat_0.2.1    rmarkdown_2.17      viridis_0.6.2      
#> [64] R6_2.5.1            compiler_4.2.1