gnu: Add r-enhancedvolcano.

* gnu/packages/bioconductor.scm (r-enhancedvolcano): New variable.
This commit is contained in:
Ricardo Wurmus 2023-07-19 14:37:54 +02:00
parent 1b48d723bd
commit b4cfd40aae
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -6677,6 +6677,34 @@ (define-public r-edger
CAGE.")
(license license:gpl2+)))
(define-public r-enhancedvolcano
(package
(name "r-enhancedvolcano")
(version "1.18.0")
(source (origin
(method url-fetch)
(uri (bioconductor-uri "EnhancedVolcano" version))
(sha256
(base32
"1mcyhgdvfmkkh0rlhf51an7j1zi96lqdhifki2aqmlx0lqvg4qxq"))))
(properties `((upstream-name . "EnhancedVolcano")))
(build-system r-build-system)
(propagated-inputs (list r-ggplot2 r-ggrepel))
(native-inputs (list r-knitr))
(home-page "https://github.com/kevinblighe/EnhancedVolcano")
(synopsis
"Publication-ready volcano plots with enhanced coloring and labeling")
(description
"Volcano plots represent a useful way to visualise the results of
differential expression analyses. This package provides a highly-configurable
function that produces publication-ready volcano plots. EnhancedVolcano will
attempt to fit as many point labels in the plot window as possible, thus
avoiding clogging up the plot with labels that could not otherwise have been
read. Other functionality allows the user to identify up to 4 different types
of attributes in the same plot space via color, shape, size, and shade
parameter configurations.")
(license license:gpl3)))
(define-public r-enmix
(package
(name "r-enmix")