me
/
guix
Archived
1
0
Fork 0

gnu: Add r-combinat.

* gnu/packages/cran.scm (r-combinat): New variable.
master
Ricardo Wurmus 2019-01-07 16:40:01 +01:00 committed by Ricardo Wurmus
parent 13f5837b4c
commit 58bc8857fb
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 17 additions and 0 deletions

View File

@ -8777,3 +8777,20 @@ neighbors) of the density peak clustering algorithm, originally described by
Alex Rodriguez and Alessandro Laio (Science, 2014 vol. 344). It can handle Alex Rodriguez and Alessandro Laio (Science, 2014 vol. 344). It can handle
large datasets (> 100,000 samples) very efficiently.") large datasets (> 100,000 samples) very efficiently.")
(license license:gpl2+))) (license license:gpl2+)))
(define-public r-combinat
(package
(name "r-combinat")
(version "0.0-8")
(source
(origin
(method url-fetch)
(uri (cran-uri "combinat" version))
(sha256
(base32
"1h9hr88gigihc4na7lb5i7rn4az1xa7sb34zvnznaj6pdrmwy4qm"))))
(build-system r-build-system)
(home-page "https://cran.r-project.org/web/packages/combinat")
(synopsis "Combinatorics utilities")
(description "This package provides assorted routines for combinatorics.")
(license license:gpl2)))