me
/
guix
Archived
1
0
Fork 0

gnu: adapterremoval: Update to 2.3.3.

* gnu/packages/bioinformatics.scm (adapterremoval): Update to 2.3.3.
[arguments]: Simplify.
[inputs]: Reformat.
master
Ricardo Wurmus 2023-04-25 19:45:13 +02:00
parent d67b8788b3
commit 5a1b246736
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 10 additions and 10 deletions

View File

@ -16232,7 +16232,7 @@ tools which build on STAR, Arriba does not require to reduce the
(define-public adapterremoval
(package
(name "adapterremoval")
(version "2.3.0")
(version "2.3.3")
(source
(origin
(method git-fetch)
@ -16242,18 +16242,18 @@ tools which build on STAR, Arriba does not require to reduce the
(file-name (git-file-name name version))
(sha256
(base32
"1nf3ki5pfzalhrx2fr1y6pfqfi133yj2m7q4fj9irf5fb94bapwr"))))
"0wyr182667wqdmzhwwa6f7dddr8kk0scgzb8lsm23wim544mvn6i"))))
(build-system gnu-build-system)
(arguments
`(#:make-flags
,#~(list "COLOR_BUILD=no"
(list
#:make-flags
#~(list "COLOR_BUILD=no"
(string-append "PREFIX=" #$output))
#:test-target "test"
#:phases
(modify-phases %standard-phases
'(modify-phases %standard-phases
(delete 'configure))))
(inputs
(list zlib))
(inputs (list zlib))
(home-page "https://adapterremoval.readthedocs.io/")
(synopsis "Rapid sequence adapter trimming, identification, and read merging")
(description