[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/05: gnu: Add r-haplo-stats.
From: |
guix-commits |
Subject: |
05/05: gnu: Add r-haplo-stats. |
Date: |
Mon, 25 Mar 2019 05:02:11 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit cd47dcf6a20f57d3e49f3f46c30a971aadc41698
Author: Ricardo Wurmus <address@hidden>
Date: Mon Mar 25 09:39:10 2019 +0100
gnu: Add r-haplo-stats.
* gnu/packages/cran.scm (r-haplo-stats): New variable.
---
gnu/packages/cran.scm | 28 ++++++++++++++++++++++++++++
1 file changed, 28 insertions(+)
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index b69a4de..1556d56 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -12478,3 +12478,31 @@ failure time models, ordinary linear models, the
Buckley-James model,
generalized least squares for serially or spatially correlated observations,
generalized linear models, and quantile regression.")
(license license:gpl2+)))
+
+(define-public r-haplo-stats
+ (package
+ (name "r-haplo-stats")
+ (version "1.7.9")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (cran-uri "haplo.stats" version))
+ (sha256
+ (base32
+ "19kxascqq5qz0zdxx0w837ji207y1z2ggxkl4vmlbay03k2dw2mx"))))
+ (properties `((upstream-name . "haplo.stats")))
+ (build-system r-build-system)
+ (propagated-inputs
+ `(("r-rms" ,r-rms)))
+ (native-inputs
+ `(("r-r-rsp" ,r-r-rsp))) ; for vignettes
+ (home-page
"https://www.mayo.edu/research/labs/statistical-genetics-genetic-epidemiology/software")
+ (synopsis "Analysis of haplotypes when linkage phase is ambiguous")
+ (description
+ "This package provides routines for the analysis of indirectly measured
+haplotypes. The statistical methods assume that all subjects are unrelated
+and that haplotypes are ambiguous (due to unknown linkage phase of the genetic
+markers). The main functions are: @code{haplo.em()}, @code{haplo.glm()},
address@hidden()}, and @code{haplo.power()}; all of which have detailed
+examples in the vignette.")
+ (license license:gpl2+)))