Dimensionality reduction and batch effect removal using NewWave

Installation

First of all we need to install NewWave:

if(!requireNamespace("BiocManager", quietly = TRUE))
    install.packages("BiocManager")
BiocManager::install("NewWave")
suppressPackageStartupMessages(
  {library(SingleCellExperiment)
library(splatter)
library(irlba)
library(Rtsne)
library(ggplot2)
library(mclust)
library(NewWave)}
)

Introduction

NewWave is a new package that assumes a Negative Binomial distributions for dimensionality reduction and batch effect removal. In order to reduce the memory consumption it uses a PSOCK cluster combined with the R package SharedObject that allow to share a matrix between different cores without memory duplication. Thanks to that we can massively parallelize the estimation process with huge benefit in terms of time consumption. We can reduce even more the time consumption using some minibatch approaches on the different steps of the optimization.

I am going to show how to use NewWave with example data generated with Splatter.

params <- newSplatParams()
N=500
set.seed(1234)
data <- splatSimulateGroups(params,batchCells=c(N/2,N/2),
                           group.prob = rep(0.1,10),
                           de.prob = 0.2,
                           verbose = FALSE) 

Now we have a dataset with 500 cells and 10000 genes, I will use only the 500 most variable genes. NewWave takes as input raw data, not normalized.

set.seed(12359)
hvg <- rowVars(counts(data))
names(hvg) <- rownames(counts(data))
data <- data[names(sort(hvg,decreasing=TRUE))[1:500],]

As you can see there is a variable called batch in the colData section.

colData(data)
#> DataFrame with 500 rows and 4 columns
#>                Cell       Batch    Group ExpLibSize
#>         <character> <character> <factor>  <numeric>
#> Cell1         Cell1      Batch1  Group7     75575.8
#> Cell2         Cell2      Batch1  Group4     46993.9
#> Cell3         Cell3      Batch1  Group9    103114.8
#> Cell4         Cell4      Batch1  Group10    56258.2
#> Cell5         Cell5      Batch1  Group9     85078.6
#> ...             ...         ...      ...        ...
#> Cell496     Cell496      Batch2   Group6    44449.7
#> Cell497     Cell497      Batch2   Group7    61676.9
#> Cell498     Cell498      Batch2   Group5    60314.4
#> Cell499     Cell499      Batch2   Group7    53471.0
#> Cell500     Cell500      Batch2   Group1    59732.2

IMPORTANT: For batch effecr removal the batch variable must be a factor

data$Batch <- as.factor(data$Batch)

We also have a variable called Group that represent the cell type labels.

We can see the how the cells are distributed between group and batch

pca <- prcomp_irlba(t(counts(data)),n=10)
plot_data <-data.frame(Rtsne(pca$x)$Y)
plot_data$batch <- data$Batch
plot_data$group <- data$Group
ggplot(plot_data, aes(x=X1,y=X2,col=group, shape=batch))+ geom_point()

There is a clear batch effect between the cells.

Let’s try to correct it.

NewWave

I am going to show different implementation and the suggested way to use them with the given hardware.

Some advise:

Standard usage

This is the way to insert the batch variable, in the same manner can be inserted other cell-related variable and if you need some gene related variable those can be inserted in V.

res <- newWave(data,X = "~Batch", K=10, verbose = TRUE)
#> Time of setup
#>    user  system elapsed 
#>   0.016   0.000   0.790 
#> Time of initialization
#>    user  system elapsed 
#>   0.065   0.004   1.126
#> Iteration 1
#> penalized log-likelihood = -1292344.1903114
#> Time of dispersion optimization
#>    user  system elapsed 
#>   1.043   0.012   1.056
#> after optimize dispersion = -1054951.93954604
#> Time of right optimization
#>    user  system elapsed 
#>   0.000   0.001  13.237
#> after right optimization= -1054227.79018598
#> after orthogonalization = -1054227.77725043
#> Time of left optimization
#>    user  system elapsed 
#>   0.001   0.000   6.462
#> after left optimization= -1053938.65721416
#> after orthogonalization = -1053938.65492759
#> Iteration 2
#> penalized log-likelihood = -1053938.65492759
#> Time of dispersion optimization
#>    user  system elapsed 
#>   1.062   0.000   1.062
#> after optimize dispersion = -1053932.57529797
#> Time of right optimization
#>    user  system elapsed 
#>   0.002   0.000  10.277
#> after right optimization= -1053902.28210775
#> after orthogonalization = -1053902.27992019
#> Time of left optimization
#>    user  system elapsed 
#>   0.002   0.000   6.756
#> after left optimization= -1053890.99949065
#> after orthogonalization = -1053890.99942395

