Contents

1 Installation

BiocManager::install("TADCompare")

2 Introduction

Using the output of TADCompare and TimeCompare, we can do a range of analyses. One common one is gene ontology enrichment analysis to determine the pathways in which genes near TAD boundaries occur in. To do this, we use rGREAT an R package for performing gene ontology enrichment analysis.

3 Performing gene ontology analysis using TADCompare

In the first example, we show how to perform gene ontology enrichment using differential boundaries. Here, we perform the analysis on shifted boundaries detected in matrix 1.

library(rGREAT)
# Reading in data
data("rao_chr22_prim")
data("rao_chr22_rep")

# Performing differential analysis
results <- TADCompare(rao_chr22_prim, rao_chr22_rep, resolution = 50000)

# Saving the results into its own data frame
TAD_Frame <- results$TAD_Frame

# Filter data to only include complex boundaries enriched in the second
# contact matrix
TAD_Frame <- TAD_Frame %>% dplyr::filter((Type == "Shifted") & 
                                         (Enriched_In == "Matrix 2"))

# Assign a chromosome and convert to a bed format
TAD_Frame <- TAD_Frame %>% dplyr::select(Boundary) %>% mutate(chr = "chr22", 
    start = Boundary, end = Boundary) %>% dplyr::select(chr, start, end)

# Set up rGREAT job with default parameters
great_shift <- submitGreatJob(TAD_Frame, request_interval = 1, version = "2.0")

# Submit the job
enrichment_table <- getEnrichmentTables(great_shift)

# Subset to only include vital information
enrichment_table <- bind_rows(enrichment_table, .id = "source") %>% 
  dplyr::select(Ontology = source, Description = name, 
                `P-value` = Hyper_Raw_PValue)

# Print head organizaed by p-values
head(enrichment_table %>% dplyr::arrange(`P-value`))
##                Ontology                                          Description
## 1 GO Molecular Function                   gamma-glutamyltransferase activity
## 2 GO Biological Process                     glutathione biosynthetic process
## 3 GO Cellular Component         anchored to external side of plasma membrane
## 4 GO Cellular Component        intrinsic to external side of plasma membrane
## 5 GO Biological Process                         peptide biosynthetic process
## 6 GO Molecular Function transferase activity, transferring amino-acyl groups
##       P-value
## 1 0.001802360
## 2 0.002927596
## 3 0.003152529
## 4 0.004051881
## 5 0.004725996
## 6 0.004950625

The first column, “Ontology”, is simply the domain from which the corresponding ontology (“Description” column) comes from. Here, we use the default, which is the GO ontologies. For more available ontologies, see the rGREAT vignette. “Description” is the pathway itself. “P-value” is the unadjusted hypergeometric p-value, as output by rGREAT. rGREAT also provides binomial p-values (Binom_Raw_Pvalue, Binom_Adjp_BH) and adjusted hypergeometric p-values (Hyper_Adjp_BH).

Now we demonstrate how to perform the same analysis but for all boundary types simultaneously. In this case, we use time-varying data.

# Read in time course data
data("time_mats")
# Identifying boundaries
results <- TimeCompare(time_mats, resolution = 50000)

# Pulling out the frame of TADs
TAD_Frame <- results$TAD_Bounds

# Getting coordinates for TAD boundaries and converting into bed format
Bound_List <- lapply(unique(TAD_Frame$Category), function(x) {
    TAD_Frame %>% filter((Category == x)) %>% mutate(chr = "chr22") %>% 
        dplyr::select(chr, Coordinate) %>% 
        mutate(start = Coordinate, end = Coordinate) %>% 
        dplyr::select(chr, start, end)
})

# Performing rGREAT analysis for each boundary Category
TAD_Enrich <- lapply(Bound_List, function(x) {
  getEnrichmentTables(submitGreatJob(x, request_interval = 1, version = "2.0"))
})

# Name list of data frames to keep track of which enrichment belongs to which
names(TAD_Enrich) <- unique(TAD_Frame$Category)

# Bind each category of pathway and create new column for each pathway
TAD_Enrich <- lapply(names(TAD_Enrich), function(x) {
  bind_rows(lapply(TAD_Enrich[[x]], function(y) {
    y %>% mutate(Category = x)
  }), .id = "source")
})

# Bind each boundary category together and pull out important variables
enrichment_table <- bind_rows(TAD_Enrich) %>% 
  dplyr::select(Ontology = source, Description = name, 
                `P-value` = Hyper_Raw_PValue, Category)

# Get the top enriched pathways
head(enrichment_table %>% dplyr::arrange(`P-value`))
##                Ontology
## 1 GO Biological Process
## 2 GO Molecular Function
## 3 GO Biological Process
## 4 GO Biological Process
## 5 GO Biological Process
## 6 GO Molecular Function
##                                                Description      P-value
## 1 positive regulation of B cell receptor signaling pathway 0.0002254283
## 2                               lipid transporter activity 0.0003760684
## 3          regulation of B cell receptor signaling pathway 0.0004508185
## 4                               Schwann cell proliferation 0.0006761897
## 5                            lipoprotein metabolic process 0.0007139088
## 6        peptide-methionine (R)-S-oxide reductase activity 0.0009015354
##              Category
## 1         Dynamic TAD
## 2   Highly Common TAD
## 3         Dynamic TAD
## 4 Early Appearing TAD
## 5   Highly Common TAD
## 6   Highly Common TAD

