gnu: methyldackel: Simplify arguments.

* gnu/packages/bioinformatics.scm (methyldackel)[arguments]: Use list, drop
argument list.
[native-inputs]: Drop package label.
This commit is contained in:
Ricardo Wurmus 2023-05-12 22:24:30 +02:00
parent 5d446e439d
commit 7a199bb74c
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -17856,15 +17856,16 @@ (define-public methyldackel
"1sfhf2ap75qxpnmy1ifgmxqs18rq8mah9mcgkby73vc6h0sw99ws"))))
(build-system gnu-build-system)
(arguments
`(#:test-target "test"
#:make-flags
,#~(list "CC=gcc"
"CFLAGS=-fcommon"
(string-append "prefix=" #$output "/bin/"))
#:phases
(modify-phases %standard-phases
(list
#:test-target "test"
#:make-flags
#~(list "CC=gcc"
"CFLAGS=-fcommon"
(string-append "prefix=" #$output "/bin/"))
#:phases
'(modify-phases %standard-phases
(replace 'configure
(lambda* (#:key outputs #:allow-other-keys)
(lambda _
(substitute* "Makefile"
(("-lhts ") "-lhts -lBigWig ")
(("install MethylDackel \\$\\(prefix\\)" match)
@ -17874,7 +17875,7 @@ (define-public methyldackel
htslib-1.9 libbigwig zlib))
;; Needed for tests
(native-inputs
`(("python" ,python-wrapper)))
(list python-wrapper))
(home-page "https://github.com/dpryan79/MethylDackel")
(synopsis "Universal methylation extractor for BS-seq experiments")
(description