forked from dirmeier/diffusr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
DESCRIPTION
43 lines (43 loc) · 1.32 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
Package: diffusr
Type: Package
Title: Network Diffusion Algorithms
Version: 0.2.3
Date: 2018-04-20
Authors@R: person("Simon", "Dirmeier",
email = "simon.dirmeier@gmx.de",
role = c("aut", "cre"))
Maintainer: Simon Dirmeier <simon.dirmeier@gmx.de>
Description: Implementation of network diffusion algorithms such as
heat diffusion or Markov random walks. Network diffusion algorithms generally
spread information in the form of node weights along the edges of a graph to other nodes.
These weights can for example be interpreted as temperature, an initial amount
of water, the activation of neurons in the brain, or the location of a random
surfer in the internet. The information (node weights) is iteratively propagated
to other nodes until a equilibrium state or stop criterion occurs.
URL: https://github.com/randef1ned/diffusr
BugReports: https://github.com/randef1ned/diffusr/issues
License: GPL (>=3)
Depends: R (>= 4.0)
LazyData: TRUE
LinkingTo: Rcpp, RcppEigen
biocViews: sparseMatrixStats
Imports:
Rcpp,
igraph,
methods,
checkmate,
matrixStats,
sparseMatrixStats,
memuse,
pryr
Suggests:
knitr,
rmarkdown,
testthat,
lintr,
Matrix
VignetteBuilder: knitr
RoxygenNote: 7.3.1
Encoding: UTF-8
Config/testthat/edition: 3
SystemRequirements: C++17