mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
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:
parent
54a8cb963d
commit
5b720c15d1
2 changed files with 23 additions and 24 deletions
|
@ -123,6 +123,29 @@ (define-public r-scales
|
||||||
legends.")
|
legends.")
|
||||||
(license license:expat)))
|
(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
|
(define-public r-ellipsis
|
||||||
(package
|
(package
|
||||||
(name "r-ellipsis")
|
(name "r-ellipsis")
|
||||||
|
|
|
@ -848,30 +848,6 @@ (define-public r-estimability
|
||||||
non-estimable cases correctly.")
|
non-estimable cases correctly.")
|
||||||
(license license:gpl2+)))
|
(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
|
(define-public r-labeling
|
||||||
(package
|
(package
|
||||||
(name "r-labeling")
|
(name "r-labeling")
|
||||||
|
|
Loading…
Reference in a new issue