mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: r-voltron: Update to 0.2.0-1.9f9415c.
* gnu/packages/bioinformatics.scm (r-voltron): Update to 0.2.0-1.9f9415c. [inputs]: Remove tbb. [propagated-inputs]: Remove r-anndata, r-fastdummies, r-fnn, r-ggforce, r-hdf5r, r-htmltools, r-interp, r-morpho, r-raster, r-s4vectors, r-scales, r-terra, r-umap, and r-xml; add r-basilisk, r-ids, r-rann, r-rcdt, r-rcppannoy, r-rcpparmadillo, r-reticulate, r-s4arrays, and r-sp. [native-inputs]: Add r-testthat. [description]: Update. Change-Id: I8051ade560e03f8e3760560ec7b78d9941c00e08
This commit is contained in:
parent
5531485c5d
commit
c7e412e775
1 changed files with 29 additions and 40 deletions
|
@ -21747,70 +21747,59 @@ patterns.")
|
||||||
(license license:gpl3))))
|
(license license:gpl3))))
|
||||||
|
|
||||||
(define-public r-voltron
|
(define-public r-voltron
|
||||||
(let ((commit "5057b703479239a9aaba761f07e65d849f6111f8")
|
(let ((commit "9f9415c72e9347f578a166981842d33e43b0466d")
|
||||||
(revision "1"))
|
(revision "1"))
|
||||||
(package
|
(package
|
||||||
(name "r-voltron")
|
(name "r-voltron")
|
||||||
(version (git-version "1.0.0" revision commit))
|
(version (git-version "0.2.0" revision commit))
|
||||||
(source (origin
|
(source
|
||||||
(method git-fetch)
|
(origin
|
||||||
(uri (git-reference
|
(method git-fetch)
|
||||||
(url "https://github.com/BIMSBbioinfo/VoltRon")
|
(uri (git-reference
|
||||||
(commit commit)))
|
(url "https://github.com/BIMSBbioinfo/VoltRon")
|
||||||
(file-name (git-file-name name version))
|
(commit commit)))
|
||||||
(sha256
|
(file-name (git-file-name name version))
|
||||||
(base32
|
(sha256
|
||||||
"1nximl4708a7fdwn8ysxpni3mp6dx33cphavlay7hh1pa55pnzgn"))
|
(base32 "0bvvpj96ix2ij6034dfrh7za1lvf73qxqsdvbs2wrpc931s18q32"))))
|
||||||
(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")))
|
(properties `((upstream-name . "VoltRon")))
|
||||||
(build-system r-build-system)
|
(build-system r-build-system)
|
||||||
(inputs (list opencv tbb zlib))
|
(inputs (list opencv zlib))
|
||||||
(propagated-inputs (list r-anndata
|
(propagated-inputs (list r-basilisk
|
||||||
r-data-table
|
r-data-table
|
||||||
r-dplyr
|
r-dplyr
|
||||||
r-ebimage
|
r-ebimage
|
||||||
r-fastdummies
|
|
||||||
r-fnn
|
|
||||||
r-ggforce
|
|
||||||
r-ggplot2
|
r-ggplot2
|
||||||
r-ggpubr
|
r-ggpubr
|
||||||
r-ggrepel
|
r-ggrepel
|
||||||
r-hdf5r
|
r-ids
|
||||||
r-htmltools
|
|
||||||
r-igraph
|
r-igraph
|
||||||
r-interp
|
|
||||||
r-irlba
|
r-irlba
|
||||||
r-magick
|
r-magick
|
||||||
r-matrix
|
r-matrix
|
||||||
r-morpho
|
r-rann
|
||||||
r-raster
|
r-rcdt
|
||||||
r-rcpp
|
r-rcpp
|
||||||
|
r-rcppannoy
|
||||||
|
r-rcpparmadillo
|
||||||
r-reshape2
|
r-reshape2
|
||||||
|
r-reticulate
|
||||||
r-rjson
|
r-rjson
|
||||||
r-rlang
|
r-rlang
|
||||||
r-s4vectors
|
r-s4arrays
|
||||||
r-scales
|
|
||||||
r-shiny
|
r-shiny
|
||||||
r-shinyjs
|
r-shinyjs
|
||||||
|
r-sp
|
||||||
r-stringr
|
r-stringr
|
||||||
r-terra
|
r-uwot))
|
||||||
r-umap
|
(native-inputs (list pkg-config r-testthat))
|
||||||
r-xml))
|
|
||||||
(native-inputs (list pkg-config))
|
|
||||||
(home-page "https://github.com/BIMSBbioinfo/VoltRon")
|
(home-page "https://github.com/BIMSBbioinfo/VoltRon")
|
||||||
(synopsis "VoltRon for Spatial Data Integration and Analysis")
|
(synopsis "VoltRon for spatial data integration and analysis")
|
||||||
(description
|
(description
|
||||||
"@code{VoltRon} is a toolbox for spatial data analysis, multi-omics
|
"@code{VoltRon} is a novel spatial omic analysis toolbox for
|
||||||
integration using spatial image registration. @code{VoltRon} is capable of
|
multi-omics integration using spatial image registration. @code{VoltRon} is
|
||||||
analyzing multiple types and modalities of spatially-aware datasets.
|
capable of analyzing multiple types and modalities of spatially-aware
|
||||||
@code{VoltRon} visualizes and analyzes regions of interests (ROIs), spots,
|
datasets. @code{VoltRon} visualizes and analyzes regions of interests (ROIs),
|
||||||
cells and even molecules.")
|
spots, cells and even molecules.")
|
||||||
(license license:expat))))
|
(license license:expat))))
|
||||||
|
|
||||||
(define-public methyldackel
|
(define-public methyldackel
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue