1 Introduction

The crisprViz package enables the graphical interpretation of GuideSet objects from the crisprDesign package by plotting guide RNA (gRNA) cutting locations against their target gene or other genomic region.

This vignette walks through several use cases that demonstrate the range of and how to use plotting functions in the crisprViz package. This vignette also uses our core gRNA design package crisprDesignto manipulate GuideSet objects in conjunction with plotting in the process of gRNA design.

Visit our crisprVerse tutorial page to learn more about how to design gRNAs for different applications.

2 Installation and getting started

2.1 Software requirements

2.1.1 OS Requirements

This package is supported for macOS, Linux and Windows machines. Packages were developed and tested on R version 4.2.

2.2 Installation from Bioconductor

crisprViz can be installed from Bioconductor using the following commands in a fresh R session:

install.packages("BiocManager")
BiocManager::install("crisprViz")

3 Use cases

All examples in this vignette will use human genome assembly hg38 from the BSgenome.Hsapiens.UCSC.hg38 package and gene model coordinates from Ensembl release 104. We begin by loading the necessary packages.

library(BSgenome.Hsapiens.UCSC.hg38)
library(crisprDesign)
library(crisprViz)

3.1 Visualizing the best gRNAs for a given gene

Suppose we want to design the four best gRNAs using the SpCas9 CRISPR nuclease to knockout the human KRAS gene. To have the greatest impact on gene function we want to prioritize gRNAs that have greater isoform coverage, and target closer to the 5’ end of the CDS.

Let’s load a precomputed GuideSet object containing all possible gRNAs targeting the the CDS of KRAS, and a GRangesList object describing the gene model for KRAS.

data("krasGuideSet", package="crisprViz")
data("krasGeneModel", package="crisprViz")
length(krasGuideSet) # number of candidate gRNAs
## [1] 52

For how to design such gRNAs, see the crisprDesign package. Before we plot all of our candidate gRNAs, let’s first generate a simple plot with a few gRNAs to familiarize ourselves with some plot components and options.

plotGuideSet(krasGuideSet[1:4],
             geneModel=krasGeneModel,
             targetGene="KRAS")

There are a few things to note here.

  • The ideogram track and genome axis track are at the top of our plot and give us coordinate information.
  • Our targetGene KRAS is plotted next, using coordinates from the provided gene model krasGeneModel, followed by our spacer subset. The name of each track is given on the left.
  • The strand information for each track is included in the label: <- for reverse strand and -> for forward strand.
  • While we can identify which exon each spacer targets (which may be sufficient), the plot window is too large to provide further information.
  • The plot only shows the 3’ end of KRAS, rather than the entire gene.

This last point is important: the default plot window is set by the spacers’ ranges in the input GuideSet object. We can manually adjust this window by using the from, to, extend.left, and extend.right arguments. Here is the same plot adjusted to show the whole KRAS gene, which also reveals an additional isoform that is not targeted by any spacer in this example subset.

from <- min(start(krasGeneModel$transcripts))
to <- max(end(krasGeneModel$transcripts))
plotGuideSet(krasGuideSet[1:4],
             geneModel=krasGeneModel,
             targetGene="KRAS",
             from=from,
             to=to,
             extend.left=1000,
             extend.right=1000)

As calculated above, there are a total of 52 candidate gRNAs targeting the CDS of KRAS. Including all of them could crowd the plot space, making it difficult to interpret. To alleviate this we can hide the gRNA labels by setting the showGuideLabels argument to FALSE.

plotGuideSet(krasGuideSet,
             geneModel=krasGeneModel,
             targetGene="KRAS",
             showGuideLabels=FALSE,
             from=from,
             to=to,
             extend.left=1000,
             extend.right=1000)

At the gene level, the plot window is too large to discern details for each spacer target. However, we can see five distinct clusters of spacer target locations that cover the CDS of KRAS. The spacers in the 5’-most cluster (on the reverse strand) target the only coding region of the gene that is expressed by all isoforms, making it an ideal target for our scenario.

We can see which gRNAs target this region by returning showGuideLabels to its default value of TRUE, and by adjusting the plot window to focus on our exon of interest.

# new window range around target exon
targetExon <- queryTxObject(krasGeneModel,
                            featureType="cds",
                            queryColumn="exon_id",
                            queryValue="ENSE00000936617")
targetExon <- unique(targetExon)
from <- start(targetExon)
to <- end(targetExon)
plotGuideSet(krasGuideSet,
             geneModel=krasGeneModel,
             targetGene="KRAS",
             from=from,
             to=to,
             extend.left=20,
             extend.right=20)

At this resolution we can get a much better idea of spacer location and orientation. In particular, the PAM sequence is visible as a narrow box on the 3’ side of our protospacer sequences. We can also distinctly see which spacer targets overlap each other–it may be best to avoid pairing such spacers in some applications lest they sterically interfere with each other.

