This is an automated email from the git hooks/post-receive script.
rekado pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new e33bf0bbe6 gnu: Add python-pyahocorasick.
e33bf0bbe6 is described below
commit e33bf0bbe6ffc5fec83b12755f4ad7fdea857518
Author: nafkhamdc <[email protected]>
AuthorDate: Fri Apr 26 16:08:12 2024 +0000
gnu: Add python-pyahocorasick.
* gnu/packages/bioinformatics.scm (python-pyahocorasick): New variable.
Change-Id: I468bed450351b49cf81344a328841cd77f67cb4e
Signed-off-by: Ricardo Wurmus <[email protected]>
---
gnu/packages/bioinformatics.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 8452afaa8b..41e8f07603 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -6490,6 +6490,29 @@ Illumina paired-end data (for CASAVA 1.8+).")
average nucleotide identity.")
(license license:expat)))
+(define-public python-pyahocorasick
+ (package
+ (name "python-pyahocorasick")
+ (version "2.1.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/WojciechMula/pyahocorasick")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1fsnivwcw56q7lwz41c5kbfvxv0v17mmkx43i2a293l49fxj08j8"))))
+ (build-system pyproject-build-system)
+ (native-inputs (list python-pytest python-twine python-wheel))
+ (home-page "https://github.com/WojciechMula/pyahocorasick")
+ (synopsis "Library for finding multiple key strings in text")
+ (description
+ "Pyahocorasick is a fast, memory-efficient library for multi-pattern
string search.
+This means that you can find multiple key strings occurrences
+at once in some input text.")
+ (license license:bsd-3)))
+
(define-public exonerate
(package
(name "exonerate")