A common application of single-cell RNA sequencing (RNA-seq) data is
to identify discrete cell types. To take advantage of the large collection
of well-annotated scRNA-seq datasets, scClassify package implements
a set of methods to perform accurate cell type classification based on
ensemble learning and sample size calculation.
This vignette demonstrates the usage of scClassify,
providing a pithy description of each method with workable examples.
First, install scClassify via BiocManager.
# installation of scClassify
if (!requireNamespace("BiocManager", quietly = TRUE)) {
    install.packages("BiocManager")
}
BiocManager::install("scClassify")We assume that you have log-transformed (size-factor normalized) matrices where each row is a gene and each column a cell for a reference dataset and a query dataset. For demonstration purposes, we will take a subset of single-cell pancreas datasets from two independent studies (Wang et al., and Xin et al.).
library("scClassify")
data("scClassify_example")
xin_cellTypes <- scClassify_example$xin_cellTypes
exprsMat_xin_subset <- scClassify_example$exprsMat_xin_subset
wang_cellTypes <- scClassify_example$wang_cellTypes
exprsMat_wang_subset <- scClassify_example$exprsMat_wang_subset
exprsMat_xin_subset <- as(exprsMat_xin_subset, "dgCMatrix")
exprsMat_wang_subset <- as(exprsMat_wang_subset, "dgCMatrix")The original cell type annotations and compositions of the example datasets can be easily accessed as shown below.
table(xin_cellTypes)
#> xin_cellTypes
#> alpha  beta delta gamma 
#>   285   261    49    79
table(wang_cellTypes)
#> wang_cellTypes
#>   acinar    alpha     beta    delta   ductal    gamma stellate 
#>        5      206      118       10       96       21       45We can see that Xin et al. data only have 4 cell types, while Wang et al. has 7 cell types.
We first perform non-ensemble scClassify by using Xin et al. 
as our reference dataset and Wang et al. data as ur query data.
We use WKNN as the KNN algorithm, DE (differential expression genes)
as the gene selection method, and lastly pearson as
the similarity calculation method.
scClassify_res <- scClassify(exprsMat_train = exprsMat_xin_subset,
                             cellTypes_train = xin_cellTypes,
                             exprsMat_test = list(wang = exprsMat_wang_subset),
                             cellTypes_test = list(wang = wang_cellTypes),
                             tree = "HOPACH",
                             algorithm = "WKNN",
                             selectFeatures = c("limma"),
                             similarity = c("pearson"),
                             returnList = FALSE,
                             verbose = FALSE)We can check the cell type tree generated by the reference data:
scClassify_res$trainRes
#> Class: scClassifyTrainModel 
#> Model name: training 
#> Feature selection methods: limma 
#> Number of cells in the training data: 674 
#> Number of cell types in the training data: 4
plotCellTypeTree(cellTypeTree(scClassify_res$trainRes))Noted that scClassify_res$trainRes is a scClassifyTrainModel class.
Check the prediction results.
table(scClassify_res$testRes$wang$pearson_WKNN_limma$predRes, wang_cellTypes)
#>                   wang_cellTypes
#>                    acinar alpha beta delta ductal gamma stellate
#>   alpha                 0   206    0     0      0     2        0
#>   beta                  0     0  118     0      1     0        0
#>   beta_delta_gamma      0     0    0     0     25     0        0
#>   delta                 0     0    0    10      0     0        0
#>   gamma                 0     0    0     0      0    19        0
#>   unassigned            5     0    0     0     70     0       45We next perform ensemble scClassify by using Xin et al. 
as our reference dataset and Wang et al. data as our query data.
We use WKNN as the KNN algorithm, DE as the gene selection method,
and pearson and spearman as the similarity calculation methods.
Thus, we will generate two combinations of gene selection models and
similarity metrics as training classifiers:
WKNN + DE + pearsonWKNN + DE + spearmanHere, we will weight these two classifiers equally by setting
weighted_ensemble = FALSE. By default this is set as TRUE,
so each base classifier will be weighted by the accuracy rates trained
in the reference data.
scClassify_res_ensemble <- scClassify(exprsMat_train = exprsMat_xin_subset,
                                      cellTypes_train = xin_cellTypes,
                                      exprsMat_test = list(wang = exprsMat_wang_subset),
                                      cellTypes_test = list(wang = wang_cellTypes),
                                      tree = "HOPACH",
                                      algorithm = "WKNN",
                                      selectFeatures = c("limma"),
                                      similarity = c("pearson", "cosine"),
                                      weighted_ensemble = FALSE,
                                      returnList = FALSE,
                                      verbose = FALSE)We can compare the two base classifiers predictions as below.
table(scClassify_res_ensemble$testRes$wang$pearson_WKNN_limma$predRes,
      scClassify_res_ensemble$testRes$wang$cosine_WKNN_limma$predRes)
#>                   
#>                    alpha beta beta_delta_gamma delta gamma unassigned
#>   alpha              208    0                0     0     0          0
#>   beta                 0  119                0     0     0          0
#>   beta_delta_gamma     0    0               22     0     0          3
#>   delta                0    0                0    10     0          0
#>   gamma                0    0                0     0    19          0
#>   unassigned           1    3               15     0     0        101Now, check the final ensemble results:
table(scClassify_res_ensemble$testRes$wang$ensembleRes$cellTypes, 
      wang_cellTypes)
