Contents

1 Introduction

The bluster package provides a flexible and extensible framework for clustering in Bioconductor packages/workflows. At its core is the clusterRows() generic that controls dispatch to different clustering algorithms. We will demonstrate on some single-cell RNA sequencing data from the scRNAseq package; our aim is to cluster cells into cell populations based on their PC coordinates.

library(scRNAseq)
sce <- ZeiselBrainData()

# Trusting the authors' quality control, and going straight to normalization.
library(scuttle)
sce <- logNormCounts(sce)

# Feature selection based on highly variable genes.
library(scran)
dec <- modelGeneVar(sce)
hvgs <- getTopHVGs(dec, n=1000)

# Dimensionality reduction for work (PCA) and pleasure (t-SNE).
set.seed(1000)
library(scater)
sce <- runPCA(sce, ncomponents=20, subset_row=hvgs)
sce <- runUMAP(sce, dimred="PCA")

mat <- reducedDim(sce, "PCA")
dim(mat)
## [1] 3005   20

2 Based on distance matrices

2.1 Hierarchical clustering

Our first algorithm is good old hierarchical clustering, as implemented using hclust() from the stats package. This automatically sets the cut height to half the dendrogram height.

library(bluster)
hclust.out <- clusterRows(mat, HclustParam())
plotUMAP(sce, colour_by=I(hclust.out))

Advanced users can achieve greater control of the procedure by passing more parameters to the HclustParam() constructor. Here, we use Ward’s criterion for the agglomeration with a dynamic tree cut from the dynamicTreeCut package.

hp2 <- HclustParam(method="ward.D2", cut.dynamic=TRUE)
hp2
## class: HclustParam
## metric: [default]
## method: ward.D2
## cut.fun: cutreeDynamic
## cut.params(0):
## dist.fun: stats::dist
## clust.fun: stats::hclust
hclust.out <- clusterRows(mat, hp2)
plotUMAP(sce, colour_by=I(hclust.out))

2.2 Affinity propagation

Another option is to use affinity propagation, as implemented using the apcluster package. Here, messages are passed between observations to decide on a set of exemplars, each of which form the center of a cluster.

This is not particularly fast as it involves the calculation of a square similarity matrix between all pairs of observations. So, we’ll speed it up by taking analyzing a subset of the data:

set.seed(1000)
sub <- sce[,sample(ncol(sce), 200)]
ap.out <- clusterRows(reducedDim(sub), AffinityParam())
plotUMAP(sub, colour_by=I(ap.out))

The q parameter is probably the most important and determines the resolution of the clustering. This can be set to any value below 1, with smaller (possibly negative) values corresponding to coarser clusters.

set.seed(1000)
ap.out <- clusterRows(reducedDim(sub), AffinityParam(q=-2))
plotUMAP(sub, colour_by=I(ap.out))

3 With a fixed number of clusters

3.1 \(k\)-means clustering

A classic algorithm is \(k\)-means clustering, as implemented using the kmeans() function. This requires us to pass in the number of clusters, either as a number:

set.seed(100)
kmeans.out <- clusterRows(mat, KmeansParam(10))
plotUMAP(sce, colour_by=I(kmeans.out))

Or as a function of the number of observations, which is useful for vector quantization purposes:

kp <- KmeansParam(sqrt)
kp
## class: KmeansParam
## centers: variable
## iter.max: 10
## nstart: 1
## algorithm: Hartigan-Wong
set.seed(100)
kmeans.out <- clusterRows(mat, kp)
plotUMAP(sce, colour_by=I(kmeans.out))

A variant of this approach is mini-batch \(k\)-means, as implemented in the mbkmeans package. This uses mini-batching to approximate the full \(k\)-means algorithm for greater speed.

set.seed(100)
mbkmeans.out <- clusterRows(mat, MbkmeansParam(20))
plotUMAP(sce, colour_by=I(mbkmeans.out))

3.2 Self-organizing maps

We can also use self-organizing maps (SOMs) from the kohonen package. This allocates observations to nodes of a simple neural network; each node is then treated as a cluster.

set.seed(1000)
som.out <- clusterRows(mat, SomParam(20))
plotUMAP(sce, colour_by=I(som.out))

The key feature of SOMs is that they apply additional topological constraints on the relative positions of the nodes. This allows us to naturally determine the relationships between clusters based on the proximity of the nodes.

set.seed(1000)
som.out <- clusterRows(mat, SomParam(100), full=TRUE)

par(mfrow=c(1,2))
plot(som.out$objects$som, "counts")
grid <- som.out$objects$som$grid$pts
text(grid[,1], grid[,2], seq_len(nrow(grid)))

4 Graph-based clustering

We can build shared or direct nearest neighbor graphs and perform community detection with igraph. Here, the number of neighbors k controls the resolution of the clusters.

set.seed(101) # just in case there are ties.
graph.out <- clusterRows(mat, NNGraphParam(k=10))
plotUMAP(sce, colour_by=I(graph.out))

It is again straightforward to tune the procedure by passing more arguments such as the community detection algorithm to use.

