diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-03-24 11:41:23 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-03-24 20:36:51 +0100 |
commit | 79db3a1a33304de59b9b8ced29778ee2ebe44235 (patch) | |
tree | f8b53b88189ea826e1dcd6cca8f353169b3cc3c0 /gnu/packages | |
parent | f98d97c6f2ca00775a4c0e28889827318eb57a65 (diff) |
gnu: Add r-wgaim.
* gnu/packages/cran.scm (r-wgaim): New variable.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/cran.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index c30112ce73..b6df127d2f 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -11851,3 +11851,25 @@ can be used with function approximation, eligibility traces (Singh & Sutton, of ggplot2, facets that repeat axis lines on all panels, and some knitr extensions.") (license license:gpl3))) + +(define-public r-wgaim + (package + (name "r-wgaim") + (version "1.4-11") + (source + (origin + (method url-fetch) + (uri (cran-uri "wgaim" version)) + (sha256 + (base32 + "1jjyp100dcjjczp61xlvhmy48ynniqcys535vzbgswhr7fvijymg")))) + (build-system r-build-system) + (propagated-inputs + `(("r-lattice" ,r-lattice) + ("r-qtl" ,r-qtl))) + (home-page "https://cran.r-project.org/web/packages/wgaim") + (synopsis "Whole genome average interval mapping for QTL detection") + (description + "This package integrates sophisticated mixed modelling methods with a +whole genome approach to detecting significant QTL in linkage maps.") + (license license:gpl2+))) |