In order to make it faster you can increase the number of cores using “children” parameter:

res2 <- newWave(data,X = "~Batch", K=10, verbose = TRUE, children=2)
#> Time of setup
#>    user  system elapsed 
#>   0.010   0.000   0.538 
#> Time of initialization
#>    user  system elapsed 
#>   0.049   0.016   0.646
#> Iteration 1
#> penalized log-likelihood = -1292344.19039543
#> Time of dispersion optimization
#>    user  system elapsed 
#>   0.628   0.008   0.636
#> after optimize dispersion = -1054951.94229329
#> Time of right optimization
#>    user  system elapsed 
#>   0.001   0.000   3.816
#> after right optimization= -1054227.79562878
#> after orthogonalization = -1054227.78266427
#> Time of left optimization
#>    user  system elapsed 
#>   0.002   0.000   4.255
#> after left optimization= -1053938.6410346
#> after orthogonalization = -1053938.6387364
#> Iteration 2
#> penalized log-likelihood = -1053938.6387364
#> Time of dispersion optimization
#>    user  system elapsed 
#>   1.120   0.048   1.408
#> after optimize dispersion = -1053932.55855733
#> Time of right optimization
#>    user  system elapsed 
#>   0.004   0.000   6.006
#> after right optimization= -1053902.2851144
#> after orthogonalization = -1053902.28291419
#> Time of left optimization
#>    user  system elapsed 
#>   0.001   0.004   6.555
#> after left optimization= -1053891.02039882
#> after orthogonalization = -1053891.02032975

Commonwise dispersion and minibatch approaches

If you do not have an high number of cores to run newWave this is the fastest way to run. The optimization process is done by three process itereated until convercence.

Each of these three steps can be accelerated using mini batch, the number of observation is settled with these parameters:

res3 <- newWave(data,X = "~Batch", verbose = TRUE,K=10, children=2,
                n_gene_disp = 100, n_gene_par = 100, n_cell_par = 100)
#> Time of setup
#>    user  system elapsed 
#>   0.016   0.007   0.719 
#> Time of initialization
#>    user  system elapsed 
#>   0.077   0.000   1.107
#> Iteration 1
#> penalized log-likelihood = -1292344.19039543
#> Time of dispersion optimization
#>    user  system elapsed 
#>   1.088   0.016   1.105
#> after optimize dispersion = -1054951.94163657
#> Time of right optimization
#>    user  system elapsed 
#>   0.000   0.002   3.738
#> after right optimization= -1054227.79506285
#> after orthogonalization = -1054227.78210077
#> Time of left optimization
#>    user  system elapsed 
#>   0.002   0.000   3.713
#> after left optimization= -1053938.72137455
#> after orthogonalization = -1053938.71905483
#> Iteration 2
#> penalized log-likelihood = -1053938.71905483
#> Time of dispersion optimization
#>    user  system elapsed 
#>   0.215   0.005   0.219
#> after optimize dispersion = -1053938.71905483
#> Time of right optimization
#>    user  system elapsed 
#>   0.001   0.000   0.595
#> after right optimization= -1053933.19851606
#> after orthogonalization = -1053933.19785001
#> Time of left optimization
#>    user  system elapsed 
#>   0.001   0.000   0.325
#> after left optimization= -1053932.92960398
#> after orthogonalization = -1053932.9295659

Genewise dispersion mini-batch

If you have a lot of core disposable or you want to estimate a genewise dispersion parameter this is the fastes configuration:

res3 <- newWave(data,X = "~Batch", verbose = TRUE,K=10, children=2,
                n_gene_par = 100, n_cell_par = 100, commondispersion = FALSE)
