-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathDESCRIPTION
33 lines (33 loc) · 1.92 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
Package: leidenAlg
Type: Package
Title: Implements the Leiden Algorithm via an R Interface
Version: 0.1.0
Date: 2020-09-25
Authors@R: c(person("Peter", "Kharchenko", email = "[email protected]", role = c("aut")), person("Viktor", "Petukhov", email = "[email protected]", role = c("aut")), person("Evan", "Biederstedt", email = "[email protected]", role=c("cre", "aut")), person("V.A.", "Traag", email = "[email protected]", role = c("ctb")))
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
Copyright: See the file COPYRIGHTS for various leidenAlg copyright details
Encoding: UTF-8
LazyData: true
Depends: R (>= 3.5.0), Matrix, igraph
Imports:
graphics,
grDevices,
Matrix.utils,
parallel,
Rcpp (>= 1.0.5),
sccore,
stats
Suggests:
pbapply,
testthat
Remotes:
kharchenkolab/sccore
LinkingTo: Rcpp, RcppArmadillo, RcppEigen
SystemRequirements: GNU make
RoxygenNote: 7.1.1
URL: https://github.com/kharchenkolab/leidenAlg
BugReports: https://github.com/kharchenkolab/leidenAlg/issues
NeedsCompilation: yes
Author: Peter Kharchenko [aut], Viktor Petukhov [aut], V.A. Traag [ctb], Evan Biederstedt [cre, aut]
Maintainer: Evan Biederstedt <[email protected]>