If we have many gRNA targets in a smaller window and are not concerned with overlaps, we can configure the plot to only show the pam_site, rather than the entire protospacer and PAM sequence, by setting pamSiteOnly to TRUE.

plotGuideSet(krasGuideSet,
             geneModel=krasGeneModel,
             targetGene="KRAS",
             from=from,
             to=to,
             extend.left=20,
             extend.right=20,
             pamSiteOnly=TRUE)

Let’s filter our GuideSet by the spacer names in the plot then pass an on-target score column in our GuideSet to onTargetScores to color the spacers according to that score, with darker blue colors indicating higher scores. Note that for this plot we need not provide values for from and to, as the plot window adjusts to our filtered GuideSet.

selectedGuides <- c("spacer_80", "spacer_84", "spacer_88", "spacer_92",
                    "spacer_96", "spacer_100", "spacer_104", "spacer_108",
                    "spacer_112")
candidateGuides <- krasGuideSet[selectedGuides]
plotGuideSet(candidateGuides,
             geneModel=krasGeneModel,
             targetGene="KRAS",
             onTargetScore="score_deephf")

3.2 Plotting for precision targeting

For a given CRISPR application, the target region may consist of only several base pairs rather than an exon or entire gene CDS. In these instances it may be important to know exactly where the gRNAs target, and plots of gRNAs must be at a resolution capable of distinguishing individual bases. This is often the case for CRISPR base editor (CRISPRbe) applications, as the editing window for each gRNA is narrow and the results are specific to each target sequence.

In this example, we will zoom in on a few gRNAs targeting the 5’ end of the human GPR21 gene. We want our plot to include genomic sequence information so we will set the bsgenome argument to the same BSgenome object we used to create our GuideSet.

First, we load the precomputed GuideSet and gene model objects for GPR21,

data("gpr21GuideSet", package="crisprViz")
data("gpr21GeneModel", package="crisprViz")

and then plot the gRNAs.

plotGuideSet(gpr21GuideSet,
             geneModel=gpr21GeneModel,
             targetGene="GPR21",
             bsgenome=BSgenome.Hsapiens.UCSC.hg38,
             margin=0.3)

The genomic sequence is given at the bottom of the plot as color-coded boxes. The color scheme for describing the nucleotides is given in the biovizBase package. If the plot has sufficient space, it will display nucleotide symbols rather than boxes. We can accomplish this by plotting a narrower range or by increasing the width of our plot space (see “Setting plot size” section).

The plot above was generated with a plot space width of 6 inches; here’s the same plot after we increase the width to 10 inches:

# increase plot width from 6" to 10"
plotGuideSet(gpr21GuideSet,
             geneModel=gpr21GeneModel,
             targetGene="GPR21",
             bsgenome=BSgenome.Hsapiens.UCSC.hg38,
             margin=0.3)

3.3 CRISPRa and adding genomic annotations

In this scenario we want to increase expression of the human MMP7 gene via CRISPR activation (CRISPRa). We will use the SpCas9 CRISPR nuclease.

data("mmp7GuideSet", package="crisprViz")
data("mmp7GeneModel", package="crisprViz")

The GuideSet contains candidate gRNAs in the 2kb window immediately upstream of the TSS of MMP7. We will also use a GRanges object containing repeat elements in this region:

data("repeats", package="crisprViz")

Let’s begin by plotting our GuideSet, and adding a track of repeat elements using the annotations argument. Our guideSet also contains SNP annotation, which we would also prefer our gRNAs to not overlap. To include a SNP annotation track, we will set includeSNPTrack=TRUE (default).

from <- min(start(mmp7GuideSet))
to <- max(end(mmp7GuideSet))
plotGuideSet(mmp7GuideSet,
             geneModel=mmp7GeneModel,
             targetGene="MMP7",
             guideStacking="dense",
             annotations=list(Repeats=repeats),
             pamSiteOnly=TRUE,
             from=from,
             to=to,
             extend.left=600,
             extend.right=100,
             includeSNPTrack=TRUE)

Some of our candidate gRNAs target repeat elements and likely target a large number of loci in the genome, potentially causing unintended effects, or overlap with SNPs, which can reduce its activity. Let’s remove these gRNAs and regenerate the plot.

filteredGuideSet <- crisprDesign::removeRepeats(mmp7GuideSet,
                                                gr.repeats=repeats)
filteredGuideSet <- filteredGuideSet[!filteredGuideSet$hasSNP]
plotGuideSet(filteredGuideSet,
             geneModel=mmp7GeneModel,
             targetGene="MMP7",
             guideStacking="dense",
             annotations=list(Repeats=repeats),
             pamSiteOnly=TRUE,
             from=from,
             to=to,
             extend.left=600,
             extend.right=100,
             includeSNPTrack=TRUE)

