Analysing single-cell RNA-sequencing Data

Johannes Griss

2022-04-26

Introduction

The ReactomeGSA package is a client to the web-based Reactome Analysis System. Essentially, it performs a gene set analysis using the latest version of the Reactome pathway database as a backend.

This vignette shows how the ReactomeGSA package can be used to perform a pathway analysis of cell clusters in single-cell RNA-sequencing data.

Citation

To cite this package, use

Griss J. ReactomeGSA, https://github.com/reactome/ReactomeGSA (2019)

Installation

The ReactomeGSA package can be directly installed from Bioconductor:

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

if (!require(ReactomeGSA))
  BiocManager::install("ReactomeGSA")
#> Loading required package: ReactomeGSA

# install the ReactomeGSA.data package for the example data
if (!require(ReactomeGSA.data))
  BiocManager::install("ReactomeGSA.data")
#> Loading required package: ReactomeGSA.data
#> Loading required package: limma
#> Loading required package: edgeR
#> Loading required package: Seurat
#> Registered S3 method overwritten by 'spatstat.core':
#>   method          from
#>   formula.glmmPQL MASS
#> Attaching SeuratObject

For more information, see https://bioconductor.org/install/.

Example data

As an example we load single-cell RNA-sequencing data of B cells extracted from the dataset published by Jerby-Arnon et al. (Cell, 2018).

Note: This is not a complete Seurat object. To decrease the size, the object only contains gene expression values and cluster annotations.

library(ReactomeGSA.data)
data(jerby_b_cells)

jerby_b_cells
#> An object of class Seurat 
#> 23686 features across 920 samples within 1 assay 
#> Active assay: RNA (23686 features, 0 variable features)

Pathway analysis of cell clusters

The pathway analysis is at the very end of a scRNA-seq workflow. This means, that any Q/C was already performed, the data was normalized and cells were already clustered.

The ReactomeGSA package can now be used to get pathway-level expression values for every cell cluster. This is achieved by calculating the mean gene expression for every cluster and then submitting this data to a gene set variation analysis.

All of this is wrapped in the single analyse_sc_clusters function.

library(ReactomeGSA)

gsva_result <- analyse_sc_clusters(jerby_b_cells, verbose = TRUE)
#> Calculating average cluster expression...
#> Converting expression data to string... (This may take a moment)
#> Conversion complete
#> Submitting request to Reactome API...
#> Compressing request data...
#> Reactome Analysis submitted succesfully
#> Converting dataset Seurat...
#> Mapping identifiers...
#> Performing gene set analysis using ssGSEA
#> Analysing dataset 'Seurat' using ssGSEA
#> Retrieving result...

The resulting object is a standard ReactomeAnalysisResult object.

gsva_result
#> ReactomeAnalysisResult object
#>   Reactome Release: 79
#>   Results:
#>   - Seurat:
#>     1739 pathways
#>     10963 fold changes for genes
#>   No Reactome visualizations available
#> ReactomeAnalysisResult

pathways returns the pathway-level expression values per cell cluster:

pathway_expression <- pathways(gsva_result)

# simplify the column names by removing the default dataset identifier
colnames(pathway_expression) <- gsub("\\.Seurat", "", colnames(pathway_expression))

pathway_expression[1:3,]
#>                                          Name Cluster_1 Cluster_10 Cluster_11
#> R-HSA-1059683         Interleukin-6 signaling 0.1079433 0.10433331  0.1484174
#> R-HSA-109606  Intrinsic Pathway for Apoptosis 0.1094849 0.10693832  0.1132838
#> R-HSA-109703              PKB-mediated events 0.1272170 0.05259092  0.1061580
#>               Cluster_12 Cluster_13  Cluster_2  Cluster_3  Cluster_4  Cluster_5
#> R-HSA-1059683 0.11300245 0.10764063 0.12077467 0.11539479 0.11532503 0.10867267
#> R-HSA-109606  0.11405683 0.12691095 0.10525906 0.10844585 0.11099925 0.10403264
#> R-HSA-109703  0.09549884 0.07342587 0.08303762 0.08388032 0.05555674 0.04629642
#>               Cluster_6 Cluster_7  Cluster_8  Cluster_9
#> R-HSA-1059683 0.0985913 0.1216146 0.13742981 0.11055418
#> R-HSA-109606  0.1093190 0.1146573 0.11789570 0.11461418
#> R-HSA-109703  0.1238539 0.0770211 0.07808829 0.01423031

