1 Introduction

Data from different experimental platforms and/or batches exhibit systematic variation – i.e., batch effects. Therefore, when conducting joint analysis of data from different batches, a key first step is to align the datasets.

corralm is a multi-table adaptation of correspondence analysis designed for single-cell data, which applies multi-dimensional optimized scaling and matrix factorization to compute integrated embeddings across the datasets. These embeddings can then be used in downstream analyses, such as clustering, cell type classification, trajectory analysis, etc.

See the vignette for corral for dimensionality reduction of a single matrix of single-cell data.

2 Loading packages and data

We will use the SCMixology datasets from the CellBench package (Tian et al. 2019).

library(corral)
library(SingleCellExperiment)
library(ggplot2)
library(CellBench)
library(MultiAssayExperiment)

scmix_dat <- load_all_data()[1:3]

These datasets include a mixture of three lung cancer cell lines:

  • H2228
  • H1975
  • HCC827

which was sequenced using three platforms:

  • 10X
  • CELseq2
  • Dropseq
scmix_dat
## $sc_10x
## class: SingleCellExperiment 
## dim: 16468 902 
## metadata(3): scPipe Biomart log.exprs.offset
## assays(2): counts logcounts
## rownames(16468): ENSG00000272758 ENSG00000154678 ... ENSG00000054219
##   ENSG00000137691
## rowData names(0):
## colnames(902): CELL_000001 CELL_000002 ... CELL_000955 CELL_000965
## colData names(13): unaligned aligned_unmapped ... outliers cell_line
## reducedDimNames(0):
## altExpNames(0):
## 
## $sc_celseq
## class: SingleCellExperiment 
## dim: 28204 274 
## metadata(3): scPipe Biomart log.exprs.offset
## assays(2): counts logcounts
## rownames(28204): ENSG00000281131 ENSG00000227456 ... ENSG00000148143
##   ENSG00000226887
## rowData names(0):
## colnames(274): A1 A10 ... P8 P9
## colData names(14): unaligned aligned_unmapped ... outliers cell_line
## reducedDimNames(0):
## altExpNames(0):
## 
## $sc_dropseq
## class: SingleCellExperiment 
## dim: 15127 225 
## metadata(3): scPipe Biomart log.exprs.offset
## assays(2): counts logcounts
## rownames(15127): ENSG00000223849 ENSG00000225355 ... ENSG00000133789
##   ENSG00000146674
## rowData names(0):
## colnames(225): CELL_000001 CELL_000002 ... CELL_000249 CELL_000302
## colData names(13): unaligned aligned_unmapped ... outliers cell_line
## reducedDimNames(0):
## altExpNames(0):

Each sequencing platform captures a different set of genes. In order to apply this method, the matrices need to be matched by features (i.e., genes). We’ll find the intersect of the three datasets, then subset for that as we proceed.

First, we will prepare the data by: 1. adding to the colData the sequencing platform (Method in colData for each SCE), and 2. subsetting by the intersect of the genes.

platforms <- c('10X','CELseq2','Dropseq')
for(i in seq_along(scmix_dat)) {
  colData(scmix_dat[[i]])$Method<- rep(platforms[i], ncol(scmix_dat[[i]]))
}

scmix_mae <- as(scmix_dat,'MultiAssayExperiment')
scmix_dat <- as.list(MultiAssayExperiment::experiments(MultiAssayExperiment::intersectRows(scmix_mae)))

corralm can be applied to the following types of objects:

  • a single SingleCellExperiment requires specifying splitby (also see documentation of corralm_matlist for additional optional arguments that can be passed), which is a character string for the attribute in colData that is tracking the batches. In our case, this would be the “Method” attribute we just added. The output from this type of input is the same SingleCellExperiment, with the result added to the reducedDim slot under corralm.
  • a list of SingleCellExperiment does not require any specific arguments. The output is a list of the input SingleCellExperiments, with the result added to the reducedDim slot under corralm.
  • a list of matrices (or other matrix-like objects: matrix, Matrix, tibble, data.frame, etc.) also does not require specific arguments. The output will be a concatenated list of SVD output matrices (u,d,v) where v contains a concatenated vector of the embeddings for the cells
  • a list of SummarizedExperiments does not require specific arguments. The output is the same as for a list of matrices.
  • MultiAssayExperiment or ExperimentList does not require any specific arguments. corralm will identify the intersect of the rows, and use these to match the matrices. The output will be the same as for a list of matrices.

