gnu: Add r-complexheatmap.

* gnu/packages/bioinformatics.scm (r-complexheatmap): New variable.
This commit is contained in:
Ricardo Wurmus 2017-11-07 15:27:03 +01:00
parent 902fb15d92
commit 3af149f524
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -9516,6 +9516,36 @@ (define-public r-genomicfiles
provide added flexibility for data combination and manipulation.")
(license license:artistic2.0)))
(define-public r-complexheatmap
(package
(name "r-complexheatmap")
(version "1.17.1")
(source
(origin
(method url-fetch)
(uri (bioconductor-uri "ComplexHeatmap" version))
(sha256
(base32
"1x6kp55iqqsd8bhdl3qch95nfiy2y46ldbbsx1sj1v8f0b0ywwcy"))))
(properties
`((upstream-name . "ComplexHeatmap")))
(build-system r-build-system)
(propagated-inputs
`(("r-circlize" ,r-circlize)
("r-colorspace" ,r-colorspace)
("r-getoptlong" ,r-getoptlong)
("r-globaloptions" ,r-globaloptions)
("r-rcolorbrewer" ,r-rcolorbrewer)))
(home-page
"https://github.com/jokergoo/ComplexHeatmap")
(synopsis "Making Complex Heatmaps")
(description
"Complex heatmaps are efficient to visualize associations between
different sources of data sets and reveal potential structures. This package
provides a highly flexible way to arrange multiple heatmaps and supports
self-defined annotation graphics.")
(license license:gpl2+)))
(define-public r-qvalue
(package
(name "r-qvalue")