A simple approach to find the most relevant pathways is to assess the maximum difference in expression for every pathway:

# find the maximum differently expressed pathway
max_difference <- do.call(rbind, apply(pathway_expression, 1, function(row) {
    values <- as.numeric(row[2:length(row)])
    return(data.frame(name = row[1], min = min(values), max = max(values)))
}))

max_difference$diff <- max_difference$max - max_difference$min

# sort based on the difference
max_difference <- max_difference[order(max_difference$diff, decreasing = T), ]

head(max_difference)
#>                                                          name        min
#> R-HSA-350864           Regulation of thyroid hormone activity -0.4873137
#> R-HSA-8964540                              Alanine metabolism -0.5061703
#> R-HSA-190374  FGFR1c and Klotho ligand binding and activation -0.3432086
#> R-HSA-140180                                    COX reactions -0.3447800
#> R-HSA-9024909           BDNF activates NTRK2 (TRKB) signaling -0.3743353
#> R-HSA-9025046           NTF3 activates NTRK2 (TRKB) signaling -0.3953952
#>                     max      diff
#> R-HSA-350864  0.3746363 0.8619500
#> R-HSA-8964540 0.2554885 0.7616588
#> R-HSA-190374  0.4152150 0.7584236
#> R-HSA-140180  0.3721406 0.7169206
#> R-HSA-9024909 0.3230906 0.6974259
#> R-HSA-9025046 0.2989622 0.6943574

Plotting the results

The ReactomeGSA package contains two functions to visualize these pathway results. The first simply plots the expression for a selected pathway:

plot_gsva_pathway(gsva_result, pathway_id = rownames(max_difference)[1])

For a better overview, the expression of multiple pathways can be shown as a heatmap using gplots heatmap.2 function:

# Additional parameters are directly passed to gplots heatmap.2 function
plot_gsva_heatmap(gsva_result, max_pathways = 15, margins = c(6,20))

The plot_gsva_heatmap function can also be used to only display specific pahtways:

# limit to selected B cell related pathways
relevant_pathways <- c("R-HSA-983170", "R-HSA-388841", "R-HSA-2132295", "R-HSA-983705", "R-HSA-5690714")
plot_gsva_heatmap(gsva_result, 
                  pathway_ids = relevant_pathways, # limit to these pathways
                  margins = c(6,30), # adapt the figure margins in heatmap.2
                  dendrogram = "col", # only plot column dendrogram
                  scale = "row", # scale for each pathway
                  key = FALSE, # don't display the color key
                  lwid=c(0.1,4)) # remove the white space on the left

This analysis shows us that cluster 8 has a marked up-regulation of B Cell receptor signalling, which is linked to a co-stimulation of the CD28 family. Additionally, there is a gradient among the cluster with respect to genes releated to antigen presentation.

Therefore, we are able to further classify the observed B cell subtypes based on their pathway activity.

Pathway-level PCA

The pathway-level expression analysis can also be used to run a Principal Component Analysis on the samples. This is simplified through the function plot_gsva_pca:

plot_gsva_pca(gsva_result)

In this analysis, cluster 11 is a clear outlier from the other B cell subtypes and therefore might be prioritised for further evaluation.

Session Info

