Chapter 8 Annotation and visualization

8.1 Adding gene-based annotation

Annotation can be added to a given set of regions using the detailRanges() function. This will identify overlaps between the regions and annotated genomic features such as exons, introns and promoters. Here, the promoter region of each gene is defined as some interval 3 kbp up- and 1 kbp downstream of the TSS for that gene. Any exonic features within dist on the left or right side of each supplied region will also be reported.

## [1] ""                    ""                    "Rrs1:+:P,Adhfe1:+:P"
## [4] "Ppp1r42:-:I"         ""                    "Ncoa2:-:PI"
## [1] ""               ""               ""               "Ppp1r42:-:3948"
## [5] ""               "Ncoa2:-:12"
## [1] ""                        "Rrs1:+:3898"            
## [3] "Rrs1:+:48,Adhfe1:+:2588" "Ppp1r42:-:1612"         
## [5] "Ncoa2:-:4595"            "Ncoa2:-:1278"

Character vectors of compact string representations are provided to summarize the features overlapped by each supplied region. Each pattern contains GENE|STRAND|TYPE to describe the strand and overlapped features of that gene. Exons are labelled as E, promoters are P and introns are I. For left and right, TYPE is replaced by DISTANCE. This indicates the gap (in base pairs) between the supplied region and the closest non-overlapping exon of the annotated feature. All of this annotation can be stored in the metadata of the GRanges object for later use.

While the string representation saves space in the output, it is not easy to work with. If the annotation needs to manipulated directly, users can obtain it from the detailRanges() command by not specifying the regions of interest. This can then be used for interactive manipulation, e.g., to identify all genes where the promoter contains DB sites.

## GRanges object with 505738 ranges and 2 metadata columns:
##             seqnames              ranges strand |      symbol        type
##                <Rle>           <IRanges>  <Rle> | <character> <character>
##   100009600     chr9   21062393-21062717      - |       Zglp1           E
##   100009600     chr9   21062400-21062717      - |       Zglp1           E
##   100009600     chr9   21062894-21062987      - |       Zglp1           E
##   100009600     chr9   21063314-21063396      - |       Zglp1           E
##   100009600     chr9   21066024-21066377      - |       Zglp1           E
##         ...      ...                 ...    ... .         ...         ...
##       99982     chr4 136554325-136558324      - |       Kdm1a           P
##       99982     chr4 136560502-136564501      - |       Kdm1a           P
##       99982     chr4 136567608-136571607      - |       Kdm1a           P
##       99982     chr4 136576159-136580158      - |       Kdm1a           P
##       99982     chr4 136550540-136602723      - |       Kdm1a           G
##   -------
##   seqinfo: 66 sequences (1 circular) from mm10 genome

8.2 Checking bimodality for TF studies

For TF experiments, a simple measure of strand bimodality can be reported as a diagnostic. Given a set of regions, the checkBimodality() function will return the maximum bimodality score across all base positions in each region. The bimodality score at each base position is defined as the minimum of the ratio of the number of forward- to reverse-stranded reads to the left of that position, and the ratio of the reverse- to forward-stranded reads to the right. A high score is only possible if both ratios are large, i.e., strand bimodality is present.

## [1] 1.456 2.263 1.364 5.333 1.933 3.405

In the above code, all regions are expanded by spacing, i.e., 50 bp. This ensures that the optimal bimodality score can be computed for the centre of the binding site, even if that position is not captured by a window. The width argument specifies the span with which to count reads for the score calculation. This should be set to the average fragment length. If multiple bam.files are provided, they will be pooled during counting.

For typical TF binding sites, bimodality scores can be considered to be “high” if they are larger than 4. This allows users to distinguish between genuine binding sites and high-abundance artifacts such as repeats or read stacks. However, caution is still required as some high scores may be driven by the stochastic distribution of reads. Obviously, the concept of strand bimodality is less relevant for diffuse targets like histone marks.

8.3 Saving the results to file

It is a simple matter to save the results for later perusal, e.g., to a tab-separated file.

Of course, other formats can be used depending on the purpose of the file. For example, significantly DB regions can be exported to BED files through the rtracklayer package for visual inspection with genomic browsers. A transformed FDR is used here for the score field.

##     V1       V2       V3      V4    V5 V6
## 1 chr1  7397900  7398110 region1 13.74  .
## 2 chr1  9541400  9541510 region2 15.60  .
## 3 chr1 13589950 13590010 region3 14.56  .
## 4 chr1 15805500 15805660 region4 22.60  .
## 5 chr1 23256050 23256210 region5 14.47  .
## 6 chr1 32172600 32172710 region6 13.82  .

Alternatively, the GRanges object can be directly saved to file and reloaded later for direct manipulation in the R environment, e.g., to find overlaps with other regions of interest.

8.4 Simple visualization of genomic coverage

Visualization of the read depth around interesting features is often desired. This is facilitated by the extractReads() function, which pulls out the reads from the BAM file. The returned GRanges object can then be used to plot the sequencing coverage or any other statistic of interest. Note that the extractReads() function also accepts a readParam object. This ensures that the same reads used in the analysis will be pulled out during visualization.

## GRanges object with 55 ranges and 0 metadata columns:
##        seqnames            ranges strand
##           <Rle>         <IRanges>  <Rle>
##    [1]    chr18 77806886-77806922      +
##    [2]    chr18 77806887-77806923      +
##    [3]    chr18 77806887-77806923      +
##    [4]    chr18 77806887-77806923      +
##    [5]    chr18 77806890-77806926      +
##    ...      ...               ...    ...
##   [51]    chr18 77807063-77807095      -
##   [52]    chr18 77807068-77807104      -
##   [53]    chr18 77807082-77807119      -
##   [54]    chr18 77807084-77807120      -
##   [55]    chr18 77807087-77807123      -
##   -------
##   seqinfo: 1 sequence from an unspecified genome

