BiocManager::install("TADCompare")
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.
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.
sessionInfo()
## R version 4.4.1 (2024-06-14)
## Platform: x86_64-pc-linux-gnu
## Running under: Ubuntu 24.04.1 LTS
##
## Matrix products: default
## BLAS: /home/biocbuild/bbs-3.20-bioc/R/lib/libRblas.so
## LAPACK: /usr/lib/x86_64-linux-gnu/lapack/liblapack.so.3.12.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.5.0 TADCompare_1.16.0 SpectralTAD_1.22.0
## [4] dplyr_1.1.4 BiocStyle_2.34.0
##
## loaded via a namespace (and not attached):
## [1] gridExtra_2.3 sandwich_3.1-1
## [3] rlang_1.1.4 magrittr_2.0.3
## [5] multcomp_1.4-26 matrixStats_1.4.1
## [7] compiler_4.4.1 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.3 fastmap_1.2.0
## [15] backports_1.5.0 magick_2.8.5
## [17] XVector_0.46.0 utf8_1.2.4
## [19] rmarkdown_2.28 UCSC.utils_1.2.0
## [21] tinytex_0.53 purrr_1.0.2
## [23] xfun_0.48 zlibbioc_1.52.0
## [25] cachem_1.1.0 GenomeInfoDb_1.42.0
## [27] jsonlite_1.8.9 highr_0.11
## [29] rhdf5filters_1.18.0 DelayedArray_0.32.0
## [31] Rhdf5lib_1.28.0 BiocParallel_1.40.0
## [33] broom_1.0.7 parallel_4.4.1
## [35] cluster_2.1.6 R6_2.5.1
## [37] bslib_0.8.0 stringi_1.8.4
## [39] RColorBrewer_1.1-3 car_3.1-3
## [41] GenomicRanges_1.58.0 jquerylib_0.1.4
## [43] Rcpp_1.0.13 bookdown_0.41
## [45] SummarizedExperiment_1.36.0 knitr_1.48
## [47] zoo_1.8-12 IRanges_2.40.0
## [49] Matrix_1.7-1 splines_4.4.1
## [51] tidyselect_1.2.1 abind_1.4-8
## [53] yaml_2.3.10 codetools_0.2-20
## [55] lattice_0.22-6 tibble_3.2.1
## [57] plyr_1.8.9 withr_3.0.2
## [59] InteractionSet_1.34.0 Biobase_2.66.0
## [61] evaluate_1.0.1 survival_3.7-0
## [63] PRIMME_3.2-6 pillar_1.9.0
## [65] BiocManager_1.30.25 ggpubr_0.6.0
## [67] MatrixGenerics_1.18.0 carData_3.0-5
## [69] KernSmooth_2.23-24 stats4_4.4.1
## [71] generics_0.1.3 S4Vectors_0.44.0
## [73] ggplot2_3.5.1 munsell_0.5.1
## [75] scales_1.3.0 HiCcompare_1.28.0
## [77] gtools_3.9.5 glue_1.8.0
## [79] pheatmap_1.0.12 tools_4.4.1
## [81] data.table_1.16.2 ggsignif_0.6.4
## [83] mvtnorm_1.3-1 cowplot_1.1.3
## [85] rhdf5_2.50.0 grid_4.4.1
## [87] tidyr_1.3.1 colorspace_2.1-1
## [89] nlme_3.1-166 GenomeInfoDbData_1.2.13
## [91] Formula_1.2-5 cli_3.6.3
## [93] fansi_1.0.6 S4Arrays_1.6.0
## [95] gtable_0.3.6 rstatix_0.7.2
## [97] sass_0.4.9 digest_0.6.37
## [99] BiocGenerics_0.52.0 TH.data_1.1-2
## [101] SparseArray_1.6.0 htmltools_0.5.8.1
## [103] lifecycle_1.0.4 httr_1.4.7
## [105] MASS_7.3-61