1 Introduction

The function AddModuleScore_UCell() allows operating directly on Seurat objects. UCell scores are calculated from raw counts or normalized data, and returned as metadata columns. The example below defines some simple signatures, and applies them on single-cell data stored in a Seurat object.

To see how this function differs from Seurat’s own AddModuleScore() (not based on per-cell ranks) see this vignette.

2 Get some testing data

For this demo, we will download a single-cell dataset of lung cancer (Zilionis et al. (2019) Immunity) through the scRNA-seq package. This dataset contains >170,000 single cells; for the sake of simplicity, in this demo will we focus on immune cells, according to the annotations by the authors, and downsample to 5000 cells.

library(scRNAseq)

lung <- ZilionisLungData()
immune <- lung$Used & lung$used_in_NSCLC_immune
lung <- lung[,immune]
lung <- lung[,1:5000]

exp.mat <- Matrix::Matrix(counts(lung),sparse = TRUE)
colnames(exp.mat) <- paste0(colnames(exp.mat), seq(1,ncol(exp.mat)))

3 Define gene signatures

Here we define some simple gene sets based on the “Human Cell Landscape” signatures Han et al. (2020) Nature. You may edit existing signatures, or add new one as elements in a list.

signatures <- list(
    Tcell = c("CD3D","CD3E","CD3G","CD2","TRAC"),
    Myeloid = c("CD14","LYZ","CSF1R","FCER1G","SPI1","LCK-"),
    NK = c("KLRD1","NCR1","NKG7","CD3D-","CD3E-"),
    Plasma_cell = c("MZB1","DERL3","CD19-")
)

4 Run UCell on Seurat object

library(UCell)
library(Seurat)
seurat.object <- CreateSeuratObject(counts = exp.mat, 
                                    project = "Zilionis_immune")
seurat.object <- AddModuleScore_UCell(seurat.object, 
                                      features=signatures, name=NULL)
head(seurat.object[[]])
##              orig.ident nCount_RNA nFeature_RNA Tcell   Myeloid NK Plasma_cell
## bcHTNA1 Zilionis_immune       7516         2613     0 0.5234000  0       0.000
## bcHNVA2 Zilionis_immune       5684         1981     0 0.5120000  0       0.000
## bcALZN3 Zilionis_immune       4558         1867     0 0.3593333  0       0.076
## bcFWBP4 Zilionis_immune       2915         1308     0 0.1558000  0       0.000
## bcBJYE5 Zilionis_immune       3576         1548     0 0.4639333  0       0.000
## bcGSBJ6 Zilionis_immune       2796         1270     0 0.5460000  0       0.000

Generate PCA and UMAP embeddings

seurat.object <- NormalizeData(seurat.object)
seurat.object <- FindVariableFeatures(seurat.object, 
                     selection.method = "vst", nfeatures = 500)
  
seurat.object <- ScaleData(seurat.object)
seurat.object <- RunPCA(seurat.object, npcs = 20, 
                        features=VariableFeatures(seurat.object)) 
seurat.object <- RunUMAP(seurat.object, reduction = "pca", 
                         dims = 1:20, seed.use=123)

Visualize UCell scores on low-dimensional representation (UMAP)

library(ggplot2)
library(patchwork)

FeaturePlot(seurat.object, reduction = "umap", features = names(signatures))

5 Signature smoothing

Single-cell data are sparse. It can be useful to ‘impute’ scores by neighboring cells and partially correct this sparsity. The function SmoothKNN performs smoothing of single-cell scores by weighted average of the k-nearest neighbors in a given dimensionality reduction. It can be applied directly on Seurat objects to smooth UCell scores:

seurat.object <- SmoothKNN(seurat.object,
                           signature.names = names(signatures),
                           reduction="pca")
FeaturePlot(seurat.object, reduction = "umap", features = c("NK","NK_kNN"))

Smoothing (or imputation) has been designed for UCell scores, but it can be applied to any other data or metadata. For instance, we can perform knn-smoothing directly on gene expression measurements:

genes <- c("CD2","CSF1R")
seurat.object <- SmoothKNN(seurat.object, signature.names=genes,
                 assay="RNA", reduction="pca", k=20, suffix = "_smooth")

