aboutsummaryrefslogtreecommitdiff
path: root/gn/packages/statistics.scm
diff options
context:
space:
mode:
authorpjotrp2017-12-27 14:06:29 +0000
committerpjotrp2017-12-27 14:06:29 +0000
commitc1de8938169e24114e9d032a52fe6032d5f5f667 (patch)
treec71b337610cb996df0919ead02a4faff6a8c9bbd /gn/packages/statistics.scm
parent46d10dff296a1c873a3e7d4f7bc8594de16bee11 (diff)
downloadguix-bioinformatics-c1de8938169e24114e9d032a52fe6032d5f5f667.tar.gz
Added build for faster-lmm-d; moved gsl1
Diffstat (limited to 'gn/packages/statistics.scm')
-rw-r--r--gn/packages/statistics.scm24
1 files changed, 24 insertions, 0 deletions
diff --git a/gn/packages/statistics.scm b/gn/packages/statistics.scm
index c24c7d0..4159dcd 100644
--- a/gn/packages/statistics.scm
+++ b/gn/packages/statistics.scm
@@ -339,3 +339,27 @@ traits (CTL). The additional correlation information obtained can be
combined with QTL information to perform de novo reconstruction of
interaction networks.")
(license license:gpl3)))
+
+
+(define-public gsl1 ; supporting older GSL tests - no longer really used
+ (package
+ (name "gsl1")
+ (version "1.16")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append "mirror://gnu/gsl/gsl-"
+ version ".tar.gz"))
+ (sha256
+ (base32
+ "0lrgipi0z6559jqh82yx8n4xgnxkhzj46v96dl77hahdp58jzg3k"))
+ ))
+ (build-system gnu-build-system)
+ (home-page "https://www.gnu.org/software/gsl/")
+ (synopsis "Numerical library for C and C++")
+ (description
+ "The GNU Scientific Library is a library for numerical analysis in C
+and C++. It includes a wide range of mathematical routines, with over 1000
+functions in total. Subject areas covered by the library include:
+differential equations, linear algebra, Fast Fourier Transforms and random
+numbers.")
+ (license license:gpl3+)))