These columns are the same as the differential analysis but with an extra column, “Category”, indicating the type of time-varying TAD boundary.

4 Session Info

sessionInfo()
## R version 4.2.0 RC (2022-04-19 r82224)
## Platform: x86_64-pc-linux-gnu (64-bit)
## Running under: Ubuntu 20.04.4 LTS
## 
## Matrix products: default
## BLAS:   /home/biocbuild/bbs-3.15-bioc/R/lib/libRblas.so
## LAPACK: /home/biocbuild/bbs-3.15-bioc/R/lib/libRlapack.so
## 
## 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       
## 
## attached base packages:
## [1] stats4    stats     graphics  grDevices utils     datasets  methods  
## [8] base     
## 
## other attached packages:
##  [1] rGREAT_1.28.0        GenomicRanges_1.48.0 GenomeInfoDb_1.32.0 
##  [4] IRanges_2.30.0       S4Vectors_0.34.0     BiocGenerics_0.42.0 
##  [7] microbenchmark_1.4.9 TADCompare_1.6.0     SpectralTAD_1.12.0  
## [10] dplyr_1.0.8          BiocStyle_2.24.0    
## 
## loaded via a namespace (and not attached):
##   [1] TH.data_1.1-1               colorspace_2.0-3           
##   [3] rjson_0.2.21                ggsignif_0.6.3             
##   [5] ellipsis_0.3.2              CGHcall_2.58.0             
##   [7] DNAcopy_1.70.0              XVector_0.36.0             
##   [9] GlobalOptions_0.1.2         ggpubr_0.4.0               
##  [11] listenv_0.8.0               mvtnorm_1.1-3              
##  [13] fansi_1.0.3                 HiCcompare_1.18.0          
##  [15] codetools_0.2-18            splines_4.2.0              
##  [17] R.methodsS3_1.8.1           impute_1.70.0              
##  [19] knitr_1.38                  jsonlite_1.8.0             
##  [21] Rsamtools_2.12.0            broom_0.8.0                
##  [23] R.oo_1.24.0                 pheatmap_1.0.12            
##  [25] BiocManager_1.30.17         compiler_4.2.0             
##  [27] backports_1.4.1             assertthat_0.2.1           
##  [29] Matrix_1.4-1                fastmap_1.1.0              
##  [31] limma_3.52.0                cli_3.3.0                  
##  [33] htmltools_0.5.2             tools_4.2.0                
##  [35] gtable_0.3.0                glue_1.6.2                 
##  [37] GenomeInfoDbData_1.2.8      reshape2_1.4.4             
##  [39] Rcpp_1.0.8.3                carData_3.0-5              
##  [41] Biobase_2.56.0              jquerylib_0.1.4            
##  [43] vctrs_0.4.1                 Biostrings_2.64.0          
##  [45] rhdf5filters_1.8.0          nlme_3.1-157               
##  [47] QDNAseq_1.32.0              xfun_0.30                  
##  [49] stringr_1.4.0               globals_0.14.0             
##  [51] lifecycle_1.0.1             gtools_3.9.2               
##  [53] rstatix_0.7.0               InteractionSet_1.24.0      
##  [55] future_1.25.0               MASS_7.3-57                
##  [57] zoo_1.8-10                  zlibbioc_1.42.0            
##  [59] scales_1.2.0                MatrixGenerics_1.8.0       
##  [61] sandwich_3.0-1              parallel_4.2.0             
##  [63] SummarizedExperiment_1.26.0 rhdf5_2.40.0               
##  [65] RColorBrewer_1.1-3          yaml_2.3.5                 
##  [67] gridExtra_2.3               ggplot2_3.3.5              
##  [69] sass_0.4.1                  CGHbase_1.56.0             
##  [71] stringi_1.7.6               highr_0.9                  
##  [73] BiocParallel_1.30.0         rlang_1.0.2                
##  [75] pkgconfig_2.0.3             matrixStats_0.62.0         
##  [77] bitops_1.0-7                evaluate_0.15              
##  [79] lattice_0.20-45             purrr_0.3.4                
##  [81] Rhdf5lib_1.18.0             cowplot_1.1.1              
##  [83] tidyselect_1.1.2            parallelly_1.31.1          
##  [85] plyr_1.8.7                  magrittr_2.0.3             
##  [87] bookdown_0.26               R6_2.5.1                   
##  [89] magick_2.7.3                generics_0.1.2             
##  [91] multcomp_1.4-19             DelayedArray_0.22.0        
##  [93] DBI_1.1.2                   pillar_1.7.0               
##  [95] mgcv_1.8-40                 survival_3.3-1             
##  [97] abind_1.4-5                 RCurl_1.98-1.6             
##  [99] tibble_3.1.6                future.apply_1.9.0         
## [101] PRIMME_3.2-1                crayon_1.5.1               
## [103] car_3.0-12                  KernSmooth_2.23-20         
## [105] utf8_1.2.2                  rmarkdown_2.14             
## [107] GetoptLong_1.0.5            grid_4.2.0                 
## [109] data.table_1.14.2           marray_1.74.0              
## [111] digest_0.6.29               tidyr_1.2.0                
## [113] R.utils_2.11.0              munsell_0.5.0              
## [115] bslib_0.3.1