guix-commits
[Top][All Lists]
Advanced

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

01/03: gnu: Add wfa2-lib.


From: guix-commits
Subject: 01/03: gnu: Add wfa2-lib.
Date: Tue, 25 Apr 2023 13:10:52 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit 8664c6230e185332167a63d3a160c3eec83fd55c
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Tue Apr 25 17:56:06 2023 +0200

    gnu: Add wfa2-lib.
    
    * gnu/packages/bioinformatics.scm (wfa2-lib): New variable.
---
 gnu/packages/bioinformatics.scm | 23 +++++++++++++++++++++++
 1 file changed, 23 insertions(+)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index dfe82efe22..c981d69a8e 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -17145,6 +17145,29 @@ which would benefit from directly reading subsequences 
from FASTA files.  The
 library automatically handles index file generation and use.")
     (license (list license:expat license:gpl2))))
 
+(define-public wfa2-lib
+  (package
+    (name "wfa2-lib")
+    (version "2.3.3")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/smarco/WFA2-lib";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "110s1s79z8ndjs4qdgmrj708iiaqyagia3gi2fxak101lg263diw"))))
+    (build-system cmake-build-system)
+    (native-inputs
+     (list pkg-config))
+    (home-page "https://github.com/smarco/WFA2-lib";)
+    (synopsis "Wavefront alignment algorithm library")
+    (description "The wavefront alignment (WFA) algorithm is an exact
+gap-affine algorithm that takes advantage of homologous regions between the
+sequences to accelerate the alignment process.")
+    (license license:expat)))
+
 (define-public vcflib
   (package
     (name "vcflib")



reply via email to

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