-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
128 changed files
with
5,552 additions
and
1,646 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
^.*\.Rproj$ | ||
^\.Rproj\.user$ # used for temporary files. | ||
^README\.Rmd$ # An Rmarkdown file used to generate README.md | ||
^cran-comments\.md$ # Comments for CRAN submission | ||
^NEWS\.md$ # A news file written in Markdown | ||
^\.Rproj\.user$ | ||
^README\.Rmd$ | ||
^cran-comments\.md$ | ||
^\.travis\.yml$ | ||
^appveyor\.yml$ | ||
appveyor.yml | ||
|
||
^fig$ | ||
^inst/localTests$ | ||
^docs$ | ||
^_pkgdown\.yml$ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,41 @@ | ||
Package: adjclust | ||
Maintainer: Pierre Neuvial <[email protected]> | ||
Author: Christophe Ambroise, Alia Dehman, Michel Koskas, Pierre Neuvial and Guillem Rigaill | ||
Date: 2017-02-13 | ||
Version: 0.3.0 | ||
Maintainer: Pierre Neuvial <[email protected]> | ||
Authors@R: c(person("Christophe", "Ambroise", role="aut"), | ||
person("Shubham", "Chaturvedi", role="aut"), | ||
person("Alia", "Dehman", role="aut"), | ||
person("Michel", "Koskas", role="aut"), | ||
person("Pierre", "Neuvial", role=c("aut", "cre"), | ||
email="[email protected]"), | ||
person("Guillem", "Rigaill", role="aut"), | ||
person("Nathalie", "Villa-Vialaneix", role="aut")) | ||
Date: 2017-10-16 | ||
Version: 0.5.2 | ||
License: GPL-3 | ||
Title: Adjacency-constrained clustering of a block-diagonal similarity matrix | ||
Description: Adjacency-constrained clustering of a block-diagonal similarity | ||
matrix. | ||
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 | ||
Chapter 4 of Alia Dehman (2015) | ||
<https://hal.archives-ouvertes.fr/tel-01288568v1>. | ||
Depends: R(>= 2.10.0) | ||
Imports: | ||
Matrix, | ||
matrixStats, | ||
Rcpp (>= 0.12.3) | ||
LinkingTo: Rcpp | ||
Suggests: | ||
snpStats, | ||
methods, | ||
utils, | ||
HiTC, | ||
Suggests: | ||
BiocStyle, | ||
knitr, | ||
testthat, | ||
rmarkdown | ||
rmarkdown, | ||
rioja | ||
VignetteBuilder: knitr | ||
RoxygenNote: 5.0.1 | ||
URL: https://github.com/pneuvial/adjclust | ||
BugReports: https://github.com/pneuvial/adjclust/issues | ||
RoxygenNote: 6.0.1.9000 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,23 @@ | ||
# Generated by roxygen2: do not edit by hand | ||
|
||
importFrom(Rcpp,evalCpp) | ||
S3method(as.hclust,chac) | ||
S3method(head,chac) | ||
S3method(plot,chac) | ||
S3method(print,chac) | ||
S3method(summary,chac) | ||
export(adjClust) | ||
export(hicClust) | ||
export(snpClust) | ||
exportClasses(chac) | ||
importFrom(HiTC,intdata) | ||
importFrom(graphics,plot) | ||
importFrom(matrixStats,colCumsums) | ||
importFrom(matrixStats,rowCumsums) | ||
useDynLib(adjclust) | ||
importFrom(methods,as) | ||
importFrom(snpStats,ld) | ||
importFrom(stats,as.dendrogram) | ||
importFrom(stats,as.hclust) | ||
importFrom(utils,head) | ||
importFrom(utils,read.table) | ||
useDynLib(adjclust, .registration = TRUE) | ||
useDynLib(adjclust,percDown) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.