summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorNicolas Graves <ngraves@ngraves.fr>2026-04-12 00:09:13 +0200
committerAndreas Enge <andreas@enge.fr>2026-08-06 19:57:27 +0200
commit14f02f37356d0132c61e3743a6098a0d91328548 (patch)
treea12405c8f46774443f3693154f791b0d8bafdf01 /gnu
parentdcfd284530d25f6c1baacd460d76a236f02a7479 (diff)
gnu: express-beta-diversity: Improve style.
* gnu/packages/bioinformatics.scm (express-beta-diversity) [arguments]<#:phases>: Use G-expressions, drop trailing #t. [inputs]: Drop input label. Signed-off-by: Andreas Enge <andreas@enge.fr>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/bioinformatics.scm29
1 files changed, 16 insertions, 13 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 447105c6abc..7d63a204788 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -8247,20 +8247,23 @@ ChIP-Seq, and analysis of metagenomic data.")
8247 "0s0yzg5c21349rh7x4w9266jsvnp7j1hp9cf8sk32hz8nvrj745x")))) 8247 "0s0yzg5c21349rh7x4w9266jsvnp7j1hp9cf8sk32hz8nvrj745x"))))
8248 (build-system gnu-build-system) 8248 (build-system gnu-build-system)
8249 (arguments 8249 (arguments
8250 `(#:phases 8250 (list
8251 (modify-phases %standard-phases 8251 #:phases
8252 (delete 'configure) 8252 #~(modify-phases %standard-phases
8253 (add-before 'build 'enter-source (lambda _ (chdir "source") #t)) 8253 (delete 'configure)
8254 (replace 'check 8254 (add-before 'build 'enter-source
8255 (lambda _ (invoke "../bin/ExpressBetaDiversity" "-u") #t)) 8255 (lambda _
8256 (replace 'install 8256 (chdir "source")))
8257 (lambda* (#:key outputs #:allow-other-keys) 8257 (replace 'check
8258 (let ((bin (string-append (assoc-ref outputs "out") "/bin"))) 8258 (lambda _
8259 (install-file "../scripts/convertToEBD.py" bin) 8259 (invoke "../bin/ExpressBetaDiversity" "-u")))
8260 (install-file "../bin/ExpressBetaDiversity" bin) 8260 (replace 'install
8261 #t)))))) 8261 (lambda* (#:key outputs #:allow-other-keys)
8262 (let ((bin (string-append #$output "/bin")))
8263 (install-file "../scripts/convertToEBD.py" bin)
8264 (install-file "../bin/ExpressBetaDiversity" bin)))))))
8262 (inputs 8265 (inputs
8263 `(("python" ,python-2))) 8266 (list python-2))
8264 (home-page "https://github.com/dparks1134/ExpressBetaDiversity") 8267 (home-page "https://github.com/dparks1134/ExpressBetaDiversity")
8265 (synopsis "Taxon- and phylogenetic-based beta diversity measures") 8268 (synopsis "Taxon- and phylogenetic-based beta diversity measures")
8266 (description 8269 (description