#> Time of setup
#>    user  system elapsed 
#>   0.009   0.000   0.358 
#> Time of initialization
#>    user  system elapsed 
#>   0.053   0.008   0.434
#> Iteration 1
#> penalized log-likelihood = -1292344.19029313
#> Time of dispersion optimization
#>    user  system elapsed 
#>   0.629   0.012   0.641
#> after optimize dispersion = -1054951.94072695
#> Time of right optimization
#>    user  system elapsed 
#>   0.001   0.000   3.663
#> after right optimization= -1054227.79440201
#> after orthogonalization = -1054227.78146228
#> Time of left optimization
#>    user  system elapsed 
#>   0.002   0.000   3.356
#> after left optimization= -1053938.66257551
#> after orthogonalization = -1053938.66029323
#> Iteration 2
#> penalized log-likelihood = -1053938.66029323
#> Time of dispersion optimization
#>    user  system elapsed 
#>   0.050   0.004   0.503
#> after optimize dispersion = -1049904.85253494
#> Time of right optimization
#>    user  system elapsed 
#>   0.000   0.001   0.563
#> after right optimization= -1049900.57922281
#> after orthogonalization = -1049900.57894078
#> Time of left optimization
#>    user  system elapsed 
#>   0.002   0.000   0.671
#> after left optimization= -1049868.33271448
#> after orthogonalization = -1049868.33201145
#> Iteration 3
#> penalized log-likelihood = -1049868.33201145
#> Time of dispersion optimization
#>    user  system elapsed 
#>   0.058   0.000   0.240
#> after optimize dispersion = -1049868.33805568
#> Time of right optimization
#>    user  system elapsed 
#>   0.001   0.000   0.597
#> after right optimization= -1049863.37706946
#> after orthogonalization = -1049863.37659005
#> Time of left optimization
#>    user  system elapsed 
#>   0.002   0.000   0.620
#> after left optimization= -1049837.03085144
#> after orthogonalization = -1049837.03030815

NB: do not use n_gene_disp in this case, it will slower the computation.

Now I can use the latent dimension rapresentation for visualization purpose:

latent <- reducedDim(res)

tsne_latent <- data.frame(Rtsne(latent)$Y)
tsne_latent$batch <- data$Batch
tsne_latent$group <- data$Group
ggplot(tsne_latent, aes(x=X1,y=X2,col=group, shape=batch))+ geom_point()

or for clustering:

cluster <- kmeans(latent, 10)

adjustedRandIndex(cluster$cluster, data$Group)
#> [1] 0.8591907

Session Information

sessionInfo()
#> R version 4.3.1 (2023-06-16)
#> 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] NewWave_1.12.0              mclust_6.0.0               
#>  [3] ggplot2_3.4.4               Rtsne_0.16                 
#>  [5] irlba_2.3.5.1               Matrix_1.6-1.1             
#>  [7] splatter_1.26.0             SingleCellExperiment_1.24.0
#>  [9] SummarizedExperiment_1.32.0 Biobase_2.62.0             
#> [11] GenomicRanges_1.54.0        GenomeInfoDb_1.38.0        
#> [13] IRanges_2.36.0              S4Vectors_0.40.0           
#> [15] BiocGenerics_0.48.0         MatrixGenerics_1.14.0      
#> [17] matrixStats_1.0.0          
#> 
#> loaded via a namespace (and not attached):
#>  [1] gtable_0.3.4            xfun_0.40               bslib_0.5.1            
#>  [4] lattice_0.22-5          vctrs_0.6.4             tools_4.3.1            
#>  [7] bitops_1.0-7            generics_0.1.3          parallel_4.3.1         
#> [10] tibble_3.2.1            fansi_1.0.5             pkgconfig_2.0.3        
#> [13] SharedObject_1.16.0     checkmate_2.2.0         lifecycle_1.0.3        
#> [16] GenomeInfoDbData_1.2.11 farver_2.1.1            compiler_4.3.1         
#> [19] munsell_0.5.0           codetools_0.2-19        htmltools_0.5.6.1      
#> [22] sass_0.4.7              RCurl_1.98-1.12         yaml_2.3.7             
#> [25] pillar_1.9.0            crayon_1.5.2            jquerylib_0.1.4        
#> [28] BiocParallel_1.36.0     DelayedArray_0.28.0     cachem_1.0.8           
#> [31] abind_1.4-5             rsvd_1.0.5              tidyselect_1.2.0       
#> [34] locfit_1.5-9.8          digest_0.6.33           BiocSingular_1.18.0    
#> [37] dplyr_1.1.3             labeling_0.4.3          fastmap_1.1.1          
#> [40] grid_4.3.1              colorspace_2.1-0        cli_3.6.1              
#> [43] SparseArray_1.2.0       magrittr_2.0.3          S4Arrays_1.2.0         
#> [46] utf8_1.2.4              withr_2.5.1             scales_1.2.1           
#> [49] backports_1.4.1         rmarkdown_2.25          XVector_0.42.0         
#> [52] beachmat_2.18.0         ScaledMatrix_1.10.0     evaluate_0.22          
#> [55] knitr_1.44              rlang_1.1.1             Rcpp_1.0.11            
#> [58] glue_1.6.2              jsonlite_1.8.7          R6_2.5.1               
#> [61] zlibbioc_1.48.0