Contents

1 tl;dr

See the relevant section of the OSCA book for an example of the recoverDoublets() function in action on real data. A toy example is also provided in ?recoverDoublets.

2 Mathematical background

Consider any two cell states \(C_1\) and \(C_2\) forming a doublet population \(D_{12}\). We will focus on the relative frequency of inter-sample to intra-sample doublets in \(D_{12}\). Given a vector \(\vec p_X\) containing the proportion of cells from each sample in state \(X\), and assuming that doublets form randomly between pairs of samples, the expected proportion of intra-sample doublets in \(D_{12}\) is \(\vec p_{C_1} \cdot \vec p_{C_2}\). Subtracting this from 1 gives us the expected proportion of inter-sample doublets \(q_{D_{12}}\). Similarly, the expected proportion of inter-sample doublets in \(C_1\) is just \(q_{C_1} =1 - \| \vec p_{C_1} \|_2^2\).

Now, let’s consider the observed proportion of events \(r_X\) in each state \(X\) that are known doublets. We have \(r_{D_{12}} = q_{D_{12}}\) as there are no other events in \(D_{12}\) beyond actual doublets. On the other hand, we expect that \(r_{C_1} \ll q_{C_1}\) due to presence of a large majority of non-doublet cells in \(C_1\) (same for \(C_2\)). If we assume that \(q_{D_{12}} \ge q_{C_1}\) and \(q_{C_2}\), the observed proportion \(r_{D_{12}}\) should be larger than \(r_{C_1}\) and \(r_{C_2}\). (The last assumption is not always true but the \(\ll\) should give us enough wiggle room to be robust to violations.)

The above reasoning motivates the use of the proportion of known doublet neighbors as a “doublet score” to identify events that are most likely to be themselves doublets. recoverDoublets() computes the proportion of known doublet neighbors for each cell by performing a \(k\)-nearest neighbor search against all other cells in the dataset. It is then straightforward to calculate the proportion of neighboring cells that are marked as known doublets, representing our estimate of \(r_X\) for each cell.

3 Obtaining explicit calls

While the proportions are informative, there comes a time when we need to convert these into explicit doublet calls. This is achieved with \(\vec S\), the vector of the proportion of cells from each sample across the entire dataset (i.e., samples). We assume that all cell states contributing to doublet states have proportion vectors equal to \(\vec S\), such that the expected proportion of doublets that occur between cells from the same sample is \(\| \vec S\|_2^2\). We then solve

