diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-08-26 11:22:31 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-08-26 11:25:21 +0200 |
commit | 8b00e7055825b8c4902d7b839a94cea680722c6c (patch) | |
tree | 797dcb23b3675a87809faf5ac029877a553cf89f | |
parent | f8c88560db1d3436f9a27d1720d6af8b6333fdaf (diff) | |
download | guix-8b00e7055825b8c4902d7b839a94cea680722c6c.tar.gz |
gnu: Add r-dismo.
* gnu/packages/cran.scm (r-dismo): New variable.
-rw-r--r-- | gnu/packages/cran.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index e99c959639..4a54183af4 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -30531,3 +30531,29 @@ with the dynamic plots from @code{dygraphs}.") "This package provides an interface to figshare, a scientific repository to archive and assign DOIs to data, software, figures, and more.") (license license:cc0))) + +(define-public r-dismo + (package + (name "r-dismo") + (version "1.3-3") + (source + (origin + (method url-fetch) + (uri (cran-uri "dismo" version)) + (sha256 + (base32 + "1jj9d78f251bxgrwbv1ycn677qnhvl40bfan12x8fhlaq4d36rgx")))) + (properties `((upstream-name . "dismo"))) + (build-system r-build-system) +; (inputs `(("java" ,java))) + (propagated-inputs + `(("r-raster" ,r-raster) + ("r-rcpp" ,r-rcpp) + ("r-sp" ,r-sp))) + (home-page "https://rspatial.org/raster/sdm/") + (synopsis "Species distribution modeling") + (description + "This package provides methods for species distribution modeling, i.e., +predicting the environmental similarity of any site to that of the locations +of known occurrences of a species.") + (license license:gpl3+))) |