sessionInfo()
#> R version 4.2.0 RC (2022-04-19 r82224)
#> Platform: x86_64-pc-linux-gnu (64-bit)
#> Running under: Ubuntu 20.04.4 LTS
#> 
#> Matrix products: default
#> BLAS:   /home/biocbuild/bbs-3.15-bioc/R/lib/libRblas.so
#> LAPACK: /home/biocbuild/bbs-3.15-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] ReactomeGSA.data_1.9.0 SeuratObject_4.0.4     Seurat_4.1.0          
#> [4] edgeR_3.38.0           limma_3.52.0           ReactomeGSA_1.10.0    
#> 
#> loaded via a namespace (and not attached):
#>   [1] Rtsne_0.16            colorspace_2.0-3      deldir_1.0-6         
#>   [4] ellipsis_0.3.2        ggridges_0.5.3        spatstat.data_2.2-0  
#>   [7] farver_2.1.0          leiden_0.3.9          listenv_0.8.0        
#>  [10] ggrepel_0.9.1         fansi_1.0.3           codetools_0.2-18     
#>  [13] splines_4.2.0         knitr_1.38            polyclip_1.10-0      
#>  [16] jsonlite_1.8.0        ica_1.0-2             cluster_2.1.3        
#>  [19] png_0.1-7             uwot_0.1.11           shiny_1.7.1          
#>  [22] sctransform_0.3.3     spatstat.sparse_2.1-1 BiocManager_1.30.17  
#>  [25] compiler_4.2.0        httr_1.4.2            assertthat_0.2.1     
#>  [28] Matrix_1.4-1          fastmap_1.1.0         lazyeval_0.2.2       
#>  [31] cli_3.3.0             later_1.3.0           prettyunits_1.1.1    
#>  [34] htmltools_0.5.2       tools_4.2.0           igraph_1.3.1         
#>  [37] gtable_0.3.0          glue_1.6.2            RANN_2.6.1           
#>  [40] reshape2_1.4.4        dplyr_1.0.8           Rcpp_1.0.8.3         
#>  [43] scattermore_0.8       jquerylib_0.1.4       vctrs_0.4.1          
#>  [46] nlme_3.1-157          lmtest_0.9-40         spatstat.random_2.2-0
#>  [49] xfun_0.30             stringr_1.4.0         globals_0.14.0       
#>  [52] mime_0.12             miniUI_0.1.1.1        lifecycle_1.0.1      
#>  [55] irlba_2.3.5           gtools_3.9.2          goftest_1.2-3        
#>  [58] future_1.25.0         MASS_7.3-57           zoo_1.8-10           
#>  [61] scales_1.2.0          spatstat.core_2.4-2   hms_1.1.1            
#>  [64] promises_1.2.0.1      spatstat.utils_2.3-0  parallel_4.2.0       
#>  [67] RColorBrewer_1.1-3    curl_4.3.2            yaml_2.3.5           
#>  [70] reticulate_1.24       pbapply_1.5-0         gridExtra_2.3        
#>  [73] ggplot2_3.3.5         sass_0.4.1            rpart_4.1.16         
#>  [76] stringi_1.7.6         highr_0.9             caTools_1.18.2       
#>  [79] rlang_1.0.2           pkgconfig_2.0.3       matrixStats_0.62.0   
#>  [82] bitops_1.0-7          evaluate_0.15         lattice_0.20-45      
#>  [85] ROCR_1.0-11           purrr_0.3.4           tensor_1.5           
#>  [88] labeling_0.4.2        patchwork_1.1.1       htmlwidgets_1.5.4    
#>  [91] cowplot_1.1.1         tidyselect_1.1.2      parallelly_1.31.1    
#>  [94] RcppAnnoy_0.0.19      plyr_1.8.7            magrittr_2.0.3       
#>  [97] R6_2.5.1              gplots_3.1.3          generics_0.1.2       
#> [100] DBI_1.1.2             mgcv_1.8-40           pillar_1.7.0         
#> [103] fitdistrplus_1.1-8    survival_3.3-1        abind_1.4-5          
#> [106] tibble_3.1.6          future.apply_1.9.0    crayon_1.5.1         
#> [109] KernSmooth_2.23-20    utf8_1.2.2            spatstat.geom_2.4-0  
#> [112] plotly_4.10.0         rmarkdown_2.14        progress_1.2.2       
#> [115] locfit_1.5-9.5        grid_4.2.0            data.table_1.14.2    
#> [118] digest_0.6.29         xtable_1.8-4          tidyr_1.2.0          
#> [121] httpuv_1.6.5          munsell_0.5.0         viridisLite_0.4.0    
#> [124] bslib_0.3.1