Training basic model classifying a cell type from scRNA-seq data

Vy Nguyen

2023-10-25

Introduction

One of key functions of the scAnnotatR package is to provide users easy tools to train their own model classifying new cell types from labeled scRNA-seq data.

This vignette shows how to train a basic classification model for an independent cell type, which is not a child of any other cell type.

Preparing train object and test object

The workflow starts with either a Seurat or SingleCellExperiment object where cells have already been assigned to different cell types.

To do this, users may have annotated scRNA-seq data (by a FACS-sorting process, for example), create a Seurat/ SingleCellExperiment (SCE) object based on the sequencing data and assign the predetermined cell types as cell meta data. If the scRNA-seq data has not been annotated yet, another possible approach is to follow the basic workflow (Seurat, for example) until assigning cell type identity to clusters.

In this vignette, we use the human lung dataset from Zilionis et al., 2019, which is available in the scRNAseq (2.4.0) library. The dataset is stored as a SCE object.

To start the training workflow, we first install and load the necessary libraries.

# use BiocManager to install from Bioconductor
if (!requireNamespace("BiocManager", quietly = TRUE))
    install.packages("BiocManager")

# the scAnnotatR package
if (!require(scAnnotatR))
  BiocManager::install("scAnnotatR")

# we use the scRNAseq package to load example data
if (!require(scRNAseq))
  BiocManager::install("scRNAseq")
library(scRNAseq)
library(scAnnotatR)

First, we load the dataset. To reduce the computational complexity of this vignette, we only use the first 5000 cells of the dataset.

zilionis <- ZilionisLungData()
#> see ?scRNAseq and browseVignettes('scRNAseq') for documentation
#> loading from cache
#> see ?scRNAseq and browseVignettes('scRNAseq') for documentation
#> loading from cache
zilionis <- zilionis[, 1:5000]

We split this dataset into two parts, one for the training and the other for the testing.

pivot = ncol(zilionis)%/%2
train_set <- zilionis[, 1:pivot]
test_set <- zilionis[, (1+pivot):ncol(zilionis)]

In this dataset, the cell type meta data is stored in the Most likely LM22 cell type slot of the SingleCellExperiment object (in both the train object and test object).

If the cell type is stored not stored as the default identification (set through Idents for Seurat object) the slot must be set as a parameter in the training and testing function (see below).

unique(train_set$`Most likely LM22 cell type`)
#>  [1] "Macrophages M0"               "Macrophages M2"              
#>  [3] "Monocytes"                    "Macrophages M1"              
#>  [5] "Mast cells activated"         NA                            
#>  [7] "T cells CD4 memory resting"   "NK cells resting"            
#>  [9] "Neutrophils"                  "T cells CD8"                 
#> [11] "Dendritic cells resting"      "T cells CD4 memory activated"
#> [13] "Plasma cells"                 "T cells regulatory (Tregs)"  
#> [15] "T cells follicular helper"    "Eosinophils"                 
#> [17] "Dendritic cells activated"    "B cells memory"              
#> [19] "Mast cells resting"           "NK cells activated"          
#> [21] "B cells naive"
unique(test_set$`Most likely LM22 cell type`)
#>  [1] "Monocytes"                    NA                            
#>  [3] "Macrophages M0"               "T cells CD4 memory resting"  
#>  [5] "T cells regulatory (Tregs)"   "T cells follicular helper"   
#>  [7] "B cells memory"               "T cells CD8"                 
#>  [9] "T cells CD4 memory activated" "Dendritic cells resting"     
#> [11] "Neutrophils"                  "Plasma cells"                
#> [13] "Mast cells activated"         "Macrophages M2"              
#> [15] "NK cells activated"           "B cells naive"               
#> [17] "Dendritic cells activated"    "NK cells resting"            
#> [19] "Macrophages M1"               "Eosinophils"                 
#> [21] "Mast cells resting"

We want to train a classifier for B cells and their phenotypes. Considering memory B cells, naive B cells and plasma cells as B cell phenotypes, we convert all those cells to a uniform cell label, ie. B cells. All non B cells are converted into ‘others’.

# change cell label
train_set$B_cell <- unlist(lapply(train_set$`Most likely LM22 cell type`,
                                  function(x) if (is.na(x)) {'ambiguous'} else if (x %in% c('Plasma cells', 'B cells memory', 'B cells naive')) {'B cells'} else {'others'}))

test_set$B_cell <- unlist(lapply(test_set$`Most likely LM22 cell type`,
                                 function(x) if (is.na(x)) {'ambiguous'} else if (x %in% c('Plasma cells', 'B cells memory', 'B cells naive')) {'B cells'} else {'others'}))

