gnu: gemma: Fix indentation.
* gnu/packages/bioinformatics.scm (gemma)[arguments]: Fix indentation.master
parent
2c9232ae69
commit
07bf6929b9
|
@ -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")
|
||||||
|
|
Reference in New Issue