gnu: gemma: Fix indentation.

* gnu/packages/bioinformatics.scm (gemma)[arguments]: Fix indentation.
This commit is contained in:
Efraim Flashner 2017-06-15 10:18:17 +03:00
parent 2c9232ae69
commit 07bf6929b9
No known key found for this signature in database
GPG key ID: F4C1D3917EACEE93

View file

@ -2729,16 +2729,16 @@ (define-public gemma
(modify-phases %standard-phases
(delete 'configure)
(add-before 'build 'bin-mkdir
(lambda _
(mkdir-p "bin")
#t))
(lambda _
(mkdir-p "bin")
#t))
(replace 'install
(lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out")))
(install-file "bin/gemma"
(string-append
out "/bin")))
#t)))
(lambda* (#:key outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out")))
(install-file "bin/gemma"
(string-append
out "/bin")))
#t)))
#:tests? #f)) ; no tests included yet
(home-page "https://github.com/xiangzhou/GEMMA")
(synopsis "Tool for genome-wide efficient mixed model association")