DefaultAssay(seurat.object) <- "RNA"
a <- FeaturePlot(seurat.object, reduction = "umap", features = genes)
DefaultAssay(seurat.object) <- "RNA_smooth"
b <- FeaturePlot(seurat.object, reduction = "umap", features = genes)
a / b

6 Resources

Please report any issues at the UCell GitHub repository.

More demos available on the Bioc landing page and at the UCell demo repository.

If you find UCell useful, you may also check out the scGate package, which relies on UCell scores to automatically purify populations of interest based on gene signatures.

See also SignatuR for easy storing and retrieval of gene signatures.

7 References

Appendix

  • Andreatta, M., Carmona, S. J. (2021) UCell: Robust and scalable single-cell gene signature scoring Computational and Structural Biotechnology Journal
  • Zilionis, R., Engblom, C., …, Klein, A. M. (2019) Single-Cell Transcriptomics of Human and Mouse Lung Cancers Reveals Conserved Myeloid Populations across Individuals and Species Immunity
  • Hao, Yuhan, et al. (2021) Integrated analysis of multimodal single-cell data Cell

A Session Info

sessionInfo()
## R version 4.3.2 (2023-10-31)
## Platform: x86_64-pc-linux-gnu (64-bit)
## Running under: Ubuntu 22.04.3 LTS
## 
## Matrix products: default
## BLAS:   /home/biocbuild/bbs-3.18-bioc/R/lib/libRblas.so 
## LAPACK: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.10.0
## 
## 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       
## 
## time zone: America/New_York
## tzcode source: system (glibc)
## 
## attached base packages:
## [1] stats4    stats     graphics  grDevices utils     datasets  methods  
## [8] base     
## 
## other attached packages:
##  [1] patchwork_1.1.3             ggplot2_3.4.4              
##  [3] Seurat_5.0.0                SeuratObject_5.0.0         
##  [5] sp_2.1-1                    UCell_2.6.2                
##  [7] scRNAseq_2.16.0             SingleCellExperiment_1.24.0
##  [9] SummarizedExperiment_1.32.0 Biobase_2.62.0             
## [11] GenomicRanges_1.54.1        GenomeInfoDb_1.38.0        
## [13] IRanges_2.36.0              S4Vectors_0.40.1           
## [15] BiocGenerics_0.48.1         MatrixGenerics_1.14.0      
## [17] matrixStats_1.0.0           BiocStyle_2.30.0           
## 
## loaded via a namespace (and not attached):
##   [1] RcppAnnoy_0.0.21              splines_4.3.2                
##   [3] later_1.3.1                   BiocIO_1.12.0                
##   [5] bitops_1.0-7                  filelock_1.0.2               
##   [7] tibble_3.2.1                  polyclip_1.10-6              
##   [9] XML_3.99-0.15                 fastDummies_1.7.3            
##  [11] lifecycle_1.0.3               globals_0.16.2               
##  [13] lattice_0.22-5                ensembldb_2.26.0             
##  [15] MASS_7.3-60                   magrittr_2.0.3               
##  [17] plotly_4.10.3                 sass_0.4.7                   
##  [19] rmarkdown_2.25                jquerylib_0.1.4              
##  [21] yaml_2.3.7                    httpuv_1.6.12                
##  [23] sctransform_0.4.1             spam_2.10-0                  
##  [25] spatstat.sparse_3.0-3         reticulate_1.34.0            
##  [27] pbapply_1.7-2                 cowplot_1.1.1                
##  [29] DBI_1.1.3                     RColorBrewer_1.1-3           
##  [31] abind_1.4-5                   zlibbioc_1.48.0              
##  [33] Rtsne_0.16                    purrr_1.0.2                  
##  [35] AnnotationFilter_1.26.0       RCurl_1.98-1.13              
##  [37] rappdirs_0.3.3                GenomeInfoDbData_1.2.11      
##  [39] ggrepel_0.9.4                 irlba_2.3.5.1                
##  [41] spatstat.utils_3.0-4          listenv_0.9.0                
##  [43] goftest_1.2-3                 RSpectra_0.16-1              
##  [45] spatstat.random_3.2-1         fitdistrplus_1.1-11          
##  [47] parallelly_1.36.0             leiden_0.4.3                 
##  [49] codetools_0.2-19              DelayedArray_0.28.0          
##  [51] xml2_1.3.5                    tidyselect_1.2.0             
##  [53] farver_2.1.1                  spatstat.explore_3.2-5       
##  [55] BiocFileCache_2.10.1          GenomicAlignments_1.38.0     
##  [57] jsonlite_1.8.7                BiocNeighbors_1.20.0         
##  [59] ellipsis_0.3.2                progressr_0.14.0             
##  [61] ggridges_0.5.4                survival_3.5-7               
##  [63] tools_4.3.2                   progress_1.2.2               
##  [65] ica_1.0-3                     Rcpp_1.0.11                  
##  [67] glue_1.6.2                    gridExtra_2.3                
##  [69] SparseArray_1.2.1             xfun_0.41                    
##  [71] dplyr_1.1.3                   withr_2.5.2                  
##  [73] BiocManager_1.30.22           fastmap_1.1.1                
##  [75] fansi_1.0.5                   digest_0.6.33                
##  [77] R6_2.5.1                      mime_0.12                    
##  [79] colorspace_2.1-0              scattermore_1.2              
##  [81] tensor_1.5                    spatstat.data_3.0-3          
##  [83] biomaRt_2.58.0                RSQLite_2.3.3                
##  [85] tidyr_1.3.0                   utf8_1.2.4                   
##  [87] generics_0.1.3                data.table_1.14.8            
##  [89] rtracklayer_1.62.0            htmlwidgets_1.6.2            
##  [91] prettyunits_1.2.0             httr_1.4.7                   
##  [93] S4Arrays_1.2.0                uwot_0.1.16                  
##  [95] pkgconfig_2.0.3               gtable_0.3.4                 
##  [97] blob_1.2.4                    lmtest_0.9-40                
##  [99] XVector_0.42.0                htmltools_0.5.7              
## [101] dotCall64_1.1-0               bookdown_0.36                
## [103] ProtGenerics_1.34.0           scales_1.2.1                 
## [105] png_0.1-8                     knitr_1.45                   
## [107] reshape2_1.4.4                rjson_0.2.21                 
## [109] nlme_3.1-163                  curl_5.1.0                   
## [111] cachem_1.0.8                  zoo_1.8-12                   
## [113] stringr_1.5.0                 BiocVersion_3.18.0           
## [115] KernSmooth_2.23-22            parallel_4.3.2               
## [117] miniUI_0.1.1.1                AnnotationDbi_1.64.1         
## [119] restfulr_0.0.15               pillar_1.9.0                 
## [121] grid_4.3.2                    vctrs_0.6.4                  
## [123] RANN_2.6.1                    promises_1.2.1               
## [125] dbplyr_2.4.0                  xtable_1.8-4                 
## [127] cluster_2.1.4                 evaluate_0.23                
## [129] magick_2.8.1                  GenomicFeatures_1.54.1       
## [131] cli_3.6.1                     compiler_4.3.2               
## [133] Rsamtools_2.18.0              rlang_1.1.2                  
## [135] crayon_1.5.2                  future.apply_1.11.0          
## [137] labeling_0.4.3                plyr_1.8.9                   
## [139] stringi_1.7.12                deldir_1.0-9                 
## [141] viridisLite_0.4.2             BiocParallel_1.36.0          
## [143] munsell_0.5.0                 Biostrings_2.70.1            
## [145] lazyeval_0.2.2                spatstat.geom_3.2-7          
## [147] Matrix_1.6-1.1                ExperimentHub_2.10.0         
## [149] RcppHNSW_0.5.0                hms_1.1.3                    
## [151] bit64_4.0.5                   future_1.33.0                
## [153] KEGGREST_1.42.0               shiny_1.7.5.1                
## [155] highr_0.10                    interactiveDisplayBase_1.40.0
## [157] AnnotationHub_3.10.0          ROCR_1.0-11                  
## [159] igraph_1.5.1                  memoise_2.0.1                
## [161] bslib_0.5.1                   bit_4.0.5