We observe that there are cells marked NAs. Those can be understood as 1/different from all indicated cell types or 2/any unknown cell types. Here we consider the second case, ie. we don’t know whether they are positive or negative to B cells. To avoid any effect of these cells, we can assign them as ‘ambiguous’. All cells tagged ‘ambiguous’ will be ignored by scAnnotatR from training and testing.

We may want to check the number of cells in each category:

table(train_set$B_cell)
#> 
#>   B cells ambiguous    others 
#>        70      1406      1024

Defining marker genes

Next, we define a set of marker genes, which will be used in training the classification model. Supposing we are training a model for classifying B cells, we define the set of marker genes as follows:

selected_marker_genes_B <- c("CD19", "MS4A1", "CD79A", "CD79B", 'CD27', 'IGHG1', 'IGHG2', 'IGHM',
                         "CR2", "MEF2C", 'VPREB3', 'CD86', 'LY86', "BLK", "DERL3")

Train model

When the model is being trained, three pieces of information must be provided:

In case the dataset does not contain any cell classified as the target cell type, the function will fail.

If the cell type annotation is not set in the default identification slot (Idents for Seurat objects) the name of the metadata field must be provided to the sce_tag_slot parameter.

When training on an imbalanced dataset (f.e. a datasets containing 90% B cells and only very few other cell types), the trained model may bias toward the majority group and ignore the presence of the minority group. To avoid this, the number of positive cells and negative cells will be automatically balanced before training. Therefore, a smaller number cells will be randomly picked
from the majority group. To use the same set of cells while training multiple times for one model, users can use set.seed.

set.seed(123)
classifier_B <- train_classifier(train_obj = train_set, cell_type = "B cells", 
                                 marker_genes = selected_marker_genes_B,
                                 assay = 'counts', tag_slot = 'B_cell')
#> Warning: Cell types containing /, ,,  -,  [+], [.],  and ,  or , _or_, -or-, [(], [)], ambiguous are considered as ambiguous. They are removed from training and testing.
#> Loading required package: ggplot2
#> Loading required package: lattice
#> Warning in .local(x, ...): Variable(s) `' constant. Cannot scale data.
classifier_B
#> An object of class scAnnotatR for B cells 
#> * 15 marker genes applied: BLK, CD19, CD27, CD79A, CD79B, CD86, CR2, DERL3, IGHG1, IGHG2, IGHM, LY86, MEF2C, MS4A1, VPREB3 
#> * Predicting probability threshold: 0.5 
#> * No parent model

The classification model is a scAnnotatR object. Details about the classification model are accessible via getter methods.

For example:

caret_model(classifier_B)
#> Support Vector Machines with Linear Kernel 
#> 
#> No pre-processing
#> Resampling: Cross-Validated (10 fold) 
#> Summary of sample sizes: 984, 984, 985, 985, 985, 985, ... 
#> Addtional sampling using down-sampling
#> 
#> Resampling results:
#> 
#>   Accuracy   Kappa    
#>   0.9543119  0.6263564
#> 
#> Tuning parameter 'C' was held constant at a value of 1

Test model

The test_classifier model automatically tests a classifier’s performance against another dataset. Here, we used the test_set created before:

classifier_B_test <- test_classifier(classifier = classifier_B, test_obj = test_set,  
                                     assay = 'counts', tag_slot = 'B_cell')
#> Warning: Cell types containing /, ,,  -,  [+], [.],  and ,  or , _or_, -or-, [(], [)], ambiguous are considered as ambiguous. They are removed from training and testing.
#> Current probability threshold: 0.5
#>          Positive    Negative    Total
#> Actual       90      1024        1114
#> Predicted    115     999     1114
#> Accuracy: 0.957809694793537
#> Sensivity (True Positive Rate) for B cells: 0.877777777777778
#> Specificity (1 - False Positive Rate) for B cells: 0.96484375
#> Area under the curve: 0.96728515625

Interpreting test model result

Apart from the output exported to console, test classifier function also returns an object, which is a list of:

Every classifier internally consists of a trained SVM and a probability threshold. Only cells that are classified with a probability exceeding this threshold are classified as the respective cell type. The overall_roc slot summarizes the True Positive Rate (sensitivity) and False Positive Rate (1 - specificity) obtained by the trained model according to different thresholds.

classifier_B_test$overall_roc
#>       p_thres        fpr       tpr
#>  [1,]     0.1 0.96582031 1.0000000
#>  [2,]     0.2 0.88378906 1.0000000
#>  [3,]     0.3 0.07519531 0.8888889
#>  [4,]     0.4 0.06445312 0.8888889
#>  [5,]     0.5 0.03515625 0.8777778
#>  [6,]     0.6 0.03222656 0.8333333
#>  [7,]     0.7 0.02929688 0.8222222
#>  [8,]     0.8 0.02343750 0.7555556
#>  [9,]     0.9 0.01269531 0.6777778

