all_times <- list() # store the time for each chunk knitr::knit_hooks$set(time_it = local({ now <- NULL function(before, options) { if (before) { now <<- Sys.time() } else { res <- difftime(Sys.time(), now, units = "secs") all_times[[options$label]] <<- res } } })) knitr::opts_chunk$set( tidy = 'styler', message = FALSE, warning = FALSE, fig.width = 10, time_it = TRUE, error = TRUE )
We have previously released support Seurat for sequencing-based spatial transcriptomic (ST) technologies, including 10x visium and SLIDE-seq. We have now updated Seurat to be compatible with the Visium HD technology, which performs profiling at substantially higher spatial resolution than previous versions.
Users can install the Visium HD-compatible release from Github. Existing Seurat workflows for clustering, visualization, and downstream analysis have been updated to support both Visium and Visium HD data.
We note that Visium HD data is generated from spatially patterned olignocleotides labeled in 2um x 2um bins. However, since the data from this resolution is sparse, adjacent bins are pooled together to create 8um and 16um resolutions. 10x recommends the use of 8um binned data for analysis, but Seurat supports in the simultaneous loading of multiple binnings - and stores them in a single object as multiple assays.
In this vignette, we provide an overview of some of the spatial workflows that Seurat supports for analyzing Visium HD data, in particular:
Please note that Visium HD is a new data type, and we expect to update this vignette as we test additional methods for spatial data analysis. We strongly encourage users to explore how different parameter settings affect their results, to analyze data iteratively (and in collaboration with biological experts), and to orthogonally validate unexpected or surprising biological findings.
We focus our analysis on a Visium HD dataset from the mouse brain, available to download here but also run clustering workflow on a dataset from the mouse intestine.
# packages required for Visium HD install.packages("hdf5r") install.packages("arrow")
library(Seurat) library(ggplot2) library(patchwork) library(dplyr)
bin.size
parameter specifies resolutions to load (8 and 16um are loaded by default)localdir <- "/brahms/lis/visium_hd/mouse/new_mousebrain/" object <- Load10X_Spatial(data.dir = localdir, bin.size = c(8, 16)) # Setting default assay changes between 8um and 16um binning Assays(object) DefaultAssay(object) <- "Spatial.008um"
vln.plot <- VlnPlot(object, features = 'nCount_Spatial.008um', pt.size = 0) + theme(axis.text = element_text(size = 4)) + NoLegend() count.plot <- SpatialFeaturePlot(object, features = 'nCount_Spatial.008um') + theme(legend.position = "right") # note that many spots have very few counts, in-part # due to low cellular density in certain tissue regions vln.plot | count.plot
In this vignette we use standard log-normalization for spatial data. We note that the best normalization methods for spatial data are still being developed and evaluated, and encourage users to read manuscripts from the Phipson/Davis and Fan labs to learn more about potential caveats for spatial normalization.
# normalize both 8um and 16um bins DefaultAssay(object) <- "Spatial.008um" object <- NormalizeData(object) DefaultAssay(object) <- "Spatial.016um" object <- NormalizeData(object)
pt.size.factor
(set to 1.2 by default) helps to visualize molecular and histological info in this HD dataset shape
, and stroke
(outline) parameters for visualization# switch spatial resolution to 16um from 8um DefaultAssay(object) <- "Spatial.016um" p1 <- SpatialFeaturePlot(object, features = "Rorb") + ggtitle("Rorb expression (16um)") # switch back to 8um DefaultAssay(object) <- "Spatial.008um" p2 <- SpatialFeaturePlot(object, features = "Hpca") + ggtitle("Hpca expression (8um)") p1 | p2
While the standard scRNA-seq clustering workflow can also be applied to spatial datasets - we have observed that when working with Visium HD datasets, the Seurat v5 sketch clustering workflow exhibits improved performance, especially for identifying rare and spatially restricted groups.
As described in Hao et al, Nature Biotechnology 2023 and Hie et al, sketch-based analyses aim to 'subsample' large datasets in a way that preserves rare populations. Here, we sketch the Visium HD dataset, perform clustering on the subsampled cells, and then project the cluster labels back to the full dataset.
Details of the sketching procedure and workflow are described in Hao et al, Nature Biotechnology 2023 and the Seurat v5 sketch clustering vignette. Since the full Visium HD dataset fits in memory, we do not use any of the on-disk capabilities of Seurat v5 in this vignette.
# note that data is already normalized DefaultAssay(object) <- "Spatial.008um" object <- FindVariableFeatures(object) object <- ScaleData(object) # we select 50,0000 cells and create a new 'sketch' assay object <- SketchData( object = object, ncells = 50000, method = "LeverageScore", sketched.assay = "sketch" )
# switch analysis to sketched cells DefaultAssay(object) <- "sketch" # perform clustering workflow object <- FindVariableFeatures(object) object <- ScaleData(object) object <- RunPCA(object, assay="sketch", reduction.name = "pca.sketch") object <- FindNeighbors(object, assay="sketch", reduction = "pca.sketch", dims = 1:50) object <- FindClusters(object, cluster.name="seurat_cluster.sketched", resolution = 3) object <- RunUMAP(object, reduction = "pca.sketch", reduction.name = "umap.sketch", return.model = T, dims = 1:50)
Now we can project the cluster labels, and dimensional reductions (PCA and UMAP) that we learned from the 50,000 sketched cells - to the entire dataset, using the ProjectData
function.
In the resulting object, for all cells:
object$seurat_cluster.projected
object[["pca.008um"]]
object[["umap.sketch"]]
object <- ProjectData( object = object, assay = "Spatial.008um", full.reduction = "full.pca.sketch", sketched.assay = "sketch", sketched.reduction = "pca.sketch", umap.model = "umap.sketch", dims = 1:50, refdata = list(seurat_cluster.projected = "seurat_cluster.sketched") )
We can visualize the clustering results for the sketched cells, as well as the projected clustering results for the full dataset:
DefaultAssay(object) <- "sketch" Idents(object) <- "seurat_cluster.sketched" p1 <- DimPlot(object, reduction = "umap.sketch", label=F) + ggtitle("Sketched clustering (50,000 cells)") + theme(legend.position = "bottom") # switch to full dataset DefaultAssay(object) <- "Spatial.008um" Idents(object) <- "seurat_cluster.projected" p2 <- DimPlot(object, reduction = "full.umap.sketch", label=F) + ggtitle("Projected clustering (full dataset)") + theme(legend.position = "bottom") p1 | p2
Of course, we can now also visualize the unsupervised clusters based on their spatial location. Note that running SpatialDimPlot(object, interactive = TRUE)
, also enables interactive visualization and exploration.
SpatialDimPlot(object, label=T, repel=T, label.size = 4)
When there are many different clusters (some of which are spatially restricted and others are mixed), plotting the spatial location of all clusters can be challenging to interpret. We find it helpful to plot the spatial location of different clusters individually. For example, we highlight the spatial localization of a few clusters below, which happen to correspond to different cortical layers:
Idents(object) <- "seurat_cluster.projected" cells <- CellsByIdentities(object, idents=c(0,4,32,34,35)) p <- SpatialDimPlot(object, cells.highlight = cells[setdiff(names(cells), "NA")], cols.highlight = c("#FFFF00","grey50"), facet.highlight = T, combine=T) + NoLegend() p Idents(object) <- "seurat_cluster.projected" cells <- CellsByIdentities(object, idents=c(0,4,32,34,35)) p <- SpatialDimPlot(object, cells.highlight = cells[setdiff(names(cells), "NA")], cols.highlight = c("#FFFF00","grey50"), facet.highlight = T, combine=T) + NoLegend() p
We can also find and visualize the top gene expression markers for each cluster:
# Crete downsampled object to make visualization either DefaultAssay(object) <- "Spatial.008um" Idents(object) <- "seurat_cluster.projected" object_subset <- subset(object, cells = Cells(object[['Spatial.008um']]), downsample=1000) # Order clusters by similarity DefaultAssay(object_subset) <- "Spatial.008um" Idents(object_subset) <- "seurat_cluster.projected" object_subset <- BuildClusterTree(object_subset, assay = "Spatial.008um", reduction = "full.pca.sketch", reorder = T) markers <- FindAllMarkers(object_subset, assay = 'Spatial.008um', only.pos = TRUE) markers %>% group_by(cluster) %>% dplyr::filter(avg_log2FC > 1) %>% slice_head(n = 5) %>% ungroup() -> top5 object_subset <- ScaleData(object_subset, assay = "Spatial.008um", features = top5$gene) p <- DoHeatmap(object_subset, assay = "Spatial.008um", features = top5$gene, size = 2.5) + theme(axis.text = element_text(size = 5.5)) + NoLegend() p
While the previous analyses consider each bin independently, spatial data enables cells to be defined not just by their neighborhood, but also by their broader spatial context.
In Singhal et al., the authors introduce BANKSY, Building Aggregates with a Neighborhood Kernel and Spatial Yardstick (BANKSY). BANKSY performs multiple tasks, but we find it particularly valuable for identifying and segmenting tissue domains. When performing clustering, BANKSY augments a spot's expression pattern with both the mean and the gradient of gene expression levels in a spot's broader neighborhood.
We thank the authors for enabling BANKSY to be compatible with Seurat via the SeuratWrappers
framework, which requires separate installation of the BANKSY package:
if (!requireNamespace("Banksy", quietly = TRUE)) { remotes::install_github("prabhakarlab/Banksy@devel") } library(SeuratWrappers) library(Banksy)
Before running BANKSY, there are two important model parameters that users should consider:
k_geom
: Local neighborhood size. Larger values will yield larger domainslambda
: Influence of the neighborhood. Larger values yield more spatially coherent domainsThe RunBanksy
function creates a new BANKSY
assay, which can be used for dimensional reduction and clustering:
object <- RunBanksy(object, lambda = 0.8, verbose=TRUE, assay = 'Spatial.008um', slot = 'data', features = 'variable', k_geom = 50)
DefaultAssay(object) <- "BANKSY" object <- RunPCA(object, assay = 'BANKSY', reduction.name = "pca.banksy", features = rownames(object), npcs = 30) object <- FindNeighbors(object, reduction = "pca.banksy", dims = 1:30) object <- FindClusters(object, cluster.name = "banksy_cluster", resolution = 0.5)
Idents(object) <- "banksy_cluster" p <- SpatialDimPlot(object, group.by="banksy_cluster",label=T, repel=T, label.size = 4) p
As with unsupervised clustering, we can highlight the spatial location of each tissue domain individually:
banksy_cells <- CellsByIdentities(object) p <- SpatialDimPlot(object, cells.highlight = banksy_cells[setdiff(names(banksy_cells), "NA")], cols.highlight = c("#FFFF00","grey50"),facet.highlight = T, combine=T) + NoLegend() p
Users may wish to segment or subset out a restricted region for further downstream analysis. For example, here we create a coordinate-defined segmentation mask marking cortical and hippocampal regions from the entire dataset using the CreateSegmentation
function, and then identify cells that fall into this region with the Overlay
function.
The list of coordinates is available for download here, and users can identify these boundaries when exploring their own datasets using the interactive=TRUE
argument to SpatialDimPlot
.
cortex.coordinates <- as.data.frame(read.csv('/brahms/lis/visium_hd/final_mouse/cortex-hippocampus_coordinates.csv')) cortex <- CreateSegmentation(cortex.coordinates) object[["cortex"]] <- Overlay(object[["slice1.008um"]], cortex) cortex <- subset(object, cells=Cells(object[['cortex']]))
Seurat v5 also includes support for Robust Cell Type Decomposition, a computational approach to deconvolve spot-level data from spatial datasets, when provided with an scRNA-seq reference. RCTD has been shown to accurately annotate spatial data from a variety of technologies, including SLIDE-seq, Visium, and the 10x Xenium in-situ spatial platform. We observe good performance with Visium HD as well.
To run RCTD, we first install the spacexr
package from GitHub which implements RCTD. When running RCTD, we follow the instructions from the RCTD vignette.
if (!requireNamespace("spacexr", quietly = TRUE)) { devtools::install_github("dmcable/spacexr", build_vignettes = FALSE) } library(spacexr)
RCTD takes an scRNA-seq dataset as a reference, and a spatial dataset as a query. For a reference, we use a mouse scRNA-seq dataset from the Allen Brain Atlas, available for download here. The reference scRNAs-eq dataset has been reduced to 200,000 cells (and rare cell types <25 cells have been removed).
We use the cortex Visium HD object as the spatial query. For computational efficiency, we sketch the spatial query dataset, apply RCTD to deconvolute the 'sketched' cortical cells and annotate them, and then project these annotations to the full cortical dataset.
#sketch the cortical subset of the Visium HD dataset DefaultAssay(cortex) <- "Spatial.008um" cortex <- FindVariableFeatures(cortex) cortex <- SketchData( object = cortex, ncells = 50000, method = "LeverageScore", sketched.assay = "sketch" ) DefaultAssay(cortex) <- "sketch" cortex <- ScaleData(cortex) cortex <- RunPCA(cortex, assay="sketch", reduction.name = "pca.cortex.sketch", verbose = T) cortex <- FindNeighbors(cortex, reduction = "pca.cortex.sketch", dims = 1:50) cortex <- RunUMAP(cortex, reduction = "pca.cortex.sketch", reduction.name = "umap.cortex.sketch", return.model = T, dims = 1:50, verbose = T)
# load in the reference scRNA-seq dataset ref <- readRDS("/brahms/satijar/allen_scRNAseq_ref.Rds")
Idents(ref) <- "subclass_label" counts <- ref[["RNA"]]$counts cluster <- as.factor(ref$subclass_label) nUMI <- ref$nCount_RNA levels(cluster) <- gsub("/", "-", levels(cluster)) cluster <- droplevels(cluster) # create the RCTD reference object reference <- Reference(counts, cluster, nUMI) counts_hd <- cortex[["sketch"]]$counts cortex_cells_hd <- colnames(cortex[["sketch"]]) coords <- GetTissueCoordinates(cortex)[cortex_cells_hd,1:2] # create the RCTD query object query <- SpatialRNA(coords, counts_hd, colSums(counts_hd))
# run RCTD RCTD <- create.RCTD(query, reference, max_cores = 28) RCTD <- run.RCTD(RCTD, doublet_mode = "doublet") # add results back to Seurat object cortex <- AddMetaData(cortex, metadata = RCTD@results$results_df)
# project RCTD labels from sketched cortical cells to all cortical cells cortex$first_type <- as.character(cortex$first_type) cortex$first_type[is.na(cortex$first_type)] <- 'Unknown' cortex <- ProjectData( object = cortex, assay = "Spatial.008um", full.reduction = "pca.cortex", sketched.assay = "sketch", sketched.reduction = "pca.cortex.sketch", umap.model = "umap.cortex.sketch", dims = 1:50, refdata = list(full_first_type = "first_type") )
DefaultAssay(object) <- "Spatial.008um" # we only ran RCTD on the cortical cells # set labels to all other cells as "Unknown" object[[]][, "full_first_type"] <- "Unknown" object$full_first_type[Cells(cortex)] <- cortex$full_first_type[Cells(cortex)] Idents(object) <- 'full_first_type' # now we can spatially map the location of any scRNA-seq cell type # start with Layered (starts with L), excitatory neurons in the cortex cells <- CellsByIdentities(object) excitatory_names <- sort(grep("^L.* CTX",names(cells),value = TRUE)) p <- SpatialDimPlot(object, cells.highlight = cells[excitatory_names], cols.highlight = c("#FFFF00","grey50"), facet.highlight = T, combine=T, ncol=4) p
We can now look for associations between the scRNA-seq labels of individual bins, and their tissue domain identity (as assigned by BANKSY). By asking which domains the excitatory neuron cells fall in, we can rename the BANKSY clusters as neuronal layers:
plot_cell_types <- function(data, label) { p <- ggplot(data, aes(x = get(label), y = n, fill = full_first_type)) + geom_bar(stat = "identity", position = "stack") + geom_text(aes(label = ifelse(n >= min_count_to_show_label, full_first_type, "")), position = position_stack(vjust = 0.5), size = 2) + xlab(label) + ylab("# of Spots") + ggtitle(paste0("Distribution of Cell Types across ", label)) + theme_minimal() } cell_type_banksy_counts <- object[[]] %>% dplyr::filter(full_first_type %in% excitatory_names) %>% dplyr::count(full_first_type, banksy_cluster) min_count_to_show_label <- 20 p <- plot_cell_types(cell_type_banksy_counts, "banksy_cluster") p
Based on this plot, we can now assign cells (even if they are not excitatory neurons) to individual neuronal layers.
Idents(object) <- 'banksy_cluster' object$layer_id <- 'Unknown' object$layer_id[WhichCells(object,idents = c(7))] <- "Layer 2/3" object$layer_id[WhichCells(object,idents = c(15))] <- "Layer 4" object$layer_id[WhichCells(object,idents = c(5))] <- "Layer 5" object$layer_id[WhichCells(object,idents = c(1))] <- "Layer 6"
Finally, we can visualize the spatial distribution of other cell types, and ask which cortical layers they fall in. For example, in contrast to excitatory neurons, inhibitory (GABAergic) interneurons in the cortex are not spatially restricted to individual layers - but they do show biases.
In our previous analysis of STARmap data, and consistent with previous work, we found that SST and PV interneuron classes tend to be restricted to layers 4-6, while VIP and Lamp5 interneurons tend to be located in layers 2/3. These results were based on an in-situ imaging technology which captures single-cell profiles - and here we ask whether we can find the same result in Visium HD spot-based data.
# set ID to RCTD label Idents(object) <- 'full_first_type' # Visualize distribution of 4 interneuron subtypes inhibitory_names <- c("Sst","Pvalb","Vip","Lamp5") cell_ids <- CellsByIdentities(object, idents = inhibitory_names) p <- SpatialDimPlot(object, cells.highlight = cell_ids, cols.highlight = c("#FFFF00","grey50"), facet.highlight = T, combine=T, ncol=4) p
# create barplot to show proportions of cell types of interest layer_table <- table(object$full_first_type, object$layer_id)[inhibitory_names,1:4] neuron_props <- reshape2::melt(prop.table(layer_table), margin = 1) ggplot(neuron_props, aes(x = Var1, y = value, fill = Var2)) + geom_bar(stat = "identity", position = "fill") + labs(x = "Cell type", y = "Proportion", fill = "Layer") + theme_classic()
saveRDS(object, file='/brahms/lis/visium_hd/final_mouse/vig/0506final.rds')
We recapitulate the same findings, previously identified in in-situ imaging data, in the Visium HD dataset. This highlights that the 8um binning of Visium HD, even though it does not represent true single cell resolution, is capable of accurately localizing scRNA-seq-defined cell types, although we strongly encourage users to orthogonally validate unexpected or surprising biological findings.
We briefly demonstrate our sketch-clustering workflow on a second Visium HD dataset, from the Mouse Small Intestine (FFPE), available for download here. We identify clusters, visualize their spatial locations, and report their top gene expression markers:
localdir <- "/brahms/lis/visium_hd/Visium_HD_Public_Data/HD_public_data/Visium_HD_Mouse_Small_Intestine/outs" object <- Load10X_Spatial(data.dir = localdir, bin.size = 8)
DefaultAssay(object) <- "Spatial.008um" object <- NormalizeData(object) object <- FindVariableFeatures(object) object <- ScaleData(object)
object <- SketchData( object = object, ncells = 50000, method = "LeverageScore", sketched.assay = "sketch" )
DefaultAssay(object) <- "sketch" object <- FindVariableFeatures(object) object <- ScaleData(object) object <- RunPCA(object, assay="sketch", reduction.name = "pca.sketch") object <- FindNeighbors(object, assay="sketch", reduction = "pca.sketch", dims = 1:50) object <- FindClusters(object, cluster.name="seurat_cluster.sketched", resolution = 3) object <- RunUMAP(object, reduction = "pca.sketch", reduction.name = "umap.sketch", return.model = T, dims = 1:50)
object <- ProjectData( object = object, assay = "Spatial.008um", full.reduction = "full.pca.sketch", sketched.assay = "sketch", sketched.reduction = "pca.sketch", umap.model = "umap.sketch", dims = 1:50, refdata = list(seurat_cluster.projected = "seurat_cluster.sketched") )
Idents(object) <- "seurat_cluster.projected" DefaultAssay(object) <- "Spatial.008um" p1 <- DimPlot(object, reduction = "umap.sketch", label=F) + theme(legend.position = "bottom") p2 <- SpatialDimPlot(object, label=F) + theme(legend.position = "bottom") p1 | p2
We visualize the location of each cluster individually:
Idents(object) <- "seurat_cluster.projected" cells <- CellsByIdentities(object, idents=c(1,5,18,26)) p <- SpatialDimPlot(object, cells.highlight = cells[setdiff(names(cells), "NA")], cols.highlight = c("#FFFF00","grey50"), facet.highlight = T, combine=T) + NoLegend() p
DefaultAssay(object) <- "Spatial.008um" Idents(object) <- "seurat_cluster.projected" object_subset <- subset(object, cells = Cells(object[['Spatial.008um']]), downsample=1000) DefaultAssay(object_subset) <- "Spatial.008um" Idents(object_subset) <- "seurat_cluster.projected" object_subset <- BuildClusterTree(object_subset, assay = "Spatial.008um", reduction = "full.pca.sketch", reorder = T) markers <- FindAllMarkers(object_subset, assay = "Spatial.008um", only.pos = TRUE) markers %>% group_by(cluster) %>% dplyr::filter(avg_log2FC > 1) %>% slice_head(n = 5) %>% ungroup() -> top5 object_subset <- ScaleData(object_subset, assay = "Spatial.008um", features=top5$gene) p <- DoHeatmap(object_subset, assay = "Spatial.008um", features = top5$gene, size = 2.5) + theme(axis.text = element_text(size = 5.5)) + NoLegend() p
saveRDS(object, file='/brahms/lis/visium_hd/intestine/vig/0506final.rds')
write.csv(x = t(as.data.frame(all_times)), file = "/home/lis/seurat-private/output/timings/visiumhd_analysis_vignette_final_times.csv")
Session Info
sessionInfo()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.