guix-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[bug#46524] [PATCH 1/2] gnu: Add r-gsa.


From: Tim Howes
Subject: [bug#46524] [PATCH 1/2] gnu: Add r-gsa.
Date: Sun, 14 Feb 2021 21:44:36 -0800

* gnu/packages/cran.scm (r-gsa): New variable.
---
 gnu/packages/cran.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 1fe90619cd..86b2df0a9f 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -33,6 +33,7 @@
 ;;; Copyright © 2020 Magali Lemes <magalilemes00@gmail.com>
 ;;; Copyright © 2020 Simon Tournier <zimon.toutoune@gmail.com>
 ;;; Copyright © 2020 Aniket Patil <aniket112.patil@gmail.com>
+;;; Copyright © 2021 Tim Howes <timhowes@lavabit.com>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -26851,3 +26852,23 @@ from a source package.  @code{pkgdown} converts your 
documentation, vignettes,
 README file, and more to HTML making it easy to share information about your
 package online.")
     (license license:expat)))
+
+(define-public r-gsa
+  (package
+    (name "r-gsa")
+    (version "1.03.1")
+    (source
+      (origin
+        (method url-fetch)
+        (uri (cran-uri "GSA" version))
+        (sha256
+          (base32
+            "05x9wspah1cdznjpncqam1iawsxdiigyl8v2anyhss2k7wwd94p1"))))
+    (properties `((upstream-name . "GSA")))
+    (build-system r-build-system)
+    (home-page
+      "https://statweb.stanford.edu/~tibs/GSA/";)
+    (synopsis "Gene Set Analysis")
+    (description "Inference on gene sets in microarray studies.")
+    ;; Any version of the LGPL
+    (license license:lgpl3+)))
-- 
2.30.1







reply via email to

[Prev in Thread] Current Thread [Next in Thread]