gnu: r-pheatmap: Move to (gnu packages cran).

* gnu/packages/statistics.scm (r-pheatmap): Move from here...
* gnu/packages/cran.scm (r-pheatmap): ...to here.
This commit is contained in:
Ricardo Wurmus 2019-11-24 14:06:16 +01:00
parent 54a8cb963d
commit 5b720c15d1
No known key found for this signature in database
GPG key ID: 197A5888235FACAC
2 changed files with 23 additions and 24 deletions

View file

@ -123,6 +123,29 @@ (define-public r-scales
legends.")
(license license:expat)))
(define-public r-pheatmap
(package
(name "r-pheatmap")
(version "1.0.12")
(source
(origin
(method url-fetch)
(uri (cran-uri "pheatmap" version))
(sha256
(base32
"1hdh74az3vyzz6dqa311rhxdm74n46lyr03p862kn80p0kp9d7ap"))))
(build-system r-build-system)
(propagated-inputs
`(("r-gtable" ,r-gtable)
("r-rcolorbrewer" ,r-rcolorbrewer)
("r-scales" ,r-scales)))
(home-page "https://cran.r-project.org/web/packages/pheatmap")
(synopsis "Pretty heatmaps")
(description
"This package provides an implementation of heatmaps that offers more
control over dimensions and appearance.")
(license license:gpl2+)))
(define-public r-ellipsis
(package
(name "r-ellipsis")

View file

@ -848,30 +848,6 @@ (define-public r-estimability
non-estimable cases correctly.")
(license license:gpl2+)))
(define-public r-pheatmap
(package
(name "r-pheatmap")
(version "1.0.12")
(source
(origin
(method url-fetch)
(uri (cran-uri "pheatmap" version))
(sha256
(base32
"1hdh74az3vyzz6dqa311rhxdm74n46lyr03p862kn80p0kp9d7ap"))))
(build-system r-build-system)
(propagated-inputs
`(("r-gtable" ,r-gtable)
("r-rcolorbrewer" ,r-rcolorbrewer)
("r-scales" ,r-scales)))
(home-page
"https://cran.r-project.org/web/packages/pheatmap")
(synopsis "Pretty heatmaps")
(description
"This package provides an implementation of heatmaps that offers more
control over dimensions and appearance.")
(license license:gpl2+)))
(define-public r-labeling
(package
(name "r-labeling")