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  Group10    43995.3
#> Cell2         Cell2      Batch1  Group6     60440.6
#> Cell3         Cell3      Batch1  Group9     47173.9
#> Cell4         Cell4      Batch1  Group9     71811.4
#> Cell5         Cell5      Batch1  Group6     62079.4
#> ...             ...         ...      ...        ...
#> Cell496     Cell496      Batch2  Group6     54464.1
#> Cell497     Cell497      Batch2  Group10    61267.4
#> Cell498     Cell498      Batch2  Group5     82106.8
#> Cell499     Cell499      Batch2  Group5     51716.7
#> Cell500     Cell500      Batch2  Group2     60483.1

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.018   0.004   0.754 
#> Time of initialization
#>    user  system elapsed 
#>   0.054   0.004   1.020
#> Iteration 1
#> penalized log-likelihood = -1292896.44183986
#> Time of dispersion optimization
#>    user  system elapsed 
#>   0.819   0.008   0.827
#> after optimize dispersion = -1054964.24881716
#> Time of right optimization
#>    user  system elapsed 
#>   0.002   0.000  12.404
#> after right optimization= -1054254.51100366
#> after orthogonalization = -1054254.4933057
#> Time of left optimization
#>    user  system elapsed 
#>   0.003   0.001  10.605
#> after left optimization= -1053880.23305442
#> after orthogonalization = -1053880.22492896
#> Iteration 2
#> penalized log-likelihood = -1053880.22492896
#> Time of dispersion optimization
#>    user  system elapsed 
#>   0.760   0.016   0.777
#> after optimize dispersion = -1053872.71200754
#> Time of right optimization
#>    user  system elapsed 
#>   0.001   0.000   6.504
#> after right optimization= -1053825.02895547
#> after orthogonalization = -1053825.02205063
#> Time of left optimization
#>    user  system elapsed 
#>   0.002   0.000   9.317
#> after left optimization= -1053805.28163312
#> after orthogonalization = -1053805.2811165

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.013   0.004   0.591 
#> Time of initialization
#>    user  system elapsed 
#>   0.058   0.000   0.614
#> Iteration 1
#> penalized log-likelihood = -1292896.44214231
#> Time of dispersion optimization
#>    user  system elapsed 
#>   0.688   0.012   0.700
#> after optimize dispersion = -1054964.24932794
#> Time of right optimization
#>    user  system elapsed 
#>   0.001   0.000   3.809
#> after right optimization= -1054254.5089685
#> after orthogonalization = -1054254.49127817
#> Time of left optimization
#>    user  system elapsed 
#>   0.001   0.000   3.333
#> after left optimization= -1053880.23565074
#> after orthogonalization = -1053880.22752952
#> Iteration 2
#> penalized log-likelihood = -1053880.22752952
#> Time of dispersion optimization
#>    user  system elapsed 
#>   0.679   0.000   0.678
#> after optimize dispersion = -1053872.71526218
#> Time of right optimization
#>    user  system elapsed 
#>   0.002   0.000   4.589
#> after right optimization= -1053825.05998579
#> after orthogonalization = -1053825.0531462
#> Time of left optimization
#>    user  system elapsed 
#>   0.000   0.004   5.060
#> after left optimization= -1053805.27233937
#> after orthogonalization = -1053805.27183734

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.018   0.000   0.569 
#> Time of initialization
#>    user  system elapsed 
#>   0.082   0.004   0.759
#> Iteration 1
#> penalized log-likelihood = -1292896.44194844
#> Time of dispersion optimization
#>    user  system elapsed 
#>   1.131   0.024   1.158
#> after optimize dispersion = -1054964.24947666
#> Time of right optimization
#>    user  system elapsed 
#>   0.000   0.003   7.057
#> after right optimization= -1054254.51673188
#> after orthogonalization = -1054254.49903161
#> Time of left optimization
#>    user  system elapsed 
#>   0.002   0.000   3.710
#> after left optimization= -1053880.23473625
#> after orthogonalization = -1053880.22664259
#> Iteration 2
#> penalized log-likelihood = -1053880.22664259
#> Time of dispersion optimization
#>    user  system elapsed 
#>   0.254   0.024   0.278
#> after optimize dispersion = -1053872.81658037
#> Time of right optimization
#>    user  system elapsed 
#>   0.003   0.000   0.748
#> after right optimization= -1053862.47156028
#> after orthogonalization = -1053862.4693018
#> Time of left optimization
#>    user  system elapsed 
#>   0.001   0.000   0.467
#> after left optimization= -1053861.95246228
#> after orthogonalization = -1053861.95240343

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.010   0.000   0.364 
#> Time of initialization
#>    user  system elapsed 
#>   0.046   0.000   0.388
#> Iteration 1
#> penalized log-likelihood = -1292896.44191432
#> Time of dispersion optimization
#>    user  system elapsed 
#>   0.686   0.012   0.698
#> after optimize dispersion = -1054964.24672011
#> Time of right optimization
#>    user  system elapsed 
#>   0.002   0.000   3.649
#> after right optimization= -1054254.50933107
#> after orthogonalization = -1054254.49163584
#> Time of left optimization
#>    user  system elapsed 
#>   0.002   0.000   3.395
#> after left optimization= -1053880.23282057
#> after orthogonalization = -1053880.22469366
#> Iteration 2
#> penalized log-likelihood = -1053880.22469366
#> Time of dispersion optimization
#>    user  system elapsed 
#>   0.057   0.020   0.717
#> after optimize dispersion = -1049712.51381138
#> Time of right optimization
#>    user  system elapsed 
#>   0.001   0.000   0.618
#> after right optimization= -1049704.17223711
#> after orthogonalization = -1049704.17097955
#> Time of left optimization
#>    user  system elapsed 
#>   0.001   0.000   0.677
#> after left optimization= -1049668.76638557
#> after orthogonalization = -1049668.765934
#> Iteration 3
#> penalized log-likelihood = -1049668.765934
#> Time of dispersion optimization
#>    user  system elapsed 
#>   0.052   0.000   0.220
#> after optimize dispersion = -1049668.78788314
#> Time of right optimization
#>    user  system elapsed 
#>   0.001   0.000   0.611
#> after right optimization= -1049662.8053804
#> after orthogonalization = -1049662.80517943
#> Time of left optimization
#>    user  system elapsed 
#>   0.001   0.000   1.025
#> after left optimization= -1049631.93576957
#> after orthogonalization = -1049631.93517441

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] 1

