diff options
author | Laura Lazzati <laura.lazzati.15@gmail.com> | 2018-10-23 01:59:22 -0300 |
---|---|---|
committer | Gábor Boskovits <boskovits@gmail.com> | 2018-10-23 23:20:13 +0200 |
commit | b55697fbb430ae9a973eeae91f09213d1e603a9e (patch) | |
tree | 724eb32d3c21cff4ebfb9401a69a3ec8ca2a1eee /gnu/packages | |
parent | d89872f95567c4f263f3cf97aa0474dfff1973bc (diff) | |
download | guix-b55697fbb430ae9a973eeae91f09213d1e603a9e.tar guix-b55697fbb430ae9a973eeae91f09213d1e603a9e.tar.gz |
gnu: Add r-aspi.
* gnu/packages/cran.scm (r-aspi): New variable.
Signed-off-by: Gábor Boskovits <boskovits@gmail.com>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/cran.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index efcc2dccb5..73680a7453 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -9,6 +9,7 @@ ;;; Copyright © 2018 Charlie Ritter <chewzeirta@posteo.net> ;;; Copyright © 2018 Konrad Hinsen <konrad.hinsen@fastmail.net> ;;; Copyright © 2018 Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de> +;;; Copyright © 2018 Laura Lazzati <laura.lazzati.15@gmail.com> ;;; ;;; This file is part of GNU Guix. ;;; @@ -6256,3 +6257,23 @@ a header row or not. The dataset should contain only one independent variable (x) and one dependent variable (y) and can contain a weight for each observation.") (license license:gpl2))) + +(define-public r-aspi + (package + (name "r-aspi") + (version "0.2.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "aspi" version)) + (sha256 + (base32 "0rhvxw243vvdv3hxa6pi343gcjc2cbxq1jzqirl9k1l4i3897l87")))) + (build-system r-build-system) + (home-page + "https://cran.r-project.org/web/packages/aspi/") + (synopsis + "Analysis of symmetry of parasitic infections") + (description + "This package provides tools for the analysis and visualization of bilateral + asymmetry in parasitic infections.") + (license license:gpl3+))) |