\[ \frac{N_{intra}}{(N_{intra} + N_{inter}} = \| \vec S\|_2^2 \]

for \(N_{intra}\), where \(N_{inter}\) is the number of observed inter-sample doublets. The top \(N_{intra}\) events with the highest scores (and, obviously, are not already inter-sample doublets) are marked as putative intra-sample doublets.

4 Discussion

The rate and manner of doublet formation is (mostly) irrelevant as we condition on the number of events in \(D_{12}\). This means that we do not have to make any assumptions about the relative likelihood of doublets forming between pairs of cell types, especially when cell types have different levels of “stickiness” (or worse, stick specifically to certain other cell types). Such convenience is only possible because of the known doublet calls that allow us to focus on the inter- to intra-sample ratio.

The most problematic assumption is that required to obtain \(N_{intra}\) from \(\vec S\). Obtaining a better estimate would require, at least, the knowledge of the two parent states for each doublet population. This can be determined with some simulation-based heuristics but it is likely to be more trouble than it is worth.

In this theoretical framework, we can easily spot a case where our method fails. If both \(C_1\) and \(C_2\) are unique to a given sample, all events in \(D_{12}\) will be intra-sample doublets. This means that no events in \(D_{12}\) will ever be detected as inter-sample doublets, which precludes their detection as intra-sample doublets by recoverDoublets. The computational remedy is to augment the predictions with simulation-based methods (e.g., scDblFinder()) while the experimental remedy is to ensure that multiplexed samples include technical or biological replicates.

Session information

sessionInfo()
## R Under development (unstable) (2024-03-18 r86148)
## Platform: x86_64-pc-linux-gnu
## Running under: Ubuntu 22.04.4 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] bluster_1.13.0              scDblFinder_1.17.3         
##  [3] scater_1.31.2               ggplot2_3.5.0              
##  [5] scran_1.31.3                scuttle_1.13.1             
##  [7] ensembldb_2.27.1            AnnotationFilter_1.27.0    
##  [9] GenomicFeatures_1.55.4      AnnotationDbi_1.65.2       
## [11] scRNAseq_2.17.6             SingleCellExperiment_1.25.0
## [13] SummarizedExperiment_1.33.3 Biobase_2.63.0             
## [15] GenomicRanges_1.55.4        GenomeInfoDb_1.39.9        
## [17] IRanges_2.37.1              S4Vectors_0.41.5           
## [19] BiocGenerics_0.49.1         MatrixGenerics_1.15.0      
## [21] matrixStats_1.2.0           BiocStyle_2.31.0           
## 
## loaded via a namespace (and not attached):
##   [1] jsonlite_1.8.8            magrittr_2.0.3           
##   [3] magick_2.8.3              ggbeeswarm_0.7.2         
##   [5] gypsum_0.99.15            farver_2.1.1             
##   [7] rmarkdown_2.26            BiocIO_1.13.0            
##   [9] zlibbioc_1.49.3           vctrs_0.6.5              
##  [11] memoise_2.0.1             Rsamtools_2.19.4         
##  [13] DelayedMatrixStats_1.25.1 RCurl_1.98-1.14          
##  [15] base64enc_0.1-3           htmltools_0.5.7          
##  [17] S4Arrays_1.3.6            AnnotationHub_3.11.3     
##  [19] curl_5.2.1                BiocNeighbors_1.21.2     
##  [21] xgboost_1.7.7.1           Rhdf5lib_1.25.1          
##  [23] SparseArray_1.3.4         rhdf5_2.47.6             
##  [25] sass_0.4.9                alabaster.base_1.3.23    
##  [27] bslib_0.6.1               alabaster.sce_1.3.3      
##  [29] httr2_1.0.0               cachem_1.0.8             
##  [31] GenomicAlignments_1.39.4  igraph_2.0.3             
##  [33] mime_0.12                 lifecycle_1.0.4          
##  [35] pkgconfig_2.0.3           rsvd_1.0.5               
##  [37] Matrix_1.6-5              R6_2.5.1                 
##  [39] fastmap_1.1.1             GenomeInfoDbData_1.2.11  
##  [41] digest_0.6.35             colorspace_2.1-0         
##  [43] dqrng_0.3.2               irlba_2.3.5.1            
##  [45] ExperimentHub_2.11.1      aws.signature_0.6.0      
##  [47] RSQLite_2.3.5             beachmat_2.19.1          
##  [49] labeling_0.4.3            filelock_1.0.3           
##  [51] fansi_1.0.6               httr_1.4.7               
##  [53] abind_1.4-5               compiler_4.4.0           
##  [55] bit64_4.0.5               withr_3.0.0              
##  [57] BiocParallel_1.37.1       viridis_0.6.5            
##  [59] DBI_1.2.2                 highr_0.10               
##  [61] HDF5Array_1.31.6          alabaster.ranges_1.3.3   
##  [63] alabaster.schemas_1.3.1   MASS_7.3-60.2            
##  [65] rappdirs_0.3.3            DelayedArray_0.29.9      
##  [67] rjson_0.2.21              tools_4.4.0              
##  [69] vipor_0.4.7               beeswarm_0.4.0           
##  [71] glue_1.7.0                restfulr_0.0.15          
##  [73] rhdf5filters_1.15.4       grid_4.4.0               
##  [75] Rtsne_0.17                cluster_2.1.6            
##  [77] generics_0.1.3            gtable_0.3.4             
##  [79] data.table_1.15.2         metapod_1.11.1           
##  [81] BiocSingular_1.19.0       ScaledMatrix_1.11.1      
##  [83] xml2_1.3.6                utf8_1.2.4               
##  [85] XVector_0.43.1            ggrepel_0.9.5            
##  [87] BiocVersion_3.19.1        pillar_1.9.0             
##  [89] limma_3.59.6              dplyr_1.1.4              
##  [91] BiocFileCache_2.11.1      lattice_0.22-6           
##  [93] rtracklayer_1.63.1        bit_4.0.5                
##  [95] tidyselect_1.2.1          locfit_1.5-9.9           
##  [97] Biostrings_2.71.4         knitr_1.45               
##  [99] gridExtra_2.3             bookdown_0.38            
## [101] ProtGenerics_1.35.4       edgeR_4.1.18             
## [103] xfun_0.42                 statmod_1.5.0            
## [105] lazyeval_0.2.2            yaml_2.3.8               
## [107] evaluate_0.23             codetools_0.2-19         
## [109] tibble_3.2.1              alabaster.matrix_1.3.13  
## [111] BiocManager_1.30.22       cli_3.6.2                
## [113] munsell_0.5.0             jquerylib_0.1.4          
## [115] Rcpp_1.0.12               dbplyr_2.5.0             
## [117] png_0.1-8                 XML_3.99-0.16.1          
## [119] parallel_4.4.0            blob_1.2.4               
## [121] aws.s3_0.3.21             sparseMatrixStats_1.15.0 
## [123] bitops_1.0-7              viridisLite_0.4.2        
## [125] alabaster.se_1.3.4        scales_1.3.0             
## [127] purrr_1.0.2               crayon_1.5.2             
## [129] rlang_1.1.3               cowplot_1.1.3            
## [131] KEGGREST_1.43.0