Session Information

sessionInfo()
#> R version 4.4.0 beta (2024-04-15 r86425)
#> 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] NewWave_1.13.0              mclust_6.1                 
#>  [3] ggplot2_3.5.0               Rtsne_0.17                 
#>  [5] irlba_2.3.5.1               Matrix_1.7-0               
#>  [7] splatter_1.27.1             SingleCellExperiment_1.25.1
#>  [9] SummarizedExperiment_1.33.3 Biobase_2.63.1             
#> [11] GenomicRanges_1.55.4        GenomeInfoDb_1.39.14       
#> [13] IRanges_2.37.1              S4Vectors_0.41.6           
#> [15] BiocGenerics_0.49.1         MatrixGenerics_1.15.1      
#> [17] matrixStats_1.3.0          
#> 
#> loaded via a namespace (and not attached):
#>  [1] gtable_0.3.4            xfun_0.43               bslib_0.7.0            
#>  [4] lattice_0.22-6          vctrs_0.6.5             tools_4.4.0            
#>  [7] generics_0.1.3          parallel_4.4.0          tibble_3.2.1           
#> [10] fansi_1.0.6             highr_0.10              pkgconfig_2.0.3        
#> [13] SharedObject_1.17.0     checkmate_2.3.1         lifecycle_1.0.4        
#> [16] GenomeInfoDbData_1.2.12 farver_2.1.1            compiler_4.4.0         
#> [19] munsell_0.5.1           codetools_0.2-20        htmltools_0.5.8.1      
#> [22] sass_0.4.9              yaml_2.3.8              pillar_1.9.0           
#> [25] crayon_1.5.2            jquerylib_0.1.4         BiocParallel_1.37.1    
#> [28] DelayedArray_0.29.9     cachem_1.0.8            abind_1.4-5            
#> [31] rsvd_1.0.5              tidyselect_1.2.1        locfit_1.5-9.9         
#> [34] digest_0.6.35           BiocSingular_1.19.0     dplyr_1.1.4            
#> [37] labeling_0.4.3          fastmap_1.1.1           grid_4.4.0             
#> [40] colorspace_2.1-0        cli_3.6.2               SparseArray_1.3.5      
#> [43] magrittr_2.0.3          S4Arrays_1.3.7          utf8_1.2.4             
#> [46] withr_3.0.0             UCSC.utils_0.99.7       scales_1.3.0           
#> [49] backports_1.4.1         rmarkdown_2.26          XVector_0.43.1         
#> [52] httr_1.4.7              beachmat_2.19.4         ScaledMatrix_1.11.1    
#> [55] evaluate_0.23           knitr_1.46              rlang_1.1.3            
#> [58] Rcpp_1.0.12             glue_1.7.0              jsonlite_1.8.8         
#> [61] R6_2.5.1                zlibbioc_1.49.3