In this vignette we will demonstrate how to visualize single-cell data in genome-browser-track style plots with Signac.

To demonstrate we’ll use the human PBMC dataset processed in this vignette.

library(Signac)
library(ggplot2)

# load PBMC dataset
pbmc <- readRDS("../vignette_data/pbmc.rds")

There are several different genome browser style plot types available in Signac, including accessibility tracks, gene annotations, peak coordinate, genomic links, and fragment positions.

Plotting aggregated signal

The main plotting function in Signac is CoveragePlot(), and this computes the averaged frequency of sequenced DNA fragments for different groups of cells within a given genomic region.

cov_plot <- CoveragePlot(
  object = pbmc,
  region = "chr2-87011729-87035519",
  annotation = FALSE,
  peaks = FALSE
)
cov_plot

We can also request regions of the genome by gene name. This will use the gene coordinates stored in the Seurat object to determine which genomic region to plot

CoveragePlot(
  object = pbmc,
  region = "CD8A",
  annotation = FALSE,
  peaks = FALSE
)

Customizing plots

All of the plots returned by Signac functions are ggplot2 or patchwork objects, and so you can use standard functions from ggplot2 or other packages to further modify or customize them. For example, if we wanted to adjust the color of the tracks generated in the plot above, we can use the scale_fill_ functions in ggplot2, for example scale_fill_brewer():

cov_plot + scale_fill_brewer(type = "seq", palette = 1)
## Scale for fill is already present.
## Adding another scale for fill, which will replace the existing scale.
## Warning in RColorBrewer::brewer.pal(n, pal): n too large, allowed maximum for palette Blues is 9
## Returning the palette you asked for with that many colors

cov_plot + scale_fill_brewer(type = "qual", palette = 1)
## Scale for fill is already present.
## Adding another scale for fill, which will replace the existing scale.
## Warning in RColorBrewer::brewer.pal(n, pal): n too large, allowed maximum for palette Accent is 8
## Returning the palette you asked for with that many colors

Note that for plots that are combined using Patchwork, the & operator can be used to apply the aesthetic adjustment to all of the plots in the object.

Plotting gene annotations

Gene annotations within a given genomic region can be plotted using the AnnotationPlot() function.

gene_plot <- AnnotationPlot(
  object = pbmc,
  region = "chr2-87011729-87035519"
)
gene_plot

Plotting peak coordinates

Peak coordinates within a genomic region can be plotted using the PeakPlot() function.

peak_plot <- PeakPlot(
  object = pbmc,
  region = "chr2-87011729-87035519"
)
peak_plot

Relationships between genomic positions can be plotted using the LinkPlot() function. This will display an arc connecting two linked positions, with the transparency of the arc line proportional to a score associated with the link. These links could be used to encode different things, including regulatory relationships (for example, linking enhancers to the genes that they regulate), or experimental data such as Hi-C.

Just to demonstrate how the function works, we’ve created a fake link here and added it to the PBMC dataset.

link_plot <- LinkPlot(
  object = pbmc,
  region = "chr2-87011729-87035519"
)
link_plot

Plotting per-cell fragment abundance

While the CoveragePlot() function computes an aggregated signal within a genomic region for different groups of cells, sometimes it’s also useful to inspect the frequency of sequenced fragments within a genomic region for individual cells, without aggregation. This can be done using the TilePlot() function.

tile_plot <- TilePlot(
  object = pbmc,
  region = "chr2-87011729-87035519",
  idents = c("CD4 Memory", "CD8 Effector")
)
tile_plot

By default, this selects the top 100 cells for each group based on the total number of fragments in the genomic region. The genomic region is then tiled and the total fragments in each tile counted for each cell, and the resulting counts for each position displayed as a heatmap.

Plotting additional data alongside genomic tracks

Multimodal single-cell datasets generate multiple experimental measurements for each cell. Several methods now exist that are capable of measuring single-cell chromatin data (such as chromatin accessibility) alongside other measurements from the same cell, such as gene expression or mitochondrial genotype. In these cases it’s often informative to visualize the multimodal data together in a single plot. This can be achieved using the ExpressionPlot() function. This is similar to the VlnPlot() function in Seurat, but is designed to be incorportated with genomic track plots generated by CoveragePlot().

expr_plot <- ExpressionPlot(
  object = pbmc,
  features = "CD8A",
  assay = "RNA"
)
expr_plot

We can create similar plots for multiple genes at once simply by passing a list of gene names

ExpressionPlot(
  object = pbmc,
  features = c("CD8A", "CD4"),
  assay = "RNA"
)

Combining genomic tracks

Above we’ve demonstrated how to generate individual tracks and panels that can be combined into a single plot for a single genomic region. These panels can be easily combined using the CombineTracks() function.

CombineTracks(
  plotlist = list(cov_plot, tile_plot, peak_plot, gene_plot, link_plot),
  expression.plot = expr_plot,
  heights = c(10, 6, 1, 2, 3),
  widths = c(10, 1)
)

The heights and widths parameters control the relative heights and widths of the individual tracks, according to the order that the tracks appear in the plotlist. The CombineTracks() function ensures that the tracks are aligned vertically and horizontally, and moves the x-axis labels (describing the genomic position) to the bottom of the combined tracks.

