[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
07/07: gnu: Add r-ashr.
From: |
guix-commits |
Subject: |
07/07: gnu: Add r-ashr. |
Date: |
Wed, 18 Nov 2020 10:42:37 -0500 (EST) |
roelj pushed a commit to branch wip-r
in repository guix.
commit 82f9a546c6d3b722b345cbe5c9b06af8cf22ab7f
Author: Roel Janssen <roel@gnu.org>
AuthorDate: Wed Nov 18 16:41:54 2020 +0100
gnu: Add r-ashr.
* gnu/packages/cran.scm (r-ashr): 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 41a06da..9b7bb80 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -614,6 +614,34 @@ interrupts and timeouts. This provides the basis for a
sandboxing
mechanism.")
(license license:expat)))
+(define-public r-ashr
+ (package
+ (name "r-ashr")
+ (version "2.2-47")
+ (source (origin
+ (method url-fetch)
+ (uri (cran-uri "ashr" version))
+ (sha256
+ (base32
+ "1rqb5j30ylaf1h4l66x4jxyn5inrvhc42d90qd5mgkxsq0ghdlr4"))))
+ (properties `((upstream-name . "ashr")))
+ (build-system r-build-system)
+ (propagated-inputs
+ `(("r-etrunct" ,r-etrunct)
+ ("r-invgamma" ,r-invgamma)
+ ("r-matrix" ,r-matrix)
+ ("r-mixsqp" ,r-mixsqp)
+ ("r-rcpp" ,r-rcpp)
+ ("r-squarem" ,r-squarem)
+ ("r-truncnorm" ,r-truncnorm)))
+ (native-inputs
+ `(("r-knitr" ,r-knitr)))
+ (home-page "https://github.com/stephens999/ashr";)
+ (synopsis "Methods for adaptive shrinkage, using empirical bayes")
+ (description "This package implements an empirical Bayes approach for
+large-scale hypothesis testing and false discovery rate estimation.")
+ (license license:gpl3+)))
+
(define-public r-askpass
(package
(name "r-askpass")
- branch wip-r updated (6071ebe -> 82f9a54), guix-commits, 2020/11/18
- 01/07: gnu: Update r-oligo to 1.54.1., guix-commits, 2020/11/18
- 02/07: gnu: Add r-rcppnumerical., guix-commits, 2020/11/18
- 04/07: gnu: Add r-etrunct., guix-commits, 2020/11/18
- 05/07: gnu: Add r-invgamma., guix-commits, 2020/11/18
- 03/07: gnu: Add r-apeglm., guix-commits, 2020/11/18
- 06/07: gnu: Add r-mixsqp., guix-commits, 2020/11/18
- 07/07: gnu: Add r-ashr.,
guix-commits <=