For purposes of illustration, we will walk through using corralm with a single SCE, and with a list of matrices.

3 corralm on a single SingleCellExperiment

First, setting up the data to demonstrate this:

colData(scmix_dat[[2]])$non_ERCC_percent <- NULL
# need to remove this column so the objects can be concatenated

scmix_sce <- SingleCellExperiment::cbind(scmix_dat[[1]],
                                         scmix_dat[[2]],
                                         scmix_dat[[3]])

Running corralm, and specifying the splitby argument: (Note that the default is for the counts matrix to be used. To change this default, use the whichmat argument.)

scmix_sce <- corralm(scmix_sce, splitby = 'Method')

Visualizing the results:

plot_embedding_sce(sce = scmix_sce, 
                   which_embedding = 'corralm', 
                   color_attr = 'Method', 
                   color_title = 'platform', 
                   ellipse_attr = 'cell_line', 
                   plot_title = 'corralm on scmix', 
                   saveplot = FALSE)

4 corralm on a list of matrices

Again, preparing the data to be in this input format:

scmix_matlist <- sce2matlist(sce = scmix_sce, 
                             splitby = 'Method', 
                             whichmat = 'counts')

# for plotting purposes later, while we're here
platforms <- colData(scmix_sce)$Method
cell_lines <- colData(scmix_sce)$cell_line

Running corralm and visualizing output… (the embeddings are in the v matrix because these data are matched by genes in the rows and have cells in the columns; if this were reversed, with cells in the rows and genes/features in the column, then the cell embeddings would instead be in the u matrix.)

scmix_corralm <- corralm(scmix_matlist)
scmix_corralm
## corralm output summary==========================================
##   Output "list" includes SVD output (u, d, v) & a table of the
##   dimensions of the input matrices (batch_sizes)
## Variance explained----------------------------------------------
##                           PC1  PC2  PC3  PC4  PC5  PC6  PC7  PC8
## percent.Var.explained    0.03 0.02 0.01 0.01 0.01 0.01 0.01 0.01
## cumulative.Var.explained 0.03 0.05 0.05 0.06 0.07 0.07 0.08 0.08
## 
## Dimensions of output elements-----------------------------------
##   Singular values (d) :: 30
##   Left singular vectors (u) :: 13575 30
##   Right singular vectors (v) :: 1401 30
##   See corralm help for details on each output element.
## 
## Original batches & sizes (in order)-----------------------------
##   10X :: 902
##   CELseq2 :: 274
##   Dropseq :: 225
## 
##   Use plot_embedding to visualize; see docs for details.
## ================================================================
plot_embedding(embedding = scmix_corralm$v, 
               plot_title = 'corralm on scmix', 
               color_vec = platforms, 
               color_title = 'platform', 
               ellipse_vec = cell_lines, 
               saveplot = FALSE)

As expected, we get the same results as above. (Note that in performing SVD, the direction of the axes doesn’t matter and they may be flipped between runs, as corral and corralm use irlba to perform fast approximation.)

5 Session information