In this example of B cell classifier, the current threshold is at 0.5. The higher sensitivity can be reached if we set the p_thres at 0.4. However, we will then have lower specificity, which means that we will incorrectly classify some cells as B cells. At the sime time, we may not retrieve all actual B cells with higher p_thres (0.6, for example).

There is of course a certain trade-off between the sensitivity and the specificity of the model. Depending on the need of the project or the user-own preference, a probability threshold giving higher sensitivity or higher specificity can be chosen. In our perspective, p_thres at 0.5 is a good choice for the current B cell model.

Plotting ROC curve

Apart from numbers, we also provide a method to plot the ROC curve.

roc_curve <- plot_roc_curve(test_result = classifier_B_test)
plot(roc_curve)

Which model to choose?

Changes in the training data, in the set of marker genes and in the prediction probability threshold will all lead to a change in model performance.

There are several ways to evaluate the trained model, including the overall accuracy, the AUC score and the sensitivity/specificity of the model when testing on an independent dataset. In this example, we choose the model which has the best AUC score.

Tip: Using more general markers of the whole population leads to higher sensitivity. This sometimes produces lower specificity because of close cell types (T cells and NK cells, for example). While training some models, we observed that we can use the markers producing high sensitivity but at the same time can improve the specificity by increasing the probability threshold. Of course, this can only applied in some cases, because some markers can even have a larger affect on the specificity than the prediction probability threshold.

Save classification model for further use

New classification models can be stored using the save_new_model function:

# no copy of pretrained models is performed
save_new_model(new_model = classifier_B, path_to_models = tempdir(),
               include.default = FALSE) 
#> Saving new models to /tmp/RtmpuhgT2Q/new_models.rda...
#> Finished saving new model

Parameters:

Users can also choose whether copy all pretrained models of the packages to the new model database. If not, in the future, user can only choose to use either default pretrained models or new models by specifying only one path to models.

Models can be deleted from the model database using the delete_model function:

# delete the "B cells" model from the new database
delete_model("B cells", path_to_models = tempdir())

Session Info