Here, coverage is visualized as the number of reads covering each base pair in the interval of interest. Specifically, the reads-per-million is shown to allow comparisons between libraries of different size. The plots themselves are constructed using methods from the Gviz package. The blue and red tracks represent the coverage on the forward and reverse strands, respectively. Strong strand bimodality is consistent with a genuine TF binding site. For paired-end data, coverage can be similarly plotted for fragments, i.e., proper read pairs.

Session information

R version 4.1.0 (2021-05-18)
Platform: x86_64-pc-linux-gnu (64-bit)
Running under: Ubuntu 20.04.2 LTS

Matrix products: default
BLAS:   /home/biocbuild/bbs-3.13-bioc/R/lib/libRblas.so
LAPACK: /home/biocbuild/bbs-3.13-bioc/R/lib/libRlapack.so

locale:
 [1] LC_CTYPE=en_US.UTF-8       LC_NUMERIC=C              
 [3] LC_TIME=en_US.UTF-8        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       

attached base packages:
 [1] grid      parallel  stats4    stats     graphics  grDevices utils    
 [8] datasets  methods   base     

other attached packages:
 [1] Gviz_1.36.0                              
 [2] rtracklayer_1.52.0                       
 [3] TxDb.Mmusculus.UCSC.mm10.knownGene_3.10.0
 [4] GenomicFeatures_1.44.0                   
 [5] org.Mm.eg.db_3.13.0                      
 [6] AnnotationDbi_1.54.0                     
 [7] csaw_1.26.0                              
 [8] SummarizedExperiment_1.22.0              
 [9] Biobase_2.52.0                           
[10] MatrixGenerics_1.4.0                     
[11] matrixStats_0.58.0                       
[12] GenomicRanges_1.44.0                     
[13] GenomeInfoDb_1.28.0                      
[14] IRanges_2.26.0                           
[15] S4Vectors_0.30.0                         
[16] BiocGenerics_0.38.0                      
[17] BiocStyle_2.20.0                         
[18] rebook_1.2.0                             

loaded via a namespace (and not attached):
  [1] colorspace_2.0-1         rjson_0.2.20             ellipsis_0.3.2          
  [4] htmlTable_2.2.1          biovizBase_1.40.0        XVector_0.32.0          
  [7] base64enc_0.1-3          dichromat_2.0-0          rstudioapi_0.13         
 [10] bit64_4.0.5              fansi_0.4.2              codetools_0.2-18        
 [13] splines_4.1.0            cachem_1.0.5             knitr_1.33              
 [16] Formula_1.2-4            jsonlite_1.7.2           Rsamtools_2.8.0         
 [19] cluster_2.1.2            dbplyr_2.1.1             png_0.1-7               
 [22] graph_1.70.0             BiocManager_1.30.15      compiler_4.1.0          
 [25] httr_1.4.2               backports_1.2.1          lazyeval_0.2.2          
 [28] assertthat_0.2.1         Matrix_1.3-3             fastmap_1.1.0           
 [31] limma_3.48.0             htmltools_0.5.1.1        prettyunits_1.1.1       
 [34] tools_4.1.0              gtable_0.3.0             glue_1.4.2              
 [37] GenomeInfoDbData_1.2.6   dplyr_1.0.6              rappdirs_0.3.3          
 [40] Rcpp_1.0.6               jquerylib_0.1.4          vctrs_0.3.8             
 [43] Biostrings_2.60.0        xfun_0.23                stringr_1.4.0           
 [46] lifecycle_1.0.0          ensembldb_2.16.0         restfulr_0.0.13         
 [49] XML_3.99-0.6             edgeR_3.34.0             zlibbioc_1.38.0         
 [52] scales_1.1.1             BSgenome_1.60.0          VariantAnnotation_1.38.0
 [55] ProtGenerics_1.24.0      hms_1.1.0                AnnotationFilter_1.16.0 
 [58] RColorBrewer_1.1-2       yaml_2.2.1               curl_4.3.1              
 [61] gridExtra_2.3            memoise_2.0.0            ggplot2_3.3.3           
 [64] sass_0.4.0               rpart_4.1-15             biomaRt_2.48.0          
 [67] latticeExtra_0.6-29      stringi_1.6.2            RSQLite_2.2.7           
 [70] highr_0.9                BiocIO_1.2.0             checkmate_2.0.0         
 [73] filelock_1.0.2           BiocParallel_1.26.0      rlang_0.4.11            
 [76] pkgconfig_2.0.3          bitops_1.0-7             evaluate_0.14           
 [79] lattice_0.20-44          purrr_0.3.4              htmlwidgets_1.5.3       
 [82] GenomicAlignments_1.28.0 CodeDepends_0.6.5        bit_4.0.4               
 [85] tidyselect_1.1.1         magrittr_2.0.1           bookdown_0.22           
 [88] R6_2.5.0                 generics_0.1.0           Hmisc_4.5-0             
 [91] metapod_1.0.0            DelayedArray_0.18.0      DBI_1.1.1               
 [94] foreign_0.8-81           pillar_1.6.1             nnet_7.3-16             
 [97] survival_3.2-11          KEGGREST_1.32.0          RCurl_1.98-1.3          
[100] tibble_3.1.2             dir.expiry_1.0.0         crayon_1.4.1            
[103] utf8_1.2.1               BiocFileCache_2.0.0      rmarkdown_2.8           
[106] jpeg_0.1-8.1             progress_1.2.2           locfit_1.5-9.4          
[109] data.table_1.14.0        blob_1.2.1               digest_0.6.27           
[112] munsell_0.5.0            bslib_0.2.5.1