In this vignette we demonstrate generating covariate-matched, null-hypothesis GRanges using the matchRanges()
function to test for the occupancy of CCCTC-binding factor (CTCF) at chromatin loop anchors.
One of the fundamental principles of chromatin-looping suggests that most loops are bound at both ends by the CTCF transcription factor (TF). CTCF-bound loops can be formed by loop-extrusion, where the ring-like cohesin complex extrudes chromatin until stopped by bound CTCF. By this mechanism, we expect most loop anchors will be bound by CTCF.
While we could test this hypothesis by simple overlap or permutation testing, these approaches fail to account for non-uniformly distributed covariate genomic features. For example, loop anchors are commonly bound by CTCF and located in open chromatin regions. We can use matchRanges()
to test for CTCF occupancy at loop anchors controlling for open chromatin regions.
Here, we generate a set of null-hypothesis GRanges to more rigorously test CTCF occupancy at loop anchors independently from open chromatin regions. We use the hg19_10kb_bins
dataset from the nullrangesData
package, which contains ranges for every 10Kb bin along the genome with CTCF, DNase, and loop feature annotations from GM12878 (see ?nullrangesData::hg19_10kb_bins
).
matchRanges()
Before we generate our null ranges, let’s take a look at our example dataset:
## GRanges object with 303641 ranges and 5 metadata columns:
## seqnames ranges strand | n_ctcf_sites ctcfSignal
## <Rle> <IRanges> <Rle> | <numeric> <numeric>
## [1] chr1 1-10000 * | 0 0
## [2] chr1 10001-20000 * | 0 0
## [3] chr1 20001-30000 * | 0 0
## [4] chr1 30001-40000 * | 0 0
## [5] chr1 40001-50000 * | 0 0
## ... ... ... ... . ... ...
## [303637] chrX 155230001-155240000 * | 0 0.00000
## [303638] chrX 155240001-155250000 * | 0 0.00000
## [303639] chrX 155250001-155260000 * | 1 4.09522
## [303640] chrX 155260001-155270000 * | 0 0.00000
## [303641] chrX 155270001-155270560 * | 0 0.00000
## n_dnase_sites dnaseSignal looped
## <factor> <numeric> <logical>
## [1] 0 0.00000 FALSE
## [2] 0 5.03572 FALSE
## [3] 0 0.00000 FALSE
## [4] 0 0.00000 FALSE
## [5] 0 0.00000 FALSE
## ... ... ... ...
## [303637] 0 8.42068 FALSE
## [303638] 0 4.08961 FALSE
## [303639] 0 6.00443 FALSE
## [303640] 0 8.07179 FALSE
## [303641] 0 0.00000 FALSE
## -------
## seqinfo: 23 sequences from hg19 genome
matchRanges()
works by selecting a set of covariate-matched controls from a pool of options based on an input focal set of interest. Here, we define focal
as bins that contain a loop anchor, pool
as bins that don’t contain a loop anchor, and covar
as DNase signal and number of DNase sites per bin:
library(nullranges)
## Match ranges
set.seed(123)
mgr <- matchRanges(focal = bins[bins$looped],
pool = bins[!bins$looped],
covar = ~dnaseSignal + n_dnase_sites)
mgr
## MatchedGRanges object with 13979 ranges and 5 metadata columns:
## seqnames ranges strand | n_ctcf_sites ctcfSignal
## <Rle> <IRanges> <Rle> | <numeric> <numeric>
## [1] chr10 25240001-25250000 * | 1 5.06009
## [2] chr2 192860001-192870000 * | 0 0.00000
## [3] chr10 90060001-90070000 * | 0 0.00000
## [4] chr7 3840001-3850000 * | 0 0.00000
## [5] chr14 77370001-77380000 * | 1 7.66659
## ... ... ... ... . ... ...
## [13975] chr1 154910001-154920000 * | 2 7.70130
## [13976] chr4 185960001-185970000 * | 1 7.13074
## [13977] chr1 236080001-236090000 * | 0 0.00000
## [13978] chr5 35290001-35300000 * | 0 0.00000
## [13979] chr11 119300001-119310000 * | 0 0.00000
## n_dnase_sites dnaseSignal looped
## <factor> <numeric> <logical>
## [1] 3+ 12.33182 FALSE
## [2] 1 10.80692 FALSE
## [3] 1 8.56733 FALSE
## [4] 0 7.96488 FALSE
## [5] 3+ 13.38591 FALSE
## ... ... ... ...
## [13975] 3+ 13.99531 FALSE
## [13976] 1 9.63596 FALSE
## [13977] 3+ 11.32430 FALSE
## [13978] 1 9.57321 FALSE
## [13979] 1 8.58206 FALSE
## -------
## seqinfo: 23 sequences from hg19 genome
When the focal and pool arguments are GRanges
objects, matchRanges()
returns a MatchedGRanges
object. The MatchedGRanges
class extends GRanges
, so all of the same operations can be applied:
library(GenomicRanges)
library(plyranges)
library(ggplot2)
## Summarize ctcfSignal by n_ctcf_sites
mgr %>%
group_by(n_ctcf_sites) %>%
summarize(ctcfSignal = mean(ctcfSignal)) %>%
as.data.frame() %>%
ggplot(aes(x = n_ctcf_sites, y = ctcfSignal)) +
geom_line() +
geom_point(shape = 21, stroke = 1, fill = 'white') +
theme_minimal() +
theme(panel.border = element_rect(color = 'black',
fill = NA))
Here, we utilize the plyranges
package which provides a set of “tidy” verbs for manipulating genomic ranges for a seamless and integrated genomic analysis workflow.
We can get a quick summary of the matching quality with overview()
:
## MatchedGRanges object:
## set N dnaseSignal.mean dnaseSignal.sd n_dnase_sites.0
## focal 13979 10.0 1.9 2341
## matched 13979 10.0 1.9 2340
## pool 289662 7.9 2.7 222164
## unmatched 277229 7.8 2.7 219844
## n_dnase_sites.1 n_dnase_sites.2 n_dnase_sites.3+ ps.mean ps.sd
## 4829 2353 4456 0.130 0.072
## 5146 2447 4046 0.130 0.072
## 34826 13627 19045 0.042 0.061
## 30269 11504 15612 0.038 0.058
## --------
## focal - matched:
## dnaseSignal.mean dnaseSignal.sd n_dnase_sites.0 n_dnase_sites.1
## 0.013 0.0085 1 -320
## n_dnase_sites.2 n_dnase_sites.3+ ps.mean ps.sd
## -94 410 3.9e-07 1.1e-06
For continuous covariates (such as dnaseSignal
), overview()
shows the mean and standard deviation between each matched set. For categorical covariates, such as n_dnase_sites
, overview()
reports the number of observations per category and matched set. The bottom section shows the mean and s.d (or n, for factors) difference between focal and matched sets.
overview()
also summarizes the propensity scores for each set to give a quick idea of overall matching quality.
Let’s visualize overall matching quality by plotting propensity scores for the focal, pool, and matched sets:
From this plot, it is clear that the matched set is much closer to the focal set than the pool set.
We can ensure that covariate distributions have been matched appropriately by using the covariates()
function to extract matched covariates along with patchwork
and plotCovarite
to visualize all distributions:
Using our matched ranges, we can compare CTCF occupancy in bins that 1) contain a loop anchor (i.e. looped), 2) don’t contain a loop anchor (i.e. unlooped), or 3) don’t contain a loop anchor, but are also matched for the strength and number of DNase sites (i.e. matched). In this case, we calculate CTCF occupancy as the percent of bins that contain CTCF among our 3 sets by using the focal()
and pool()
accessor functions.
In order to pipe the data into plyranges, we bind the ranges together and give each group a meaningful label in this scientific context (e.g. that the focal set is looped, while the background/matched sets are unlooped).
tidy_gr <- bind_ranges(
looped_focal=focal(mgr),
unlooped_pool=pool(mgr),
unlooped_matched=mgr, .id="type"
)
We define some custom colors for our barplot:
And finally we can make the plot, with a grouped summarization followed by some ggplot2 code:
## 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] grid stats4 stats graphics grDevices utils datasets
## [8] methods base
##
## other attached packages:
## [1] cobalt_4.5.1 plotgardener_1.8.0
## [3] ggplot2_3.4.4 purrr_1.0.2
## [5] ggridges_0.5.4 tidyr_1.3.0
## [7] patchwork_1.1.3 plyranges_1.22.0
## [9] nullranges_1.8.0 EnsDb.Hsapiens.v86_2.99.0
## [11] ensembldb_2.26.0 AnnotationFilter_1.26.0
## [13] GenomicFeatures_1.54.0 AnnotationDbi_1.64.0
## [15] nullrangesData_1.7.0 InteractionSet_1.30.0
## [17] SummarizedExperiment_1.32.0 Biobase_2.62.0
## [19] MatrixGenerics_1.14.0 matrixStats_1.0.0
## [21] ExperimentHub_2.10.0 GenomicRanges_1.54.0
## [23] GenomeInfoDb_1.38.0 IRanges_2.36.0
## [25] S4Vectors_0.40.0 AnnotationHub_3.10.0
## [27] BiocFileCache_2.10.0 dbplyr_2.3.4
## [29] BiocGenerics_0.48.0
##
## loaded via a namespace (and not attached):
## [1] strawr_0.0.91 RColorBrewer_1.1-3
## [3] jsonlite_1.8.7 magrittr_2.0.3
## [5] farver_2.1.1 rmarkdown_2.25
## [7] fs_1.6.3 BiocIO_1.12.0
## [9] zlibbioc_1.48.0 vctrs_0.6.4
## [11] memoise_2.0.1 Rsamtools_2.18.0
## [13] RCurl_1.98-1.12 htmltools_0.5.6.1
## [15] S4Arrays_1.2.0 progress_1.2.2
## [17] curl_5.1.0 gridGraphics_0.5-1
## [19] SparseArray_1.2.0 pracma_2.4.2
## [21] sass_0.4.7 KernSmooth_2.23-22
## [23] bslib_0.5.1 cachem_1.0.8
## [25] GenomicAlignments_1.38.0 mime_0.12
## [27] lifecycle_1.0.3 pkgconfig_2.0.3
## [29] Matrix_1.6-1.1 R6_2.5.1
## [31] fastmap_1.1.1 GenomeInfoDbData_1.2.11
## [33] shiny_1.7.5.1 digest_0.6.33
## [35] colorspace_2.1-0 RSQLite_2.3.1
## [37] filelock_1.0.2 labeling_0.4.3
## [39] fansi_1.0.5 httr_1.4.7
## [41] abind_1.4-5 compiler_4.3.1
## [43] bit64_4.0.5 withr_2.5.1
## [45] backports_1.4.1 BiocParallel_1.36.0
## [47] DBI_1.1.3 chk_0.9.1
## [49] biomaRt_2.58.0 rappdirs_0.3.3
## [51] DelayedArray_0.28.0 rjson_0.2.21
## [53] DNAcopy_1.76.0 tools_4.3.1
## [55] interactiveDisplayBase_1.40.0 httpuv_1.6.12
## [57] glue_1.6.2 restfulr_0.0.15
## [59] promises_1.2.1 generics_0.1.3
## [61] gtable_0.3.4 data.table_1.14.8
## [63] hms_1.1.3 xml2_1.3.5
## [65] utf8_1.2.4 XVector_0.42.0
## [67] BiocVersion_3.18.0 pillar_1.9.0
## [69] stringr_1.5.0 yulab.utils_0.1.0
## [71] later_1.3.1 dplyr_1.1.3
## [73] lattice_0.22-5 rtracklayer_1.62.0
## [75] bit_4.0.5 ks_1.14.1
## [77] tidyselect_1.2.0 Biostrings_2.70.0
## [79] knitr_1.44 ProtGenerics_1.34.0
## [81] xfun_0.40 stringi_1.7.12
## [83] lazyeval_0.2.2 yaml_2.3.7
## [85] evaluate_0.22 codetools_0.2-19
## [87] tibble_3.2.1 BiocManager_1.30.22
## [89] ggplotify_0.1.2 cli_3.6.1
## [91] xtable_1.8-4 munsell_0.5.0
## [93] jquerylib_0.1.4 Rcpp_1.0.11
## [95] png_0.1-8 XML_3.99-0.14
## [97] parallel_4.3.1 ellipsis_0.3.2
## [99] blob_1.2.4 prettyunits_1.2.0
## [101] mclust_6.0.0 jpeg_0.1-10
## [103] bitops_1.0-7 mvtnorm_1.2-3
## [105] scales_1.2.1 crayon_1.5.2
## [107] RcppHMM_1.2.2 rlang_1.1.1
## [109] KEGGREST_1.42.0