diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-10-30 10:47:55 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-10-30 10:48:16 +0100 |
commit | 5d79012073c67a36201c4b10eee31b364c4d73dd (patch) | |
tree | 309d5bd6f841ffa9f7a2a45bc459f17372555e59 | |
parent | db6b00795a21cce987c844bc440081d06f99ce5e (diff) | |
download | guix-5d79012073c67a36201c4b10eee31b364c4d73dd.tar.gz |
gnu: Add r-voltron.
* gnu/packages/bioinformatics.scm (r-voltron): New variable. Change-Id: I5f70cf613bf2c26c4ca119483c9ad3b0beba6502
-rw-r--r-- | gnu/packages/bioinformatics.scm | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 508f5ea09a..a47e84bc33 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -18796,6 +18796,73 @@ transcriptional derivatives and visualization of the resulting velocity patterns.") (license license:gpl3)))) +(define-public r-voltron + (let ((commit "5057b703479239a9aaba761f07e65d849f6111f8") + (revision "1")) + (package + (name "r-voltron") + (version (git-version "1.0.0" revision commit)) + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/BIMSBbioinfo/VoltRon") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1nximl4708a7fdwn8ysxpni3mp6dx33cphavlay7hh1pa55pnzgn")) + (modules '((guix build utils))) + ;; The tripack package is not available under a free license, + ;; but interp provides free implementations of "tri.mesh" and + ;; "neighbours". + (snippet + '(substitute* '("DESCRIPTION" "NAMESPACE" "R/spatial.R") + (("tripack") "interp"))))) + (properties `((upstream-name . "VoltRon"))) + (build-system r-build-system) + (inputs (list opencv tbb zlib)) + (propagated-inputs (list r-anndata + r-data-table + r-dplyr + r-ebimage + r-fastdummies + r-fnn + r-ggforce + r-ggplot2 + r-ggpubr + r-ggrepel + r-hdf5r + r-htmltools + r-igraph + r-interp + r-irlba + r-magick + r-matrix + r-morpho + r-raster + r-rcpp + r-reshape2 + r-rjson + r-rlang + r-s4vectors + r-scales + r-shiny + r-shinyjs + r-stringr + r-terra + r-umap + r-xml)) + (native-inputs (list pkg-config)) + (home-page "https://github.com/BIMSBbioinfo/VoltRon") + (synopsis "VoltRon for Spatial Data Integration and Analysis") + (description + "@code{VoltRon} is a toolbox for spatial data analysis, multi-omics +integration using spatial image registration. @code{VoltRon} is capable of +analyzing multiple types and modalities of spatially-aware datasets. +@code{VoltRon} visualizes and analyzes regions of interests (ROIs), spots, +cells and even molecules.") + (license license:expat)))) + (define-public methyldackel (package (name "methyldackel") |