me
/
guix
Archived
1
0
Fork 0

gnu: Add wfa2-lib.

* gnu/packages/bioinformatics.scm (wfa2-lib): New variable.
master
Ricardo Wurmus 2023-04-25 17:56:06 +02:00
parent 8c5ba69d6e
commit 8664c6230e
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 23 additions and 0 deletions

View File

@ -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")