guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

04/11: gnu: bedtools: Remove unnecessary quasiquotation.


From: guix-commits
Subject: 04/11: gnu: bedtools: Remove unnecessary quasiquotation.
Date: Tue, 13 Dec 2022 10:34:11 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit 53f65f7315c3f37d670a6164e72cf0c96cab6c2e
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue Dec 13 15:13:57 2022 +0100

    gnu: bedtools: Remove unnecessary quasiquotation.
    
    * gnu/packages/bioinformatics.scm (bedtools)[arguments]: Remove quasiquote.
    [native-inputs]: Drop input label.
---
 gnu/packages/bioinformatics.scm | 13 +++++++------
 1 file changed, 7 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 5291056dc8..1ead24dff1 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -435,14 +435,15 @@ computational cluster.")
                 "1f2hh79l7dn147c2xyfgf5wfjvlqfw32kjfnnh2n1qy6rpzx2fik"))))
     (build-system gnu-build-system)
     (arguments
-     `(#:test-target "test"
-       #:make-flags
-       ,#~(list (string-append "prefix=" #$output))
-       #:phases
-       (modify-phases %standard-phases
+     (list
+      #:test-target "test"
+      #:make-flags
+      #~(list (string-append "prefix=" #$output))
+      #:phases
+      '(modify-phases %standard-phases
          (delete 'configure))))
     (native-inputs
-     `(("python" ,python-wrapper)))
+     (list python-wrapper))
     (inputs
      (list samtools zlib))
     (home-page "https://github.com/arq5x/bedtools2";)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]