Note how removing gRNAs that overlap SNPs from our GuideSet also removed the SNP track. To prevent plotting an empty track, plotGuideSet will only include a SNPs track if at least one gRNA includes SNP annotation (i.e. overlaps a SNP).

Conversely, there are specific genomic regions that would be beneficial to target, such as CAGE peaks and DNase I Hypersensitivity tracks. We show in the inst\scripts folder how to obtain such data from the Bioconductor package AnnotationHub, but for the sake of time, we have precomputed those objects and they can be loaded from the crisprViz package directly:

data("cage", package="crisprViz")
data("dnase", package="crisprViz")

We now plot gRNAs alongside with those two tracks:

plotGuideSet(filteredGuideSet,
             geneModel=mmp7GeneModel,
             targetGene="MMP7",
             guideStacking="dense",
             annotations=list(CAGE=cage, DNase=dnase),
             pamSiteOnly=TRUE,
             from=from,
             to=to,
             extend.left=600,
             extend.right=100)

Let’s filter our GuideSet for guides overlapping the plotted DNase site then regenerate the plot.

# filter GuideSet for gRNAs overlapping DNase track
overlaps <- findOverlaps(filteredGuideSet, dnase, ignore.strand=TRUE)
finalGuideSet <- filteredGuideSet[queryHits(overlaps)]
plotGuideSet(finalGuideSet,
             geneModel=mmp7GeneModel,
             targetGene="MMP7",
             guideStacking="dense",
             annotations=list(CAGE=cage, DNase=dnase),
             pamSiteOnly=TRUE,
             margin=0.4)

3.4 Comparing multiple GuideSets targeting the same region

The choice of the CRISPR nuclease can be influenced by the abundance of PAM sequences recognized by a given nuclease in the target region. For example, we would expect AT-rich regions to have fewer possible targets for the SpCas9 nuclease, whose PAM is NGG. In these regions, the CRISPR nuclease AsCas12a, whose PAM is TTTV, may prove more appropriate. Given multiple GuideSets targeting the same region, we can compare the gRNAs of each in the same plot using plotMultipleGuideSets.

Here, we pass our GuideSets targeting an exon in the human gene LTN1 in a named list. Note that there are no available options for displaying guide labels or guide stacking, and only the PAM sites are plotted. We will also add a track to monitor the percent GC content (using a window roughly the length of our protospacers). Not surprisingly, this AT-rich region has fewer targets for SpCas9 compared to AsCas12a. (Note: when plotting several GuideSets you may need to increase the height of the plot space in order for the track names to appear on the left side; see “Setting plot size” below.)

We first load the precomputed GuideSet objects:

data("cas9GuideSet", package="crisprViz")
data("cas12aGuideSet", package="crisprViz")
data("ltn1GeneModel", package="crisprViz")
plotMultipleGuideSets(list(SpCas9=cas9GuideSet, AsCas12a=cas12aGuideSet),
                      geneModel=ltn1GeneModel,
                      targetGene="LTN1",
                      bsgenome=BSgenome.Hsapiens.UCSC.hg38,
                      margin=0.2,
                      gcWindow=10)

4 Setting plot size

Plots with many gene isoforms and/or gRNAs may require more space to render than is allotted by your graphical device’s default settings, resulting in an error. One solution, depending on your graphical device, is offered by the grDevices package.

Here is an example using macOS Quartz device:

grDevices::quartz("Example plot", width=6, height=7)
# plot function

5 Session Info