Generating multiple tracks

Above we’ve shown how to create genomic plot panels individually and how to combine them. This allows more control over how each panel is constructed and how they’re combined, but involves multiple steps. For convenience, we’ve included the ability to generate and combine different panels automatically in the CoveragePlot() function, through the annotation, peaks, tile, and features arguments. We can generate a similar plot to that shown above in a single function call:

CoveragePlot(
  object = pbmc,
  region = "chr2-87011729-87035519",
  features = "CD8A",
  annotation = TRUE,
  peaks = TRUE,
  tile = TRUE,
  links = TRUE
)

Notice that in this example we create the tile plot for every group of cells that is shown in the coverage track, whereas above we were able to create a plot that showed the aggregated coverage for all groups of cells and the tile plot for only the CD4 memory cells and the CD8 effector cells. A higher degree of customization is possible when creating each track separately.

Interactive visualization

Above we demonstrated the different types of plots that can be constructed using Signac. Often when exploring genomic data it’s useful to be able to interactively browse through different regions of the genome and adjust tracks on the fly. This can be done in Signac using the CoverageBrowser() function. This provides all the same functionality of the CoveragePlot() function, except that we can scroll upstream/downstream, zoom in/out of regions, navigate to new region, and adjust which tracks are shown or how the cells are grouped. In exploring the data interactively, often you will find interesting plots that you’d like to save for viewing later. We’ve included a “Save plot” button that will add the current plot to a list of plots that is returned when the interactive session is ended. Here’s a recorded demonstration of the CoverageBrowser() function:

Session Info
## R version 4.3.1 (2023-06-16)
## Platform: aarch64-apple-darwin20 (64-bit)
## Running under: macOS Sonoma 14.4.1
## 
## Matrix products: default
## BLAS:   /Library/Frameworks/R.framework/Versions/4.3-arm64/Resources/lib/libRblas.0.dylib 
## LAPACK: /Library/Frameworks/R.framework/Versions/4.3-arm64/Resources/lib/libRlapack.dylib;  LAPACK version 3.11.0
## 
## locale:
## [1] C/UTF-8/C/C/C/C
## 
## time zone: Asia/Singapore
## tzcode source: internal
## 
## attached base packages:
## [1] stats4    stats     graphics  grDevices utils     datasets  methods  
## [8] base     
## 
## other attached packages:
## [1] GenomicRanges_1.54.1 GenomeInfoDb_1.38.7  IRanges_2.36.0      
## [4] S4Vectors_0.40.2     BiocGenerics_0.48.1  ggplot2_3.5.0       
## [7] Signac_1.13.0       
## 
## loaded via a namespace (and not attached):
##  [1] tidyselect_1.2.1        dplyr_1.1.4             farver_2.1.1           
##  [4] Biostrings_2.70.2       bitops_1.0-7            fastmap_1.1.1          
##  [7] RCurl_1.98-1.14         tweenr_2.0.3            digest_0.6.35          
## [10] dotCall64_1.1-1         lifecycle_1.0.4         SeuratObject_5.0.1     
## [13] magrittr_2.0.3          compiler_4.3.1          rlang_1.1.3            
## [16] sass_0.4.9              tools_4.3.1             utf8_1.2.4             
## [19] yaml_2.3.8              data.table_1.15.4       knitr_1.45             
## [22] labeling_0.4.3          sp_2.1-3                RColorBrewer_1.1-3     
## [25] BiocParallel_1.36.0     withr_3.0.0             purrr_1.0.2            
## [28] desc_1.4.3              grid_4.3.1              polyclip_1.10-6        
## [31] fansi_1.0.6             colorspace_2.1-0        future_1.33.2          
## [34] progressr_0.14.0        globals_0.16.3          scales_1.3.0           
## [37] MASS_7.3-60.0.1         cli_3.6.2               rmarkdown_2.26         
## [40] crayon_1.5.2            ragg_1.3.0              generics_0.1.3         
## [43] future.apply_1.11.2     RcppRoll_0.3.0          pbapply_1.7-2          
## [46] cachem_1.0.8            ggforce_0.4.2           zlibbioc_1.48.0        
## [49] parallel_4.3.1          XVector_0.42.0          vctrs_0.6.5            
## [52] Matrix_1.6-5            jsonlite_1.8.8          patchwork_1.2.0        
## [55] irlba_2.3.5.1           listenv_0.9.1           systemfonts_1.0.6      
## [58] jquerylib_0.1.4         tidyr_1.3.1             glue_1.7.0             
## [61] parallelly_1.37.1       spam_2.10-0             pkgdown_2.0.7          
## [64] codetools_0.2-19        stringi_1.8.3           gtable_0.3.4           
## [67] munsell_0.5.0           tibble_3.2.1            pillar_1.9.0           
## [70] htmltools_0.5.8         GenomeInfoDbData_1.2.11 R6_2.5.1               
## [73] textshaping_0.3.7       evaluate_0.23           lattice_0.22-6         
## [76] highr_0.10              Rsamtools_2.18.0        memoise_2.0.1          
## [79] bslib_0.6.2             Rcpp_1.0.12             fastmatch_1.1-4        
## [82] xfun_0.43               fs_1.6.3                pkgconfig_2.0.3