-
Notifications
You must be signed in to change notification settings - Fork 4
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
7 changed files
with
15 additions
and
6 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
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,7 @@ | ||
Package: leidenAlg | ||
Type: Package | ||
Title: Implements the Leiden Algorithm via an R Interface | ||
Version: 1.0.3 | ||
Version: 1.0.4 | ||
Authors@R: c(person("Peter", "Kharchenko", email = "[email protected]", role = c("aut")), person("Viktor", "Petukhov", email = "[email protected]", role = c("aut")), person("V.A.", "Traag", email = "[email protected]", role = c("ctb")), person("Gábor", "Csárdi", email = "[email protected]", role = c("ctb")), person("Tamás", "Nepusz", email = "[email protected]", role = c("ctb")), person("Minh Van", "Nguyen", email = "[email protected]", role = c("ctb")), person("Evan", "Biederstedt", email = "[email protected]", role=c("cre", "aut"))) | ||
Description: An R interface to the Leiden algorithm, an iterative community detection algorithm on networks. The algorithm is designed to converge to a partition in which all subsets of all communities are locally optimally assigned, yielding communities guaranteed to be connected. The implementation proves to be fast, scales well, and can be run on graphs of millions of nodes (as long as they can fit in memory). The original implementation was constructed as a python interface "leidenalg" found here: <https://github.com/vtraag/leidenalg>. The algorithm was originally described in Traag, V.A., Waltman, L. & van Eck, N.J. "From Louvain to Leiden: guaranteeing well-connected communities". Sci Rep 9, 5233 (2019) <doi:10.1038/s41598-019-41695-z>. | ||
License: GPL-3 | ||
|
@@ -13,7 +13,6 @@ Imports: | |
graphics, | ||
grDevices, | ||
igraph, | ||
Matrix.utils, | ||
parallel, | ||
Rcpp (>= 1.0.5), | ||
sccore, | ||
|
@@ -23,7 +22,7 @@ Suggests: | |
testthat (>= 3.1.0) | ||
LinkingTo: Rcpp, RcppArmadillo, RcppEigen | ||
SystemRequirements: C++11, GNU make (optional), libxml2 (optional), glpk (>= 4.57, optional) | ||
RoxygenNote: 7.1.2 | ||
RoxygenNote: 7.2.1 | ||
URL: https://github.com/kharchenkolab/leidenAlg | ||
BugReports: https://github.com/kharchenkolab/leidenAlg/issues | ||
NeedsCompilation: yes | ||
|
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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