sessionInfo()
## R version 4.0.3 (2020-10-10)
## Platform: x86_64-pc-linux-gnu (64-bit)
## Running under: Ubuntu 18.04.5 LTS
## 
## Matrix products: default
## BLAS:   /home/biocbuild/bbs-3.12-bioc/R/lib/libRblas.so
## LAPACK: /home/biocbuild/bbs-3.12-bioc/R/lib/libRlapack.so
## 
## locale:
##  [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C              
##  [3] LC_TIME=en_US.UTF-8        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] parallel  stats4    stats     graphics  grDevices utils     datasets 
## [8] methods   base     
## 
## other attached packages:
##  [1] MultiAssayExperiment_1.16.0 CellBench_1.6.0            
##  [3] tibble_3.0.4                magrittr_1.5               
##  [5] scater_1.18.0               DuoClustering2018_1.7.1    
##  [7] ggplot2_3.3.2               SingleCellExperiment_1.12.0
##  [9] SummarizedExperiment_1.20.0 Biobase_2.50.0             
## [11] GenomicRanges_1.42.0        GenomeInfoDb_1.26.0        
## [13] IRanges_2.24.0              S4Vectors_0.28.0           
## [15] BiocGenerics_0.36.0         MatrixGenerics_1.2.0       
## [17] matrixStats_0.57.0          corral_1.0.0               
## [19] gridExtra_2.3               BiocStyle_2.18.0           
## 
## loaded via a namespace (and not attached):
##  [1] Rtsne_0.15                    ggbeeswarm_0.6.0             
##  [3] colorspace_1.4-1              ellipsis_0.3.1               
##  [5] mclust_5.4.6                  scuttle_1.0.0                
##  [7] XVector_0.30.0                BiocNeighbors_1.8.0          
##  [9] dichromat_2.0-0               farver_2.0.3                 
## [11] bit64_4.0.5                   lubridate_1.7.9              
## [13] RSpectra_0.16-0               interactiveDisplayBase_1.28.0
## [15] AnnotationDbi_1.52.0          sparseMatrixStats_1.2.0      
## [17] knitr_1.30                    dbplyr_1.4.4                 
## [19] uwot_0.1.8                    shiny_1.5.0                  
## [21] BiocManager_1.30.10           mapproj_1.2.7                
## [23] compiler_4.0.3                httr_1.4.2                   
## [25] assertthat_0.2.1              Matrix_1.2-18                
## [27] fastmap_1.0.1                 later_1.1.0.1                
## [29] BiocSingular_1.6.0            htmltools_0.5.0              
## [31] tools_4.0.3                   rsvd_1.0.3                   
## [33] gtable_0.3.0                  glue_1.4.2                   
## [35] GenomeInfoDbData_1.2.4        reshape2_1.4.4               
## [37] dplyr_1.0.2                   ggthemes_4.2.0               
## [39] maps_3.3.0                    rappdirs_0.3.1               
## [41] Rcpp_1.0.5                    vctrs_0.3.4                  
## [43] ExperimentHub_1.16.0          DelayedMatrixStats_1.12.0    
## [45] xfun_0.18                     stringr_1.4.0                
## [47] beachmat_2.6.0                mime_0.9                     
## [49] lifecycle_0.2.0               irlba_2.3.3                  
## [51] AnnotationHub_2.22.0          zlibbioc_1.36.0              
## [53] scales_1.1.1                  promises_1.1.1               
## [55] yaml_2.2.1                    curl_4.3                     
## [57] memoise_1.1.0                 stringi_1.5.3                
## [59] RSQLite_2.2.1                 BiocVersion_3.12.0           
## [61] BiocParallel_1.24.0           pals_1.6                     
## [63] rlang_0.4.8                   pkgconfig_2.0.3              
## [65] bitops_1.0-6                  evaluate_0.14                
## [67] lattice_0.20-41               purrr_0.3.4                  
## [69] labeling_0.4.2                transport_0.12-2             
## [71] bit_4.0.4                     tidyselect_1.1.0             
## [73] plyr_1.8.6                    bookdown_0.21                
## [75] R6_2.4.1                      magick_2.5.0                 
## [77] generics_0.0.2                DelayedArray_0.16.0          
## [79] DBI_1.1.0                     pillar_1.4.6                 
## [81] withr_2.3.0                   RCurl_1.98-1.2               
## [83] crayon_1.3.4                  BiocFileCache_1.14.0         
## [85] rmarkdown_2.5                 viridis_0.5.1                
## [87] grid_4.0.3                    data.table_1.13.2            
## [89] FNN_1.1.3                     blob_1.2.1                   
## [91] digest_0.6.27                 xtable_1.8-4                 
## [93] tidyr_1.1.2                   httpuv_1.5.4                 
## [95] munsell_0.5.0                 beeswarm_0.2.3               
## [97] viridisLite_0.3.0             vipor_0.4.5

References

Tian, Luyi, Xueyi Dong, Saskia Freytag, Kim-Anh Lê Cao, Shian Su, Abolfazl JalalAbadi, Daniela Amann-Zalcenstein, et al. 2019. “Benchmarking Single Cell RNA-Sequencing Analysis Pipelines Using Mixture Control Experiments.” Nature Methods 16 (6):479–87. https://doi.org/10.1038/s41592-019-0425-8.