me
/
guix
Archived
1
0
Fork 0

gnu: Add r-enrichedheatmap.

* gnu/packages/bioconductor.scm (r-enrichedheatmap): New variable.
Ricardo Wurmus 2023-08-28 17:57:15 +02:00
parent 46e267c336
commit 72eecbffc6
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 32 additions and 0 deletions

View File

@ -14057,6 +14057,38 @@ implemented for discovering disease associations of high-throughput biological
data.")
(license license:artistic2.0)))
(define-public r-enrichedheatmap
(package
(name "r-enrichedheatmap")
(version "1.30.0")
(source (origin
(method url-fetch)
(uri (bioconductor-uri "EnrichedHeatmap" version))
(sha256
(base32
"18p2vjcg76rrjzjl03zgm4yxrgllbd42hg8rvsdbfb0s7brzr7ya"))))
(properties `((upstream-name . "EnrichedHeatmap")))
(build-system r-build-system)
(propagated-inputs (list r-circlize
r-complexheatmap
r-genomicranges
r-getoptlong
r-iranges
r-locfit
r-matrixstats
r-rcpp))
(native-inputs (list r-knitr))
(home-page "https://github.com/jokergoo/EnrichedHeatmap")
(synopsis "Enriched heatmaps")
(description
"Enriched heatmap is a special type of heatmap which visualizes the
enrichment of genomic signals on specific target regions. This type of
heatmap is just a normal heatmap but with some special settings, with the
functionality of @code{ComplexHeatmap}, it would be much easier to customize
the heatmap as well as concatenating to a list of heatmaps to show
correspondance between different data sources.")
(license license:expat)))
(define-public r-enrichplot
(package
(name "r-enrichplot")