gnu: Add skewer.

* gnu/packages/bioinformatics.scm (skewer): New variable.

Change-Id: Ieeb95ed7449b91ea853d73ecca05e5436121df6a
This commit is contained in:
Ricardo Wurmus 2024-12-04 16:20:52 +01:00
parent 0c1dddd90f
commit 3cfd6e11a4
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -15542,6 +15542,42 @@ (define-public kentutils
"http://genome.ucsc.edu/license/"
"The contents of this package are free for all uses."))))
(define-public skewer
(let ((commit "978e8e46cba44595ece623e5387749284a86b74b")
(revision "1"))
(package
(name "skewer")
(version (git-version "0" revision commit))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/relipmoc/skewer")
(commit commit)))
(file-name (git-file-name name version))
(sha256
(base32
"1b3skfnj3zmd2065fiyxjrg4k6xsxfy6nxz80vmajd830mk6vr69"))))
(build-system gnu-build-system)
(arguments
(list
#:tests? #f
#:phases
#~(modify-phases %standard-phases
(delete 'configure)
(replace 'install
(lambda _
(install-file "skewer" (string-append #$output "/bin")))))))
;; XXX Fails to build with GCC 11.
(native-inputs (list gcc-10))
(home-page "https://github.com/relipmoc/skewer")
(synopsis "Bit-masked k-difference matching")
(description "Skewer implements the bit-masked k-difference matching
algorithm dedicated to the task of adapter trimming and it is specially
designed for processing next-generation sequencing (NGS) paired-end
sequences.")
(license license:expat))))
(define-public f-seq
(let ((commit "6ccded34cff38cf432deed8503648b4a66953f9b")
(revision "1"))