#>                   wang_cellTypes
#>                    acinar alpha beta delta ductal gamma stellate
#>   alpha                 0   206    0     0      0     2        0
#>   beta                  0     0  118     0      1     0        0
#>   beta_delta_gamma      0     0    0     0     25     0        0
#>   delta                 0     0    0    10      0     0        0
#>   gamma                 0     0    0     0      0    19        0
#>   unassigned            5     0    0     0     70     0       45You can also train your own model scClassifyTrainModel using
train_scClassify(). Note that by setting weightsCal = TRUE,
we will calculate the training error of the reference data as
the weights for the individual classifiers.
Here, we illustrate the training function with gene selection methods based on differential expression (“limma”) and biomodal distribution (“BI”).
trainClass <- train_scClassify(exprsMat_train = exprsMat_xin_subset,
                               cellTypes_train = xin_cellTypes,
                               selectFeatures = c("limma", "BI"),
                               returnList = FALSE
)
#> after filtering not expressed genes 
#> [1] 980 674
#> [1] "Feature Selection..."
#> [1] "Number of genes selected to construct HOPACH tree 160"
#> [1] "Constructing tree ..."
#> [1] "Training...."
#> [1] "=== selecting features by: limma ===="
#> [1] "=== selecting features by: BI ===="trainClass
#> Class: scClassifyTrainModel 
#> Model name: training 
#> Feature selection methods: limma BI 
#> Number of cells in the training data: 674 
#> Number of cell types in the training data: 4sessionInfo()
#> 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] scClassify_1.8.0 BiocStyle_2.24.0
#> 
#> loaded via a namespace (and not attached):
#>   [1] segmented_1.5-0             nlme_3.1-157               
#>   [3] bitops_1.0-7                matrixStats_0.62.0         
#>   [5] hopach_2.56.0               GenomeInfoDb_1.32.0        
#>   [7] tools_4.2.0                 bslib_0.3.1                
#>   [9] utf8_1.2.2                  R6_2.5.1                   
#>  [11] HDF5Array_1.24.0            mgcv_1.8-40                
#>  [13] DBI_1.1.2                   BiocGenerics_0.42.0        
#>  [15] colorspace_2.0-3            rhdf5filters_1.8.0         
#>  [17] gridExtra_2.3               tidyselect_1.1.2           
#>  [19] proxyC_0.2.4                compiler_4.2.0             
#>  [21] cli_3.3.0                   Biobase_2.56.0             
#>  [23] DelayedArray_0.22.0         labeling_0.4.2             
#>  [25] bookdown_0.26               sass_0.4.1                 
#>  [27] diptest_0.76-0              scales_1.2.0               
#>  [29] proxy_0.4-26                stringr_1.4.0              
#>  [31] digest_0.6.29               mixtools_1.2.0             
#>  [33] rmarkdown_2.14              XVector_0.36.0             
#>  [35] pkgconfig_2.0.3             htmltools_0.5.2            
#>  [37] sparseMatrixStats_1.8.0     Cepo_1.2.0                 
#>  [39] MatrixGenerics_1.8.0        highr_0.9                  
#>  [41] fastmap_1.1.0               limma_3.52.0               
#>  [43] rlang_1.0.2                 DelayedMatrixStats_1.18.0  
#>  [45] jquerylib_0.1.4             generics_0.1.2             
#>  [47] farver_2.1.0                jsonlite_1.8.0             
#>  [49] BiocParallel_1.30.0         dplyr_1.0.8                
#>  [51] RCurl_1.98-1.6              magrittr_2.0.3             
#>  [53] GenomeInfoDbData_1.2.8      patchwork_1.1.1            
#>  [55] Matrix_1.4-1                Rcpp_1.0.8.3               
#>  [57] munsell_0.5.0               S4Vectors_0.34.0           
#>  [59] Rhdf5lib_1.18.0             fansi_1.0.3                
#>  [61] viridis_0.6.2               lifecycle_1.0.1            
#>  [63] stringi_1.7.6               yaml_2.3.5                 
#>  [65] ggraph_2.0.5                MASS_7.3-57                
#>  [67] SummarizedExperiment_1.26.0 zlibbioc_1.42.0            
#>  [69] rhdf5_2.40.0                plyr_1.8.7                 
#>  [71] grid_4.2.0                  parallel_4.2.0             
#>  [73] ggrepel_0.9.1               crayon_1.5.1               
#>  [75] lattice_0.20-45             splines_4.2.0              
#>  [77] graphlayouts_0.8.0          magick_2.7.3               
#>  [79] knitr_1.38                  pillar_1.7.0               
#>  [81] igraph_1.3.1                GenomicRanges_1.48.0       
#>  [83] reshape2_1.4.4              stats4_4.2.0               
#>  [85] glue_1.6.2                  evaluate_0.15              
#>  [87] RcppParallel_5.1.5          BiocManager_1.30.17        
#>  [89] vctrs_0.4.1                 tweenr_1.0.2               
#>  [91] gtable_0.3.0                purrr_0.3.4                
#>  [93] polyclip_1.10-0             tidyr_1.2.0                
#>  [95] kernlab_0.9-30              assertthat_0.2.1           
#>  [97] ggplot2_3.3.5               xfun_0.30                  
#>  [99] ggforce_0.3.3               tidygraph_1.2.1            
#> [101] survival_3.3-1              viridisLite_0.4.0          
#> [103] minpack.lm_1.2-2            SingleCellExperiment_1.18.0
#> [105] tibble_3.1.6                IRanges_2.30.0             
#> [107] cluster_2.1.3               statmod_1.4.36             
#> [109] ellipsis_0.3.2