diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-11-28 10:55:32 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-12-03 16:59:56 +0100 |
commit | d19945f19864079af3e3e4eb52a0c14e48cd46cf (patch) | |
tree | 5bd47ec0391dcb5211852cf0a3a92f54925315fd /gnu/packages/bioconductor.scm | |
parent | 0eec5846bbe78be79bfbc597fa7aa181b59614c3 (diff) | |
download | guix-d19945f19864079af3e3e4eb52a0c14e48cd46cf.tar.gz guix-d19945f19864079af3e3e4eb52a0c14e48cd46cf.zip |
gnu: Add r-flowworkspacedata.
* gnu/packages/bioconductor.scm (r-flowworkspacedata): New variable.
Change-Id: Ie2add925d3fcd3540bc3885427982fb0cee5a146
Diffstat (limited to 'gnu/packages/bioconductor.scm')
-rw-r--r-- | gnu/packages/bioconductor.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index e5a730ebda..adc29e90b0 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -2313,6 +2313,29 @@ Christensen and colleagues; for details see Salas et al. 2018. https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE110554.") (license license:gpl3))) +(define-public r-flowworkspacedata + (package + (name "r-flowworkspacedata") + (version "3.18.0") + (source + (origin + (method url-fetch) + (uri (bioconductor-uri "flowWorkspaceData" version + 'experiment)) + (sha256 + (base32 "1bwykpv1y76iq0qhnn24snwymy0wirip7xwq1wqj1flbainzmv6g")))) + (properties `((upstream-name . "flowWorkspaceData"))) + (build-system r-build-system) + (home-page "https://bioconductor.org/packages/flowWorkspaceData") + (synopsis "Data for flowWorkspace tests and vignettes") + (description + "The necessary external data to run the @code{flowWorkspace} and +@code{openCyto} vignette is found in this package. This data package contains +two flowJo, one diva xml workspace and the associated @code{fcs} files as well +as three @code{GatingSets} for testing the @code{flowWorkspace}, +@code{openCyto} and @code{CytoML} packages.") + (license license:gpl2))) + (define-public r-genelendatabase (package (name "r-genelendatabase") |