# IMPORTANT: this vignette can not be created if HiTC is not installed
if (!require("HiTC", quietly = TRUE)) {
knitr::opts_chunk$set(eval = FALSE)
}
##
## Attaching package: 'generics'
## The following objects are masked from 'package:base':
##
## as.difftime, as.factor, as.ordered, intersect, is.element, setdiff,
## setequal, union
##
## Attaching package: 'BiocGenerics'
## The following objects are masked from 'package:generics':
##
## intersect, setdiff, setequal, union
## The following objects are masked from 'package:stats':
##
## IQR, mad, sd, var, xtabs
## The following objects are masked from 'package:base':
##
## Filter, Find, Map, Position, Reduce, anyDuplicated, aperm, append,
## as.data.frame, basename, cbind, colnames, dirname, do.call,
## duplicated, eval, evalq, get, grep, grepl, intersect, is.unsorted,
## lapply, mapply, match, mget, order, paste, pmax, pmax.int, pmin,
## pmin.int, rank, rbind, rownames, sapply, saveRDS, setdiff,
## setequal, table, tapply, union, unique, unsplit, which.max,
## which.min
## Warning: multiple methods tables found for 'setequal'
##
## Attaching package: 'S4Vectors'
## The following object is masked from 'package:utils':
##
## findMatches
## The following objects are masked from 'package:base':
##
## I, expand.grid, unname
## Warning: replacing previous import 'BiocGenerics::setequal' by
## 'S4Vectors::setequal' when loading 'IRanges'
## Warning: replacing previous import 'BiocGenerics::setequal' by
## 'S4Vectors::setequal' when loading 'GenomeInfoDb'
## Warning: replacing previous import 'BiocGenerics::setequal' by
## 'S4Vectors::setequal' when loading 'GenomicRanges'
## Warning: replacing previous import 'BiocGenerics::setequal' by
## 'S4Vectors::setequal' when loading 'XVector'
## Warning: replacing previous import 'BiocGenerics::setequal' by
## 'S4Vectors::setequal' when loading 'Biostrings'
## Warning: multiple methods tables found for 'setequal'
## Warning: replacing previous import 'BiocGenerics::setequal' by
## 'S4Vectors::setequal' when loading 'rtracklayer'
## Warning: replacing previous import 'BiocGenerics::setequal' by
## 'S4Vectors::setequal' when loading 'GenomicAlignments'
## Warning: replacing previous import 'BiocGenerics::setequal' by
## 'S4Vectors::setequal' when loading 'SummarizedExperiment'
## Warning: replacing previous import 'BiocGenerics::setequal' by
## 'S4Vectors::setequal' when loading 'S4Arrays'
## Warning: replacing previous import 'BiocGenerics::setequal' by
## 'S4Vectors::setequal' when loading 'DelayedArray'
## Warning: replacing previous import 'BiocGenerics::setequal' by
## 'S4Vectors::setequal' when loading 'SparseArray'
## Warning: replacing previous import 'S4Arrays::read_block' by
## 'DelayedArray::read_block' when loading 'SummarizedExperiment'
Hi-C is a sequencing-based molecular assay designed to measure intra and inter-chromosomal interactions between the DNA molecule. In particular, the identification of Topologically-Associated Domains (TADs), that is, of regions of the genome in which physical interactions are frequent, provides insight into the three-dimensional organization of a genome [2].
Hi-C data are in the form of two-dimensional contact maps,
i.e., matrices whose i, j entry quantifies the
intensity of the physical interaction between two genome regions i and j at the DNA level. In this
vignette, we demonstrate the use of adjclust::hicClust
to
perform adjacency-constrained hierarchical agglomerative clustering
(HAC) of Hi-C contact maps. The output of this function is a dendrogram,
which can be cut to identify TADs. The algorithm used for
adjacency-constrained (HAC) is described in [3,4].
The data set hic_imr90_40_XX
is an object of class
HTCexp
which has been obtained from the HiTC
package [4]. It is a contact map corresponding to the first 500 x 500
bins on chromosome X vs chromosome X.
The script used to create this map can be found by executing the following command:
## [1] "/tmp/RtmpPpH9ye/Rinst185017154ef5/adjclust/system/create_hic_chrXchrX.R"
Now we have a look at the data.
hicClust
hicClust
operates directly on objects of class
HTCexp
It is also possible to work on binned data. Below we choose a bin size of 5 × 105:
##
## Call:
## hicClust(binned)
##
## Cluster method : hicClust
## Number of objects: 205
The output is of class chac
. In particular, it can be
plotted as a dendrogram silently relying on the function
plot.dendrogram
:
Moreover, the output contains an element named merge
which describes the successive merges of the clustering, and an element
gains
which gives the improvement in the criterion
optimized by the clustering at each successive merge.
## [,1] [,2]
## [1,] -3 -4
## [2,] -2 1
## [3,] 2 -5
## [4,] -1 3
## [5,] 4 -6
## [6,] -17 -18
Contacts maps can also be stored as objects of class
Matrix::dsCMatrix
, or as plain text files. These types of
input are also accepted as first argument to hicClust
.
[1] Ambroise C., Dehman A., Neuvial P., Rigaill G., and Vialaneix N. (2019). Adjacency-constrained hierarchical clustering of a band similarity matrix with application to genomics. Algorithms for Molecular Biology, 14, 22.
[2] Dixon J.R., et al (2012). Topological domains in mammalian genomes identified by analysis of chromatin interactions. Nature, 485(7398), 376.
[3] Randriamihamison N., Vialaneix N., and Neuvial P. (2021). Applicability and interpretability of Ward’s hierarchical agglomerative clustering with or without contiguity constraints. Journal of Classification, 38, 363–389.
[4] Servant N., et al (2012). HiTC: Exploration of High-Throughput ‘C’ experiments. Bioinformatics, 28(21), 2843-2844.
## R version 4.4.2 (2024-10-31)
## Platform: x86_64-pc-linux-gnu
## Running under: Ubuntu 24.04.1 LTS
##
## Matrix products: default
## BLAS: /usr/lib/x86_64-linux-gnu/openblas-pthread/libblas.so.3
## LAPACK: /usr/lib/x86_64-linux-gnu/openblas-pthread/libopenblasp-r0.3.26.so; LAPACK version 3.12.0
##
## 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
##
## time zone: Etc/UTC
## tzcode source: system (glibc)
##
## attached base packages:
## [1] stats4 stats graphics grDevices utils datasets methods
## [8] base
##
## other attached packages:
## [1] adjclust_0.6.10 HiTC_1.51.0 GenomicRanges_1.59.0
## [4] GenomeInfoDb_1.43.0 IRanges_2.41.0 S4Vectors_0.45.0
## [7] BiocGenerics_0.53.1 generics_0.1.3
##
## loaded via a namespace (and not attached):
## [1] SummarizedExperiment_1.37.0 capushe_1.1.2
## [3] gtable_0.3.6 rjson_0.2.23
## [5] xfun_0.49 bslib_0.8.0
## [7] ggplot2_3.5.1 Biobase_2.67.0
## [9] lattice_0.22-6 vctrs_0.6.5
## [11] tools_4.4.2 bitops_1.0-9
## [13] curl_6.0.0 parallel_4.4.2
## [15] fansi_1.0.6 tibble_3.2.1
## [17] highr_0.11 pkgconfig_2.0.3
## [19] Matrix_1.7-1 RColorBrewer_1.1-3
## [21] sparseMatrixStats_1.19.0 lifecycle_1.0.4
## [23] GenomeInfoDbData_1.2.13 compiler_4.4.2
## [25] Rsamtools_2.23.0 Biostrings_2.75.0
## [27] munsell_0.5.1 codetools_0.2-20
## [29] htmltools_0.5.8.1 sys_3.4.3
## [31] buildtools_1.0.0 sass_0.4.9
## [33] RCurl_1.98-1.16 yaml_2.3.10
## [35] pillar_1.9.0 crayon_1.5.3
## [37] jquerylib_0.1.4 MASS_7.3-61
## [39] BiocParallel_1.41.0 cachem_1.1.0
## [41] DelayedArray_0.33.1 viridis_0.6.5
## [43] abind_1.4-8 digest_0.6.37
## [45] restfulr_0.0.15 maketools_1.3.1
## [47] fastmap_1.2.0 grid_4.4.2
## [49] colorspace_2.1-1 cli_3.6.3
## [51] SparseArray_1.7.1 magrittr_2.0.3
## [53] S4Arrays_1.7.1 utf8_1.2.4
## [55] XML_3.99-0.17 UCSC.utils_1.3.0
## [57] scales_1.3.0 rmarkdown_2.29
## [59] XVector_0.47.0 httr_1.4.7
## [61] matrixStats_1.4.1 gridExtra_2.3
## [63] evaluate_1.0.1 knitr_1.48
## [65] BiocIO_1.17.0 viridisLite_0.4.2
## [67] rtracklayer_1.67.0 rlang_1.1.4
## [69] dendextend_1.18.1 Rcpp_1.0.13-1
## [71] glue_1.8.0 jsonlite_1.8.9
## [73] R6_2.5.1 MatrixGenerics_1.19.0
## [75] GenomicAlignments_1.43.0 zlibbioc_1.52.0