set.seed(101) # just in case there are ties.
np <- NNGraphParam(k=20, cluster.fun="louvain")
np
## class: SNNGraphParam
## k: 20
## type: rank
## BNPARAM: KmknnParam
## BPPARAM: SerialParam
## cluster.fun: louvain
## cluster.args(0):
graph.out <- clusterRows(mat, np)
plotUMAP(sce, colour_by=I(graph.out))

5 Density-based clustering

We also implement a version of the DBSCAN algorithm for density-based clustering. This focuses on identifying masses of continuous density.

dbscan.out <- clusterRows(mat, DbscanParam())
plotUMAP(sce, colour_by=I(dbscan.out))

Unlike the other methods, it will consider certain points to be noise and discard them from the output.

summary(is.na(dbscan.out))
##    Mode   FALSE    TRUE 
## logical    1789    1216

The resolution of the clustering can be modified by tinkering with the core.prop. Smaller values will generally result in smaller clusters as well as more noise points.

dbscan.out <- clusterRows(mat, DbscanParam(core.prop=0.1))
summary(is.na(dbscan.out))
##    Mode   FALSE    TRUE 
## logical     565    2440

6 Two-phase clustering

We also provide a wrapper for a hybrid “two-step” approach for handling larger datasets. Here, a fast agglomeration is performed with \(k\)-means to compact the data, followed by a slower graph-based clustering step to obtain interpretable meta-clusters. (This dataset is not, by and large, big enough for this approach to work particularly well.)

set.seed(100) # for the k-means
two.out <- clusterRows(mat, TwoStepParam())
plotUMAP(sce, colour_by=I(two.out))

Each step is itself parametrized by BlusterParam objects, so it is possible to tune them individually:

twop <- TwoStepParam(second=NNGraphParam(k=5))
twop
## class: TwoStepParam
## first:
##   class: KmeansParam
##   centers: variable
##   iter.max: 10
##   nstart: 1
##   algorithm: Hartigan-Wong
## second:
##   class: SNNGraphParam
##   k: 5
##   type: rank
##   BNPARAM: KmknnParam
##   BPPARAM: SerialParam
##   cluster.fun: walktrap
##   cluster.args(0):
set.seed(100) # for the k-means
two.out <- clusterRows(mat, TwoStepParam())
plotUMAP(sce, colour_by=I(two.out))

7 Obtaining full clustering statistics

Sometimes the vector of cluster assignments is not enough. We can obtain more information about the clustering procedure by setting full=TRUE in clusterRows(). For example, we could obtain the actual graph generated by NNGraphParam():

nn.out <- clusterRows(mat, NNGraphParam(), full=TRUE)
nn.out$objects$graph
## IGRAPH 5a34936 U-W- 3005 87028 -- 
## + attr: weight (e/n)
## + edges from 5a34936:
##  [1]  1-- 2  1-- 3  2-- 3  1-- 4  2-- 4  3-- 4  4-- 5  1-- 5  2-- 5  3-- 5
## [11]  3-- 6  4-- 6  5-- 6  2-- 6  1-- 6  1-- 7  5-- 7  6-- 7  4-- 7  2-- 7
## [21]  3-- 7  3-- 8  6-- 8  4-- 8  7-- 8  1-- 8  2-- 8  5-- 8  5-- 9  7-- 9
## [31]  1-- 9  4-- 9  2-- 9  6-- 9  3-- 9  8-- 9  9--10  1--10  5--10  3--10
## [41]  4--10 10--11  9--11  3--11  1--11  5--11  2--13  5--13  6--13  7--13
## [51] 12--13  8--13 12--14 13--14 12--15 13--15 14--15  2--15  5--15  6--15
## [61]  7--15 12--16 15--16 13--16 14--16 14--17 15--17 16--17 12--17 13--17
## [71] 15--18 16--18 12--18 14--18 13--18 17--18 19--20 12--20 16--20 15--20
## + ... omitted several edges

The assignment vector is still reported in the clusters entry:

table(nn.out$clusters)
## 
##   1   2   3   4   5   6   7   8   9  10  11  12  13  14  15  16  17  18  19 
## 166 216 256 543 218  89 583  92 123 186  91  42  94  64  58  58  60  35  31

8 Further comments

clusterRows() enables users or developers to easily switch between clustering algorithms by changing a single argument. Indeed, by passing the BlusterParam object across functions, we can ensure that the same algorithm is used through a workflow. It is also helpful for package functions as it provides diverse functionality without compromising a clean function signature. However, the true power of this framework lies in its extensibility. Anyone can write a clusterRows() method for a new clustering algorithm with an associated BlusterParam subclass, and that procedure is immediately compatible with any workflow or function that was already using clusterRows().

