mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add r-cellranger.
* gnu/packages/statistics.scm (r-cellranger): New variable.
This commit is contained in:
parent
58612fd2c8
commit
d427e03eee
1 changed files with 22 additions and 0 deletions
|
@ -3292,6 +3292,28 @@ (define-public r-rematch
|
||||||
character vector.")
|
character vector.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
|
(define-public r-cellranger
|
||||||
|
(package
|
||||||
|
(name "r-cellranger")
|
||||||
|
(version "1.1.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method url-fetch)
|
||||||
|
(uri (cran-uri "cellranger" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"16fgi3annn34c3cxi0pxf62mmmmxi21hp0zzlv7bkfsjqy4g4f2x"))))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("r-rematch" ,r-rematch)
|
||||||
|
("r-tibble" ,r-tibble)))
|
||||||
|
(home-page "https://github.com/rsheets/cellranger")
|
||||||
|
(synopsis "Translate spreadsheet cell ranges to rows and columns")
|
||||||
|
(description
|
||||||
|
"This package provides helper functions to work with spreadsheets and the
|
||||||
|
@code{A1:D10} style of cell range specification.")
|
||||||
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public r-rpart
|
(define-public r-rpart
|
||||||
(package
|
(package
|
||||||
(name "r-rpart")
|
(name "r-rpart")
|
||||||
|
|
Loading…
Reference in a new issue