sessionInfo()
## R version 4.3.1 (2023-06-16)
## Platform: x86_64-pc-linux-gnu (64-bit)
## Running under: Ubuntu 22.04.3 LTS
## 
## Matrix products: default
## BLAS:   /home/biocbuild/bbs-3.18-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_GB              LC_COLLATE=C              
##  [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] crisprViz_1.4.0                   crisprDesign_1.4.0               
##  [3] crisprBase_1.6.0                  BSgenome.Hsapiens.UCSC.hg38_1.4.5
##  [5] BSgenome_1.70.0                   rtracklayer_1.62.0               
##  [7] BiocIO_1.12.0                     Biostrings_2.70.0                
##  [9] XVector_0.42.0                    GenomicRanges_1.54.0             
## [11] GenomeInfoDb_1.38.0               IRanges_2.36.0                   
## [13] S4Vectors_0.40.0                  BiocGenerics_0.48.0              
## [15] BiocStyle_2.30.0                 
## 
## loaded via a namespace (and not attached):
##   [1] RColorBrewer_1.1-3            rstudioapi_0.15.0            
##   [3] jsonlite_1.8.7                magrittr_2.0.3               
##   [5] magick_2.8.1                  GenomicFeatures_1.54.0       
##   [7] rmarkdown_2.25                zlibbioc_1.48.0              
##   [9] vctrs_0.6.4                   memoise_2.0.1                
##  [11] Rsamtools_2.18.0              RCurl_1.98-1.12              
##  [13] base64enc_0.1-3               htmltools_0.5.6.1            
##  [15] S4Arrays_1.2.0                progress_1.2.2               
##  [17] AnnotationHub_3.10.0          curl_5.1.0                   
##  [19] SparseArray_1.2.0             Formula_1.2-5                
##  [21] sass_0.4.7                    bslib_0.5.1                  
##  [23] htmlwidgets_1.6.2             basilisk_1.14.0              
##  [25] Gviz_1.46.0                   cachem_1.0.8                 
##  [27] GenomicAlignments_1.38.0      mime_0.12                    
##  [29] lifecycle_1.0.3               pkgconfig_2.0.3              
##  [31] Matrix_1.6-1.1                R6_2.5.1                     
##  [33] fastmap_1.1.1                 GenomeInfoDbData_1.2.11      
##  [35] MatrixGenerics_1.14.0         shiny_1.7.5.1                
##  [37] digest_0.6.33                 colorspace_2.1-0             
##  [39] AnnotationDbi_1.64.0          ExperimentHub_2.10.0         
##  [41] Hmisc_5.1-1                   RSQLite_2.3.1                
##  [43] filelock_1.0.2                randomForest_4.7-1.1         
##  [45] fansi_1.0.5                   httr_1.4.7                   
##  [47] abind_1.4-5                   compiler_4.3.1               
##  [49] Rbowtie_1.42.0                bit64_4.0.5                  
##  [51] backports_1.4.1               htmlTable_2.4.1              
##  [53] BiocParallel_1.36.0           DBI_1.1.3                    
##  [55] biomaRt_2.58.0                rappdirs_0.3.3               
##  [57] DelayedArray_0.28.0           rjson_0.2.21                 
##  [59] tools_4.3.1                   foreign_0.8-85               
##  [61] interactiveDisplayBase_1.40.0 httpuv_1.6.12                
##  [63] crisprScore_1.6.0             nnet_7.3-19                  
##  [65] glue_1.6.2                    restfulr_0.0.15              
##  [67] promises_1.2.1                grid_4.3.1                   
##  [69] checkmate_2.2.0               cluster_2.1.4                
##  [71] generics_0.1.3                gtable_0.3.4                 
##  [73] tzdb_0.4.0                    ensembldb_2.26.0             
##  [75] data.table_1.14.8             hms_1.1.3                    
##  [77] xml2_1.3.5                    utf8_1.2.4                   
##  [79] BiocVersion_3.18.0            pillar_1.9.0                 
##  [81] stringr_1.5.0                 later_1.3.1                  
##  [83] dplyr_1.1.3                   BiocFileCache_2.10.0         
##  [85] lattice_0.22-5                deldir_1.0-9                 
##  [87] bit_4.0.5                     crisprBowtie_1.6.0           
##  [89] crisprScoreData_1.5.0         biovizBase_1.50.0            
##  [91] tidyselect_1.2.0              knitr_1.44                   
##  [93] gridExtra_2.3                 bookdown_0.36                
##  [95] ProtGenerics_1.34.0           SummarizedExperiment_1.32.0  
##  [97] xfun_0.40                     Biobase_2.62.0               
##  [99] matrixStats_1.0.0             stringi_1.7.12               
## [101] lazyeval_0.2.2                yaml_2.3.7                   
## [103] evaluate_0.22                 codetools_0.2-19             
## [105] interp_1.1-4                  tibble_3.2.1                 
## [107] BiocManager_1.30.22           cli_3.6.1                    
## [109] rpart_4.1.21                  xtable_1.8-4                 
## [111] reticulate_1.34.0             munsell_0.5.0                
## [113] jquerylib_0.1.4               dichromat_2.0-0.1            
## [115] Rcpp_1.0.11                   dir.expiry_1.10.0            
## [117] dbplyr_2.3.4                  png_0.1-8                    
## [119] XML_3.99-0.14                 parallel_4.3.1               
## [121] ellipsis_0.3.2                ggplot2_3.4.4                
## [123] readr_2.1.4                   blob_1.2.4                   
## [125] basilisk.utils_1.14.0         prettyunits_1.2.0            
## [127] jpeg_0.1-10                   latticeExtra_0.6-30          
## [129] AnnotationFilter_1.26.0       bitops_1.0-7                 
## [131] VariantAnnotation_1.48.0      scales_1.2.1                 
## [133] crayon_1.5.2                  rlang_1.1.1                  
## [135] KEGGREST_1.42.0