Session information

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_US.UTF-8        LC_COLLATE=en_US.UTF-8    
##  [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              scater_1.31.0              
##  [3] ggplot2_3.4.4               scran_1.31.0               
##  [5] scuttle_1.13.0              scRNAseq_2.15.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] BiocStyle_2.31.0           
## 
## loaded via a namespace (and not attached):
##   [1] later_1.3.1                   BiocIO_1.13.0                
##   [3] bitops_1.0-7                  filelock_1.0.2               
##   [5] tibble_3.2.1                  XML_3.99-0.14                
##   [7] lifecycle_1.0.3               edgeR_4.1.0                  
##   [9] doParallel_1.0.17             lattice_0.22-5               
##  [11] ensembldb_2.27.0              magrittr_2.0.3               
##  [13] limma_3.59.0                  sass_0.4.7                   
##  [15] rmarkdown_2.25                jquerylib_0.1.4              
##  [17] yaml_2.3.7                    metapod_1.11.0               
##  [19] httpuv_1.6.12                 cowplot_1.1.1                
##  [21] DBI_1.1.3                     abind_1.4-5                  
##  [23] zlibbioc_1.49.0               purrr_1.0.2                  
##  [25] AnnotationFilter_1.27.0       RCurl_1.98-1.12              
##  [27] rappdirs_0.3.3                GenomeInfoDbData_1.2.11      
##  [29] ggrepel_0.9.4                 irlba_2.3.5.1                
##  [31] kohonen_3.0.12                dqrng_0.3.1                  
##  [33] DelayedMatrixStats_1.25.0     codetools_0.2-19             
##  [35] DelayedArray_0.29.0           xml2_1.3.5                   
##  [37] tidyselect_1.2.0              farver_2.1.1                 
##  [39] gmp_0.7-2                     ScaledMatrix_1.11.0          
##  [41] viridis_0.6.4                 BiocFileCache_2.11.0         
##  [43] dynamicTreeCut_1.63-1         GenomicAlignments_1.39.0     
##  [45] jsonlite_1.8.7                BiocNeighbors_1.21.0         
##  [47] ellipsis_0.3.2                iterators_1.0.14             
##  [49] foreach_1.5.2                 tools_4.4.0                  
##  [51] progress_1.2.2                Rcpp_1.0.11                  
##  [53] glue_1.6.2                    gridExtra_2.3                
##  [55] SparseArray_1.3.0             xfun_0.40                    
##  [57] dplyr_1.1.3                   withr_2.5.1                  
##  [59] BiocManager_1.30.22           fastmap_1.1.1                
##  [61] fansi_1.0.5                   digest_0.6.33                
##  [63] rsvd_1.0.5                    R6_2.5.1                     
##  [65] mime_0.12                     colorspace_2.1-0             
##  [67] biomaRt_2.59.0                RSQLite_2.3.1                
##  [69] utf8_1.2.4                    generics_0.1.3               
##  [71] rtracklayer_1.63.0            FNN_1.1.3.2                  
##  [73] prettyunits_1.2.0             httr_1.4.7                   
##  [75] S4Arrays_1.3.0                uwot_0.1.16                  
##  [77] pkgconfig_2.0.3               gtable_0.3.4                 
##  [79] blob_1.2.4                    XVector_0.43.0               
##  [81] htmltools_0.5.6.1             bookdown_0.36                
##  [83] ProtGenerics_1.35.0           scales_1.2.1                 
##  [85] ClusterR_1.3.1                png_0.1-8                    
##  [87] knitr_1.44                    rjson_0.2.21                 
##  [89] curl_5.1.0                    cachem_1.0.8                 
##  [91] stringr_1.5.0                 BiocVersion_3.19.0           
##  [93] parallel_4.4.0                vipor_0.4.5                  
##  [95] AnnotationDbi_1.65.0          restfulr_0.0.15              
##  [97] pillar_1.9.0                  grid_4.4.0                   
##  [99] vctrs_0.6.4                   promises_1.2.1               
## [101] BiocSingular_1.19.0           dbplyr_2.3.4                 
## [103] beachmat_2.19.0               xtable_1.8-4                 
## [105] cluster_2.1.4                 beeswarm_0.4.0               
## [107] evaluate_0.22                 GenomicFeatures_1.55.0       
## [109] magick_2.8.1                  cli_3.6.1                    
## [111] locfit_1.5-9.8                compiler_4.4.0               
## [113] Rsamtools_2.19.0              rlang_1.1.1                  
## [115] crayon_1.5.2                  mbkmeans_1.19.0              
## [117] labeling_0.4.3                ggbeeswarm_0.7.2             
## [119] stringi_1.7.12                viridisLite_0.4.2            
## [121] BiocParallel_1.37.0           munsell_0.5.0                
## [123] Biostrings_2.71.0             lazyeval_0.2.2               
## [125] Matrix_1.6-1.1                ExperimentHub_2.11.0         
## [127] benchmarkme_1.0.8             hms_1.1.3                    
## [129] sparseMatrixStats_1.15.0      bit64_4.0.5                  
## [131] KEGGREST_1.43.0               statmod_1.5.0                
## [133] shiny_1.7.5.1                 interactiveDisplayBase_1.41.0
## [135] apcluster_1.4.11              AnnotationHub_3.11.0         
## [137] igraph_1.5.1                  memoise_2.0.1                
## [139] bslib_0.5.1                   benchmarkmeData_1.0.4        
## [141] bit_4.0.5