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     P-value
1 GO Molecular Function                   gamma-glutamyltransferase activity 0.001802360
2 GO Biological Process                     glutathione biosynthetic process 0.002927596
3 GO Cellular Component         anchored to external side of plasma membrane 0.003152529
4 GO Cellular Component        intrinsic to external side of plasma membrane 0.004051881
5 GO Biological Process                         peptide biosynthetic process 0.004725996
6 GO Molecular Function transferase activity, transferring amino-acyl groups 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                                              Description      P-value            Category
1 GO Biological Process positive regulation of B cell receptor signaling pathway 0.0002254283         Dynamic TAD
2 GO Molecular Function                               lipid transporter activity 0.0003760684   Highly Common TAD
3 GO Biological Process          regulation of B cell receptor signaling pathway 0.0004508185         Dynamic TAD
4 GO Biological Process                               Schwann cell proliferation 0.0006761897 Early Appearing TAD
5 GO Biological Process                            lipoprotein metabolic process 0.0007139088   Highly Common TAD
6 GO Molecular Function        peptide-methionine (R)-S-oxide reductase activity 0.0009015354   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 Under development (unstable) (2024-03-06 r86056)
## Platform: x86_64-pc-linux-gnu
## Running under: Ubuntu 22.04.4 LTS
## 
## Matrix products: default
## BLAS:   /home/biocbuild/bbs-3.19-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] stats     graphics  grDevices utils     datasets  methods   base     
## 
## other attached packages:
## [1] microbenchmark_1.4.10 TADCompare_1.13.3     SpectralTAD_1.19.0   
## [4] dplyr_1.1.4           BiocStyle_2.31.0     
## 
## loaded via a namespace (and not attached):
##   [1] gridExtra_2.3               sandwich_3.1-0             
##   [3] rlang_1.1.3                 magrittr_2.0.3             
##   [5] multcomp_1.4-25             matrixStats_1.2.0          
##   [7] compiler_4.4.0              mgcv_1.9-1                 
##   [9] vctrs_0.6.5                 reshape2_1.4.4             
##  [11] stringr_1.5.1               pkgconfig_2.0.3            
##  [13] crayon_1.5.2                fastmap_1.1.1              
##  [15] backports_1.4.1             magick_2.8.3               
##  [17] XVector_0.43.1              utf8_1.2.4                 
##  [19] rmarkdown_2.26              purrr_1.0.2                
##  [21] xfun_0.42                   zlibbioc_1.49.0            
##  [23] cachem_1.0.8                GenomeInfoDb_1.39.8        
##  [25] jsonlite_1.8.8              highr_0.10                 
##  [27] rhdf5filters_1.15.2         DelayedArray_0.29.9        
##  [29] Rhdf5lib_1.25.1             BiocParallel_1.37.1        
##  [31] broom_1.0.5                 parallel_4.4.0             
##  [33] cluster_2.1.6               R6_2.5.1                   
##  [35] bslib_0.6.1                 stringi_1.8.3              
##  [37] RColorBrewer_1.1-3          car_3.1-2                  
##  [39] GenomicRanges_1.55.3        jquerylib_0.1.4            
##  [41] Rcpp_1.0.12                 bookdown_0.38              
##  [43] SummarizedExperiment_1.33.3 knitr_1.45                 
##  [45] zoo_1.8-12                  IRanges_2.37.1             
##  [47] Matrix_1.6-5                splines_4.4.0              
##  [49] tidyselect_1.2.0            abind_1.4-5                
##  [51] yaml_2.3.8                  codetools_0.2-19           
##  [53] lattice_0.22-5              tibble_3.2.1               
##  [55] plyr_1.8.9                  InteractionSet_1.31.0      
##  [57] Biobase_2.63.0              withr_3.0.0                
##  [59] evaluate_0.23               survival_3.5-8             
##  [61] PRIMME_3.2-6                pillar_1.9.0               
##  [63] BiocManager_1.30.22         ggpubr_0.6.0               
##  [65] MatrixGenerics_1.15.0       carData_3.0-5              
##  [67] KernSmooth_2.23-22          stats4_4.4.0               
##  [69] generics_0.1.3              S4Vectors_0.41.4           
##  [71] ggplot2_3.5.0               munsell_0.5.0              
##  [73] scales_1.3.0                HiCcompare_1.25.0          
##  [75] gtools_3.9.5                glue_1.7.0                 
##  [77] pheatmap_1.0.12             tools_4.4.0                
##  [79] data.table_1.15.2           ggsignif_0.6.4             
##  [81] mvtnorm_1.2-4               cowplot_1.1.3              
##  [83] rhdf5_2.47.5                grid_4.4.0                 
##  [85] tidyr_1.3.1                 colorspace_2.1-0           
##  [87] nlme_3.1-164                GenomeInfoDbData_1.2.11    
##  [89] cli_3.6.2                   fansi_1.0.6                
##  [91] S4Arrays_1.3.6              gtable_0.3.4               
##  [93] rstatix_0.7.2               sass_0.4.8                 
##  [95] digest_0.6.34               BiocGenerics_0.49.1        
##  [97] TH.data_1.1-2               SparseArray_1.3.4          
##  [99] htmltools_0.5.7             lifecycle_1.0.4            
## [101] MASS_7.3-60.2