summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorAndreas Enge <andreas@enge.fr>2026-02-23 17:39:44 +0100
committerAndreas Enge <andreas@enge.fr>2026-02-23 17:39:47 +0100
commit12f5bf16e16a9a1a5b8145e360be1eecdadf9d94 (patch)
treecce338115ce3cceeeee91b7fe2e46bc79a8db805 /gnu
parent1a9576ab2150e789d3f7191dd8435eed8102964a (diff)
gnu: Remove wfa2-lib.
* gnu/packages/bioinformatics.scm (wfa2-lib): Delete variable. Fixes: guix/guix#3705 Change-Id: Ib19e25a84c982ab7a6403a9578adf2ecbaa46b9b
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/bioinformatics.scm47
1 files changed, 0 insertions, 47 deletions
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 3e3b4a9cf4a..97e1aad615d 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -22560,53 +22560,6 @@ 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)
- (arguments
- (list
- #:phases
- #~(modify-phases %standard-phases
- ;; This pkg-config file is provided by other distributions.
- (add-after 'install 'install-pkg-config-file
- (lambda _
- (let ((pkgconfig (string-append #$output "/lib/pkgconfig")))
- (mkdir-p pkgconfig)
- (with-output-to-file (string-append pkgconfig "/libwfa2.pc")
- (lambda _
- (format #t "\
-prefix=~a~@
-exec_prefix=${prefix}~@
-libdir=${exec_prefix}/lib~@
-includedir=${prefix}/include/wfa2lib~@
-~@
-Name: libwfa2~@
-Version: ~a~@
-Description: Wavefront alignment algorithm library~@
-Libs: -L${libdir} -lwfa2 -lwfa2cpp~@
-Cflags: -I${includedir}~%"
- #$output #$version)))))))))
- (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.")
- (properties `((tunable? . #t)))
- (license license:expat)))
-
(define-public samblaster
(package
(name "samblaster")