Clustering

Seurat Toolkit

Grouping individual cells with similar gene expression profiles to uncover distinct cell populations and their functional characteristics.
Authors

Åsa Björklund

Paulo Czarnewski

Susanne Reinsbach

Roy Francis

Published

06-Feb-2024

Note

Code chunks run R commands unless otherwise specified.

In this tutorial, we will continue the analysis of the integrated dataset. We will use the integrated PCA to perform the clustering. First, we will construct a \(k\)-nearest neighbor graph in order to perform a clustering on the graph. We will also show how to perform hierarchical clustering and k-means clustering on PCA space.

Let’s first load all necessary libraries and also the integrated dataset from the previous step.

suppressPackageStartupMessages({
    library(Seurat)
    library(patchwork)
    library(ggplot2)
    library(pheatmap)
    library(clustree)
})
# download pre-computed data if missing or long compute
fetch_data <- TRUE

# url for source and intermediate data
path_data <- "https://export.uppmax.uu.se/naiss2023-23-3/workshops/workshop-scrnaseq"
path_file <- "data/covid/results/seurat_covid_qc_dr_int.rds"
if (!dir.exists(dirname(path_file))) dir.create(dirname(path_file), recursive = TRUE)
if (fetch_data && !file.exists(path_file)) download.file(url = file.path(path_data, "covid/results/seurat_covid_qc_dr_int.rds"), destfile = path_file)
alldata <- readRDS(path_file)
print(names(alldata@reductions))
[1] "pca"            "umap"           "tsne"           "umap_raw"      
[5] "pca_harmony"    "harmony"        "umap_harmony"   "scanorama"     
[9] "umap_scanorama"

1 Graph clustering

The procedure of clustering on a Graph can be generalized as 3 main steps:
- Build a kNN graph from the data.
- Prune spurious connections from kNN graph (optional step). This is a SNN graph.
- Find groups of cells that maximizes the connections within the group compared other groups.

1.1 Building kNN / SNN graph

The first step into graph clustering is to construct a k-nn graph, in case you don’t have one. For this, we will use the PCA space. Thus, as done for dimensionality reduction, we will use ony the top N PCA dimensions for this purpose (the same used for computing UMAP / tSNE).

As we can see above, the Seurat function FindNeighbors() already computes both the KNN and SNN graphs, in which we can control the minimal percentage of shared neighbours to be kept. See ?FindNeighbors for additional options.

# check if CCA is still the active assay
alldata@active.assay
[1] "RNA"
# set the correct assay.
alldata@active.assay <- "CCA"

alldata <- FindNeighbors(alldata, dims = 1:30, k.param = 60, prune.SNN = 1 / 15)

# check the names for graphs in the object.
names(alldata@graphs)
[1] "CCA_nn"  "CCA_snn"

We can take a look at the kNN and SNN graphs. The kNN graph is a matrix where every connection between cells is represented as \(1\)s. This is called a unweighted graph (default in Seurat). In the SNN graph on the other hand, some cell connections have more importance than others, and the graph scales from \(0\) to a maximum distance (in this case \(1\)). Usually, the smaller the distance, the closer two points are, and stronger is their connection. This is called a weighted graph. Both weighted and unweighted graphs are suitable for clustering, but clustering on unweighted graphs is faster for large datasets (> 100k cells).

pheatmap(alldata@graphs$CCA_nn[1:200, 1:200],
    col = c("white", "black"), border_color = "grey90", main = "KNN graph",
    legend = F, cluster_rows = F, cluster_cols = F, fontsize = 2
)

pheatmap(alldata@graphs$CCA_snn[1:200, 1:200],
    col = colorRampPalette(c("white", "yellow", "red"))(100),
    border_color = "grey90", main = "SNN graph",
    legend = F, cluster_rows = F, cluster_cols = F, fontsize = 2
)

1.2 Clustering on a graph

Once the graph is built, we can now perform graph clustering. The clustering is done respective to a resolution which can be interpreted as how coarse you want your cluster to be. Higher resolution means higher number of clusters.

