[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/06: gnu: Add gemma.
From: |
Ludovic Courtès |
Subject: |
05/06: gnu: Add gemma. |
Date: |
Thu, 18 May 2017 08:23:09 -0400 (EDT) |
civodul pushed a commit to branch master
in repository guix.
commit 2b18ad054cf5a09582bc96ac7755452e7a5924e1
Author: Pjotr Prins <address@hidden>
Date: Thu May 18 05:59:47 2017 +0000
gnu: Add gemma.
* gnu/packages/bioinformatics.scm (gemma): New variable.
Signed-off-by: Ludovic Courtès <address@hidden>
---
gnu/packages/bioinformatics.scm | 40 ++++++++++++++++++++++++++++++++++++++++
1 file changed, 40 insertions(+)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 9f5d814..d35b51d 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -2696,6 +2696,46 @@ comment or quality sections.")
(supported-systems '("x86_64-linux"))
(license license:expat))))
+(define-public gemma
+ (package
+ (name "gemma")
+ (version "0.96")
+ (source (origin
+ (method url-fetch)
+ (uri (string-append
"https://github.com/xiangzhou/GEMMA/archive/v"
+ version ".tar.gz"))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "055ynn16gd12pf78n4vr2a9jlwsbwzajpdnf2y2yilg1krfff222"))))
+ (inputs
+ `(("gsl" ,gsl)
+ ("lapack" ,lapack)
+ ("zlib" ,zlib)))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:make-flags '("FORCE_DYNAMIC=1") ; use shared libs
+ #:phases
+ (modify-phases %standard-phases
+ (delete 'configure)
+ (add-before 'build 'bin-mkdir
+ (lambda _
+ (mkdir-p "bin")))
+ (replace 'install
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let ((out (assoc-ref outputs "out")))
+ (install-file "bin/gemma"
+ (string-append
+ out "/bin"))))))
+ #:tests? #f)) ; no tests included yet
+ (home-page "https://github.com/xiangzhou/GEMMA")
+ (synopsis "Tool for genome-wide efficient mixed model association")
+ (description
+ "Genome-wide Efficient Mixed Model Association (GEMMA) provides a
+standard linear mixed model resolver with application in genome-wide
+association studies (GWAS).")
+ (license license:gpl3)))
+
(define-public grit
(package
(name "grit")
- branch master updated (7fb6a9d -> 27c81fc), Ludovic Courtès, 2017/05/18
- 03/06: gnu: Add emacs-helm-swoop., Ludovic Courtès, 2017/05/18
- 04/06: gnu: Add emacs-helm-projectile., Ludovic Courtès, 2017/05/18
- 02/06: gnu: emacs-helm: Update to 2.7.0., Ludovic Courtès, 2017/05/18
- 01/06: gnu: emacs-async: Update to 1.9.2., Ludovic Courtès, 2017/05/18
- 06/06: lint: inputs-should-be-native: Add "cmake"., Ludovic Courtès, 2017/05/18
- 05/06: gnu: Add gemma.,
Ludovic Courtès <=