me
/
guix
Archived
1
0
Fork 0

gnu: gemma: Fix indentation.

* gnu/packages/bioinformatics.scm (gemma)[arguments]: Fix indentation.
master
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
1 changed files with 9 additions and 9 deletions

View File

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