r-diffusionmap: added v1.2.0 (#20881)

This commit is contained in:
Glenn Johnson 2021-01-14 12:22:40 -06:00 committed by GitHub
parent 49bdbfe08b
commit 1a99c2ee46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -7,14 +7,18 @@
class RDiffusionmap(RPackage):
"""Allows to display a progress bar in the R console for long running
computations taking place in c++ code, and support for interrupting those
computations even in multithreaded code, typically using OpenMP."""
"""Diffusion Map
Implements diffusion map method of data parametrization, including creation
and visualization of diffusion map, clustering with diffusion K-means and
regression using adaptive regression model. Richards (2009)
<doi:10.1088/0004-637X/691/1/32>."""
homepage = "https://cloud.r-project.org/package=diffusionMap"
url = "https://cloud.r-project.org/src/contrib/diffusionMap_1.1-0.tar.gz"
list_url = "https://cloud.r-project.org/src/contrib/Archive/diffusionMap"
version('1.2.0', sha256='523847592fbc3a29252bc92b5821e17564ce6b188c483c930e95e6950c3873e7')
version('1.1-0.1', sha256='b24cf841af2566ac36f4ede2885f2ff355a7905398444d6d89747315d99a8486')
version('1.1-0', sha256='637b810140145fa0cbafb1c13da347c2f456c425334ae554d11a3107052e28d1')
version('1.0-0', sha256='1e3c54f72cbb2bce1b06b85fda33242b9041d30d4ac8c12df4dc9a3a95a44044')
@ -22,6 +26,7 @@ class RDiffusionmap(RPackage):
version('0.0-1', sha256='38c4af2d2a4fa4116c2e01a5e67ba313e7a8e76f724a3312a3c12b26e299f844')
depends_on('r@2.4.0:', type=('build', 'run'))
depends_on('r-matrix', type=('build', 'run'))
depends_on('r@2.10:', when='@1.2.0:', type=('build', 'run'))
depends_on('r-scatterplot3d', type=('build', 'run'))
depends_on('r-igraph', type=('build', 'run'))
depends_on('r-matrix', type=('build', 'run'))