sessionInfo()
#> R Under development (unstable) (2023-10-22 r85388)
#> Platform: x86_64-pc-linux-gnu
#> Running under: Ubuntu 22.04.3 LTS
#> 
#> Matrix products: default
#> BLAS:   /home/biocbuild/bbs-3.19-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] caret_6.0-94                lattice_0.22-5             
#>  [3] ggplot2_3.4.4               Matrix_1.6-1.1             
#>  [5] scRNAseq_2.15.0             scAnnotatR_1.9.0           
#>  [7] SingleCellExperiment_1.25.0 SummarizedExperiment_1.33.0
#>  [9] Biobase_2.63.0              GenomicRanges_1.55.0       
#> [11] GenomeInfoDb_1.39.0         IRanges_2.37.0             
#> [13] S4Vectors_0.41.0            BiocGenerics_0.49.0        
#> [15] MatrixGenerics_1.15.0       matrixStats_1.0.0          
#> [17] SeuratObject_4.1.4          Seurat_4.4.0               
#> 
#> loaded via a namespace (and not attached):
#>   [1] ProtGenerics_1.35.0           spatstat.sparse_3.0-3        
#>   [3] bitops_1.0-7                  lubridate_1.9.3              
#>   [5] httr_1.4.7                    RColorBrewer_1.1-3           
#>   [7] tools_4.4.0                   sctransform_0.4.1            
#>   [9] utf8_1.2.4                    R6_2.5.1                     
#>  [11] lazyeval_0.2.2                uwot_0.1.16                  
#>  [13] withr_2.5.1                   sp_2.1-1                     
#>  [15] prettyunits_1.2.0             gridExtra_2.3                
#>  [17] progressr_0.14.0              cli_3.6.1                    
#>  [19] spatstat.explore_3.2-5        labeling_0.4.3               
#>  [21] sass_0.4.7                    spatstat.data_3.0-3          
#>  [23] proxy_0.4-27                  ggridges_0.5.4               
#>  [25] pbapply_1.7-2                 Rsamtools_2.19.0             
#>  [27] parallelly_1.36.0             RSQLite_2.3.1                
#>  [29] generics_0.1.3                BiocIO_1.13.0                
#>  [31] ica_1.0-3                     spatstat.random_3.2-1        
#>  [33] dplyr_1.1.3                   fansi_1.0.5                  
#>  [35] abind_1.4-5                   lifecycle_1.0.3              
#>  [37] yaml_2.3.7                    recipes_1.0.8                
#>  [39] SparseArray_1.3.0             BiocFileCache_2.11.0         
#>  [41] Rtsne_0.16                    grid_4.4.0                   
#>  [43] blob_1.2.4                    promises_1.2.1               
#>  [45] ExperimentHub_2.11.0          crayon_1.5.2                 
#>  [47] miniUI_0.1.1.1                cowplot_1.1.1                
#>  [49] GenomicFeatures_1.55.0        KEGGREST_1.43.0              
#>  [51] pillar_1.9.0                  knitr_1.44                   
#>  [53] rjson_0.2.21                  future.apply_1.11.0          
#>  [55] codetools_0.2-19              leiden_0.4.3                 
#>  [57] glue_1.6.2                    data.table_1.14.8            
#>  [59] vctrs_0.6.4                   png_0.1-8                    
#>  [61] gtable_0.3.4                  kernlab_0.9-32               
#>  [63] cachem_1.0.8                  gower_1.0.1                  
#>  [65] xfun_0.40                     S4Arrays_1.3.0               
#>  [67] mime_0.12                     prodlim_2023.08.28           
#>  [69] survival_3.5-7                timeDate_4022.108            
#>  [71] iterators_1.0.14              hardhat_1.3.0                
#>  [73] lava_1.7.2.1                  interactiveDisplayBase_1.41.0
#>  [75] ellipsis_0.3.2                fitdistrplus_1.1-11          
#>  [77] ROCR_1.0-11                   ipred_0.9-14                 
#>  [79] nlme_3.1-163                  bit64_4.0.5                  
#>  [81] progress_1.2.2                filelock_1.0.2               
#>  [83] RcppAnnoy_0.0.21              data.tree_1.0.0              
#>  [85] bslib_0.5.1                   irlba_2.3.5.1                
#>  [87] KernSmooth_2.23-22            rpart_4.1.21                 
#>  [89] colorspace_2.1-0              DBI_1.1.3                    
#>  [91] nnet_7.3-19                   tidyselect_1.2.0             
#>  [93] bit_4.0.5                     compiler_4.4.0               
#>  [95] curl_5.1.0                    xml2_1.3.5                   
#>  [97] DelayedArray_0.29.0           plotly_4.10.3                
#>  [99] rtracklayer_1.63.0            scales_1.2.1                 
#> [101] lmtest_0.9-40                 rappdirs_0.3.3               
#> [103] stringr_1.5.0                 digest_0.6.33                
#> [105] goftest_1.2-3                 spatstat.utils_3.0-4         
#> [107] rmarkdown_2.25                XVector_0.43.0               
#> [109] htmltools_0.5.6.1             pkgconfig_2.0.3              
#> [111] dbplyr_2.3.4                  fastmap_1.1.1                
#> [113] ensembldb_2.27.0              rlang_1.1.1                  
#> [115] htmlwidgets_1.6.2             shiny_1.7.5.1                
#> [117] farver_2.1.1                  jquerylib_0.1.4              
#> [119] zoo_1.8-12                    jsonlite_1.8.7               
#> [121] BiocParallel_1.37.0           ModelMetrics_1.2.2.2         
#> [123] RCurl_1.98-1.12               magrittr_2.0.3               
#> [125] GenomeInfoDbData_1.2.11       patchwork_1.1.3              
#> [127] munsell_0.5.0                 Rcpp_1.0.11                  
#> [129] ape_5.7-1                     reticulate_1.34.0            
#> [131] stringi_1.7.12                pROC_1.18.4                  
#> [133] zlibbioc_1.49.0               MASS_7.3-60.1                
#> [135] AnnotationHub_3.11.0          plyr_1.8.9                   
#> [137] parallel_4.4.0                listenv_0.9.0                
#> [139] ggrepel_0.9.4                 deldir_1.0-9                 
#> [141] Biostrings_2.71.1             splines_4.4.0                
#> [143] tensor_1.5                    hms_1.1.3                    
#> [145] igraph_1.5.1                  spatstat.geom_3.2-7          
#> [147] reshape2_1.4.4                biomaRt_2.59.0               
#> [149] BiocVersion_3.19.0            XML_3.99-0.14                
#> [151] evaluate_0.22                 BiocManager_1.30.22          
#> [153] foreach_1.5.2                 httpuv_1.6.12                
#> [155] RANN_2.6.1                    tidyr_1.3.0                  
#> [157] purrr_1.0.2                   polyclip_1.10-6              
#> [159] future_1.33.0                 scattermore_1.2              
#> [161] xtable_1.8-4                  AnnotationFilter_1.27.0      
#> [163] restfulr_0.0.15               e1071_1.7-13                 
#> [165] later_1.3.1                   viridisLite_0.4.2            
#> [167] class_7.3-22                  tibble_3.2.1                 
#> [169] memoise_2.0.1                 AnnotationDbi_1.65.0         
#> [171] GenomicAlignments_1.39.0      cluster_2.1.4                
#> [173] timechange_0.2.0              globals_0.16.2