In Seurat, the function FindClusters() will do a graph-based clustering using “Louvain” algorithim by default (algorithm = 1). To use the leiden algorithm, you need to set it to algorithm = 4. See ?FindClusters for additional options.

By default it will run clustering on the SNN graph we created in the previous step, but you can also specify different graphs for clustering with graph.name.

# Clustering with louvain (algorithm 1) and a few different resolutions
for (res in c(0.1, 0.25, .5, 1, 1.5, 2)) {
    alldata <- FindClusters(alldata, graph.name = "CCA_snn", resolution = res, algorithm = 1)
}

# each time you run clustering, the data is stored in meta data columns:
# seurat_clusters - lastest results only
# CCA_snn_res.XX - for each different resolution you test.
wrap_plots(
    DimPlot(alldata, reduction = "umap", group.by = "CCA_snn_res.0.5") + ggtitle("louvain_0.5"),
    DimPlot(alldata, reduction = "umap", group.by = "CCA_snn_res.1") + ggtitle("louvain_1"),
    DimPlot(alldata, reduction = "umap", group.by = "CCA_snn_res.2") + ggtitle("louvain_2"),
    ncol = 3
)

We can now use the clustree package to visualize how cells are distributed between clusters depending on resolution.

suppressPackageStartupMessages(library(clustree))
clustree(alldata@meta.data, prefix = "CCA_snn_res.")

2 K-means clustering

K-means is a generic clustering algorithm that has been used in many application areas. In R, it can be applied via the kmeans() function. Typically, it is applied to a reduced dimension representation of the expression data (most often PCA, because of the interpretability of the low-dimensional distances). We need to define the number of clusters in advance. Since the results depend on the initialization of the cluster centers, it is typically recommended to run K-means with multiple starting configurations (via the nstart argument).

for (k in c(5, 7, 10, 12, 15, 17, 20)) {
    alldata@meta.data[, paste0("kmeans_", k)] <- kmeans(x = alldata@reductions[["pca"]]@cell.embeddings, centers = k, nstart = 100)$cluster
}

wrap_plots(
    DimPlot(alldata, reduction = "umap", group.by = "kmeans_5") + ggtitle("kmeans_5"),
    DimPlot(alldata, reduction = "umap", group.by = "kmeans_10") + ggtitle("kmeans_10"),
    DimPlot(alldata, reduction = "umap", group.by = "kmeans_15") + ggtitle("kmeans_15"),
    ncol = 3
) + plot_layout(guides = "collect")

clustree(alldata@meta.data, prefix = "kmeans_")

3 Hierarchical clustering

3.1 Defining distance between cells

The base R stats package already contains a function dist that calculates distances between all pairs of samples. Since we want to compute distances between samples, rather than among genes, we need to transpose the data before applying it to the dist function. This can be done by simply adding the transpose function t() to the data. The distance methods available in dist are: ‘euclidean’, ‘maximum’, ‘manhattan’, ‘canberra’, ‘binary’ or ‘minkowski’.

d <- dist(alldata@reductions[["pca"]]@cell.embeddings, method = "euclidean")

As you might have realized, correlation is not a method implemented in the dist() function. However, we can create our own distances and transform them to a distance object. We can first compute sample correlations using the cor function.
As you already know, correlation range from -1 to 1, where 1 indicates that two samples are closest, -1 indicates that two samples are the furthest and 0 is somewhat in between. This, however, creates a problem in defining distances because a distance of 0 indicates that two samples are closest, 1 indicates that two samples are the furthest and distance of -1 is not meaningful. We thus need to transform the correlations to a positive scale (a.k.a. adjacency):
\[adj = \frac{1- cor}{2}\]
Once we transformed the correlations to a 0-1 scale, we can simply convert it to a distance object using as.dist() function. The transformation does not need to have a maximum of 1, but it is more intuitive to have it at 1, rather than at any other number.

# Compute sample correlations
sample_cor <- cor(Matrix::t(alldata@reductions[["pca"]]@cell.embeddings))

# Transform the scale from correlations
sample_cor <- (1 - sample_cor) / 2

