-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathDESCRIPTION
59 lines (59 loc) · 1.96 KB
/
DESCRIPTION
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
Package: adjclust
Maintainer: Pierre Neuvial <[email protected]>
Authors@R: c(person("Christophe", "Ambroise", role = "aut"),
person("Shubham", "Chaturvedi", role = "aut"),
person("Alia", "Dehman", role = "aut"),
person("Pierre", "Neuvial", role = c("aut", "cre"),
email = "[email protected]",
comment = c(ORCID = "0000-0003-3584-9998")),
person("Guillem", "Rigaill", role = "aut"),
person("Nathalie", "Vialaneix", role = "aut",
email = "[email protected]",
comment = c(ORCID = "0000-0003-1156-0639")),
person("Gabriel", "Hoffman", role = "aut"))
Date: 2024-10-07
Version: 0.6.10
License: GPL-3
Title: Adjacency-Constrained Clustering of a Block-Diagonal Similarity Matrix
Description: Implements a constrained version of hierarchical agglomerative
clustering, in which each observation is associated to a position, and only
adjacent clusters can be merged. Typical application fields in
bioinformatics include Genome-Wide Association Studies or Hi-C data
analysis, where the similarity between items is a decreasing function of
their genomic distance. Taking advantage of this feature, the implemented
algorithm is time and memory efficient. This algorithm is described in
Ambroise et al (2019) <doi:10.1186/s13015-019-0157-4>.
Depends: R (>= 4.0.0)
Imports:
stats,
graphics,
grDevices,
Rcpp (>= 1.0.6),
Matrix,
sparseMatrixStats,
methods,
utils,
capushe,
ggplot2,
dendextend,
rlang
Suggests:
knitr,
testthat,
rmarkdown,
rioja,
HiTC,
snpStats,
BiocGenerics
biocViews:
Clustering,
FeatureExtraction
VignetteBuilder: knitr
URL: https://pneuvial.github.io/adjclust/
BugReports: https://github.com/pneuvial/adjclust/issues
RoxygenNote: 7.3.2
LinkingTo:
Rcpp,
RcppArmadillo
Encoding: UTF-8
Language: en-US