diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2023-07-29 09:45:17 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-07-31 11:47:27 +0200 |
commit | a1dcbb3fb5a60df087281624b4c37ec05ba1eb5d (patch) | |
tree | df6c8ae1d897a542d0feb03eea7bbb30f87c6615 /gnu/packages/cran.scm | |
parent | 9bf147945e7888b41194cda4a1860e7531766fee (diff) |
gnu: Add r-morpho.
* gnu/packages/cran.scm (r-morpho): New variable.
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 63bbd84c01..51e1a8e9d1 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -3433,6 +3433,40 @@ model fitting and error handling.") into a pipeline of data manipulation and visualisation.") (license license:gpl3))) +(define-public r-morpho + (package + (name "r-morpho") + (version "2.11") + (source (origin + (method url-fetch) + (uri (cran-uri "Morpho" version)) + (sha256 + (base32 + "1c69n9284chygd375gkir4nk5bjglamhfyk2lz4z3kzy3z25qw50")))) + (properties `((upstream-name . "Morpho"))) + (build-system r-build-system) + (propagated-inputs (list r-bezier + r-colorramps + r-doparallel + r-foreach + r-jsonlite + r-mass + r-matrix + r-rcpp + r-rcpparmadillo + r-rgl + r-rvcg + r-sf)) + (home-page "https://github.com/zarquon42b/Morpho") + (synopsis + "Calculations and visualizations related to geometric morphometrics") + (description + "This package provides a toolset for Geometric Morphometrics and mesh +processing. This includes (among other stuff) mesh deformations based on +reference points, permutation tests, detection of outliers, processing of +sliding semi-landmarks and semi-automated surface landmark placement.") + (license license:gpl2))) + (define-public r-hgnchelper (package (name "r-hgnchelper") |