# Convert it to a distance object
d2 <- as.dist(sample_cor)

3.2 Clustering cells

After having calculated the distances between samples, we can now proceed with the hierarchical clustering per-se. We will use the function hclust() for this purpose, in which we can simply run it with the distance objects created above. The methods available are: ‘ward.D’, ‘ward.D2’, ‘single’, ‘complete’, ‘average’, ‘mcquitty’, ‘median’ or ‘centroid’. It is possible to plot the dendrogram for all cells, but this is very time consuming and we will omit for this tutorial.

# euclidean
h_euclidean <- hclust(d, method = "ward.D2")

# correlation
h_correlation <- hclust(d2, method = "ward.D2")

Once your dendrogram is created, the next step is to define which samples belong to a particular cluster. After identifying the dendrogram, we can now literally cut the tree at a fixed threshold (with cutree) at different levels to define the clusters. We can either define the number of clusters or decide on a height. We can simply try different clustering levels.

# euclidean distance
alldata$hc_euclidean_5 <- cutree(h_euclidean, k = 5)
alldata$hc_euclidean_10 <- cutree(h_euclidean, k = 10)
alldata$hc_euclidean_15 <- cutree(h_euclidean, k = 15)

# correlation distance
alldata$hc_corelation_5 <- cutree(h_correlation, k = 5)
alldata$hc_corelation_10 <- cutree(h_correlation, k = 10)
alldata$hc_corelation_15 <- cutree(h_correlation, k = 15)

wrap_plots(
    DimPlot(alldata, reduction = "umap", group.by = "hc_euclidean_5") + ggtitle("hc_euc_5"),
    DimPlot(alldata, reduction = "umap", group.by = "hc_euclidean_10") + ggtitle("hc_euc_10"),
    DimPlot(alldata, reduction = "umap", group.by = "hc_euclidean_15") + ggtitle("hc_euc_15"),
    DimPlot(alldata, reduction = "umap", group.by = "hc_corelation_5") + ggtitle("hc_cor_5"),
    DimPlot(alldata, reduction = "umap", group.by = "hc_corelation_10") + ggtitle("hc_cor_10"),
    DimPlot(alldata, reduction = "umap", group.by = "hc_corelation_15") + ggtitle("hc_cor_15"),
    ncol = 3
) + plot_layout()

Finally, lets save the clustered data for further analysis.

saveRDS(alldata, "data/covid/results/seurat_covid_qc_dr_int_cl.rds")

4 Distribution of clusters

Now, we can select one of our clustering methods and compare the proportion of samples across the clusters.

Select the CCA_snn_res.0.5 and plot proportion of samples per cluster and also proportion covid vs ctrl.

p1 <- ggplot(alldata@meta.data, aes(x = CCA_snn_res.0.5, fill = orig.ident)) +
    geom_bar(position = "fill")
p2 <- ggplot(alldata@meta.data, aes(x = CCA_snn_res.0.5, fill = type)) +
    geom_bar(position = "fill")

p1 + p2

In this case we have quite good representation of each sample in each cluster. But there are clearly some biases with more cells from one sample in some clusters and also more covid cells in some of the clusters.

We can also plot it in the other direction, the proportion of each cluster per sample.

ggplot(alldata@meta.data, aes(x = orig.ident, fill = CCA_snn_res.0.5)) +
    geom_bar(position = "fill")

Discuss

By now you should know how to plot different features onto your data. Take the QC metrics that were calculated in the first exercise, that should be stored in your data object, and plot it as violin plots per cluster using the clustering method of your choice. For example, plot number of UMIS, detected genes, percent mitochondrial reads. Then, check carefully if there is any bias in how your data is separated by quality metrics. Could it be explained biologically, or could there be a technical bias there?

5 Session info

Click here
sessionInfo()
R version 4.3.0 (2023-04-21)
Platform: x86_64-pc-linux-gnu (64-bit)
Running under: Ubuntu 22.04.3 LTS

