knitr::opts_chunk$set( collapse = TRUE, comment = "#>", fig.path = "man/figures/README-", out.width = "100%", dpi = 70 )
start.time <- Sys.time()
BANKSY is a method for clustering spatial omics data by augmenting the features of each cell with both an average of the features of its spatial neighbors along with neighborhood feature gradients. By incorporating neighborhood information for clustering, BANKSY is able to
BANKSY is applicable to a wide array of spatial technologies (e.g. 10x Visium, Slide-seq, MERFISH, CosMX, CODEX) and scales well to large datasets. For more details, check out:
The Banksy package can be installed via Bioconductor. This currently requires
R >= 4.4.0
.
BiocManager::install('Banksy')
To install directly from GitHub instead, use
remotes::install_github("prabhakarlab/Banksy")
To use the legacy version of Banksy utilising the BanksyObject
class, use
remotes::install_github("prabhakarlab/Banksy@legacy")
Banksy is also interoperable with Seurat
via SeuratWrappers.
Documentation on how to run BANKSY on Seurat objects can be found here.
For installation of SeuratWrappers with BANKSY version >= 0.1.6
, run
remotes::install_github('satijalab/seurat-wrappers')
Load BANKSY. We'll also load SpatialExperiment and SummarizedExperiment for containing and manipulating the data, scuttle for normalization and quality control, and scater, ggplot2 and cowplot for visualisation.
library(Banksy) library(SummarizedExperiment) library(SpatialExperiment) library(scuttle) library(scater) library(cowplot) library(ggplot2)
Here, we'll run BANKSY on mouse hippocampus data.
data(hippocampus) gcm <- hippocampus$expression locs <- as.matrix(hippocampus$locations)
Initialize a SpatialExperiment object and perform basic quality control and normalization.
se <- SpatialExperiment(assay = list(counts = gcm), spatialCoords = locs) # QC based on total counts qcstats <- perCellQCMetrics(se) thres <- quantile(qcstats$total, c(0.05, 0.98)) keep <- (qcstats$total > thres[1]) & (qcstats$total < thres[2]) se <- se[, keep] # Normalization to mean library size se <- computeLibraryFactors(se) aname <- "normcounts" assay(se, aname) <- normalizeCounts(se, log = FALSE)
Compute the neighborhood matrices for BANKSY. Setting compute_agf=TRUE
computes both the weighted neighborhood mean ($\mathcal{M}$) and the azimuthal
Gabor filter ($\mathcal{G}$). The number of spatial neighbors used to compute
$\mathcal{M}$ and $\mathcal{G}$ are k_geom[1]=15
and k_geom[2]=30
respectively. We run BANKSY at lambda=0
corresponding to non-spatial
clustering, and lambda=0.2
corresponding to BANKSY for cell-typing.
An important note about choosing the
lambda
parameter for the older Visium v1 / v2 55um datasets or the original ST 100um technology:For most modern high resolution technologies like Xenium, Visium HD, StereoSeq, MERFISH, STARmap PLUS, SeqFISH+, SlideSeq v2, and CosMx (and others), we recommend the usual defults for
lambda
: For cell typing, uselambda = 0.2
(as shown below, or in this vignette) and for domain segmentation, uselambda = 0.8
. These technologies are either imaging based, having true single-cell resolution (e.g., MERFISH), or are sequencing based, having barcoded spots on the scale of single-cells (e.g., Visium HD). We find that the usual defaults work well at this measurement resolution.However, for the older Visium v1/v2 or ST technologies, with their much lower resolution spots (55um and 100um diameter, respectively), we find that
lambda = 0.2
seems to work best for domain segmentation. This could be because each spot already measures the average transcriptome of several cells in a neighbourhood. It seems thatlambda = 0.2
shares enough information between these neighbourhoods to lead to good domain segmentation performance. For example, in the human DLPFC vignette, we uselambda = 0.2
on a Visium v1/v2 dataset. Also note that in these lower resolution technologies, each spot can have multiple cells of different types, and as such cell-typing is not defined for them.
lambda <- c(0, 0.2) k_geom <- c(15, 30) se <- Banksy::computeBanksy(se, assay_name = aname, compute_agf = TRUE, k_geom = k_geom)
Next, run PCA on the BANKSY matrix and perform clustering. Setting
use_agf=TRUE
uses both $\mathcal{M}$ and $\mathcal{G}$ to construct the
BANKSY matrix.
set.seed(1000) se <- Banksy::runBanksyPCA(se, use_agf = TRUE, lambda = lambda) se <- Banksy::runBanksyUMAP(se, use_agf = TRUE, lambda = lambda) se <- Banksy::clusterBanksy(se, use_agf = TRUE, lambda = lambda, resolution = 1.2)
Different clustering runs can be relabeled to minimise their differences with
connectClusters
:
se <- Banksy::connectClusters(se)
Visualise the clustering output for non-spatial clustering (lambda=0
) and
BANKSY clustering (lambda=0.2
).
cnames <- colnames(colData(se)) cnames <- cnames[grep("^clust", cnames)] colData(se) <- cbind(colData(se), spatialCoords(se)) plot_nsp <- plotColData(se, x = "sdimx", y = "sdimy", point_size = 0.6, colour_by = cnames[1] ) plot_bank <- plotColData(se, x = "sdimx", y = "sdimy", point_size = 0.6, colour_by = cnames[2] ) plot_grid(plot_nsp + coord_equal(), plot_bank + coord_equal(), ncol = 2)
For clarity, we can visualise each of the clusters separately:
plot_grid( plot_nsp + facet_wrap(~colour_by), plot_bank + facet_wrap(~colour_by), ncol = 2 )
Visualize UMAPs of the non-spatial and BANKSY embedding:
rdnames <- reducedDimNames(se) umap_nsp <- plotReducedDim(se, dimred = grep("UMAP.*lam0$", rdnames, value = TRUE), colour_by = cnames[1] ) umap_bank <- plotReducedDim(se, dimred = grep("UMAP.*lam0.2$", rdnames, value = TRUE), colour_by = cnames[2] ) plot_grid( umap_nsp, umap_bank, ncol = 2 )
Runtime for analysis
Sys.time() - start.time
Session information
sessionInfo()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.