gnu: Add r-kmer.

* gnu/packages/cran.scm (r-kmer): New variable.

Co-authored-by: Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de>
This commit is contained in:
Ricardo Wurmus 2020-06-23 13:42:02 +02:00
parent f9b3718568
commit c03cefc3d8
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -22299,3 +22299,27 @@ (define-public r-phylogram
range of object-specific analytical and tree-visualization functions found
across a wide array of bioinformatic R packages.")
(license license:gpl3)))
(define-public r-kmer
(package
(name "r-kmer")
(version "1.1.2")
(source
(origin
(method url-fetch)
(uri (cran-uri "kmer" version))
(sha256
(base32 "0jimn9r0abglwxdl1zqz0lxa99cmj6haydkxjzqfbpx9by80wnww"))))
(properties `((upstream-name . "kmer")))
(build-system r-build-system)
(propagated-inputs
`(("r-openssl" ,r-openssl)
("r-phylogram" ,r-phylogram)
("r-rcpp" ,r-rcpp)))
(home-page "https://github.com/shaunpwilkinson/kmer/")
(synopsis "Fast K-Mer counting and clustering for biological sequence analysis")
(description
"@code{r-kmer} is an R package for rapidly computing distance matrices
and clustering large sequence datasets using fast alignment-free k-mer
counting and recursive k-means partitioning.")
(license license:gpl3)))