Matrix products: default
BLAS:   /usr/lib/x86_64-linux-gnu/openblas-pthread/libblas.so.3 
LAPACK: /usr/lib/x86_64-linux-gnu/openblas-pthread/libopenblasp-r0.3.20.so;  LAPACK version 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: Etc/UTC
tzcode source: system (glibc)

attached base packages:
[1] stats     graphics  grDevices utils     datasets  methods   base     

other attached packages:
[1] clustree_0.5.0     ggraph_2.1.0       pheatmap_1.0.12    ggplot2_3.4.2     
[5] patchwork_1.1.2    SeuratObject_4.1.3 Seurat_4.3.0      

loaded via a namespace (and not attached):
  [1] RColorBrewer_1.1-3     rstudioapi_0.14        jsonlite_1.8.5        
  [4] magrittr_2.0.3         spatstat.utils_3.0-3   farver_2.1.1          
  [7] rmarkdown_2.22         vctrs_0.6.2            ROCR_1.0-11           
 [10] spatstat.explore_3.2-1 htmltools_0.5.5        sctransform_0.3.5     
 [13] parallelly_1.36.0      KernSmooth_2.23-20     htmlwidgets_1.6.2     
 [16] ica_1.0-3              plyr_1.8.8             plotly_4.10.2         
 [19] zoo_1.8-12             igraph_1.4.3           mime_0.12             
 [22] lifecycle_1.0.3        pkgconfig_2.0.3        Matrix_1.5-4          
 [25] R6_2.5.1               fastmap_1.1.1          fitdistrplus_1.1-11   
 [28] future_1.32.0          shiny_1.7.4            digest_0.6.31         
 [31] colorspace_2.1-0       tensor_1.5             irlba_2.3.5.1         
 [34] labeling_0.4.2         progressr_0.13.0       fansi_1.0.4           
 [37] spatstat.sparse_3.0-1  httr_1.4.6             polyclip_1.10-4       
 [40] abind_1.4-5            compiler_4.3.0         withr_2.5.0           
 [43] backports_1.4.1        viridis_0.6.3          ggforce_0.4.1         
 [46] MASS_7.3-58.4          tools_4.3.0            lmtest_0.9-40         
 [49] httpuv_1.6.11          future.apply_1.11.0    goftest_1.2-3         
 [52] glue_1.6.2             nlme_3.1-162           promises_1.2.0.1      
 [55] grid_4.3.0             checkmate_2.2.0        Rtsne_0.16            
 [58] cluster_2.1.4          reshape2_1.4.4         generics_0.1.3        
 [61] gtable_0.3.3           spatstat.data_3.0-1    tidyr_1.3.0           
 [64] data.table_1.14.8      tidygraph_1.2.3        sp_1.6-1              
 [67] utf8_1.2.3             spatstat.geom_3.2-1    RcppAnnoy_0.0.20      
 [70] ggrepel_0.9.3          RANN_2.6.1             pillar_1.9.0          
 [73] stringr_1.5.0          later_1.3.1            splines_4.3.0         
 [76] dplyr_1.1.2            tweenr_2.0.2           lattice_0.21-8        
 [79] survival_3.5-5         deldir_1.0-9           tidyselect_1.2.0      
 [82] miniUI_0.1.1.1         pbapply_1.7-0          knitr_1.43            
 [85] gridExtra_2.3          scattermore_1.2        xfun_0.39             
 [88] graphlayouts_1.0.0     matrixStats_1.0.0      stringi_1.7.12        
 [91] lazyeval_0.2.2         yaml_2.3.7             evaluate_0.21         
 [94] codetools_0.2-19       tibble_3.2.1           cli_3.6.1             
 [97] uwot_0.1.14            xtable_1.8-4           reticulate_1.30       
[100] munsell_0.5.0          Rcpp_1.0.10            globals_0.16.2        
[103] spatstat.random_3.1-5  png_0.1-8              parallel_4.3.0        
[106] ellipsis_0.3.2         listenv_0.9.0          viridisLite_0.4.2     
[109] scales_1.2.1           ggridges_0.5.4         leiden_0.4.3          
[112] purrr_1.0.1            rlang_1.1.1            cowplot_1.1.1