summaryrefslogtreecommitdiff
path: root/gnu/packages/bioinformatics.scm
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/packages/bioinformatics.scm
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/packages/bioinformatics.scm')
-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
22560library automatically handles index file generation and use.") 22560library automatically handles index file generation and use.")
22561 (license (list license:expat license:gpl2)))) 22561 (license (list license:expat license:gpl2))))
22562 22562
22563(define-public wfa2-lib
22564 (package
22565 (name "wfa2-lib")
22566 (version "2.3.3")
22567 (source
22568 (origin
22569 (method git-fetch)
22570 (uri (git-reference
22571 (url "https://github.com/smarco/WFA2-lib")
22572 (commit (string-append "v" version))))
22573 (file-name (git-file-name name version))
22574 (sha256
22575 (base32 "110s1s79z8ndjs4qdgmrj708iiaqyagia3gi2fxak101lg263diw"))))
22576 (build-system cmake-build-system)
22577 (arguments
22578 (list
22579 #:phases
22580 #~(modify-phases %standard-phases
22581 ;; This pkg-config file is provided by other distributions.
22582 (add-after 'install 'install-pkg-config-file
22583 (lambda _
22584 (let ((pkgconfig (string-append #$output "/lib/pkgconfig")))
22585 (mkdir-p pkgconfig)
22586 (with-output-to-file (string-append pkgconfig "/libwfa2.pc")
22587 (lambda _
22588 (format #t "\
22589prefix=~a~@
22590exec_prefix=${prefix}~@
22591libdir=${exec_prefix}/lib~@
22592includedir=${prefix}/include/wfa2lib~@
22593~@
22594Name: libwfa2~@
22595Version: ~a~@
22596Description: Wavefront alignment algorithm library~@
22597Libs: -L${libdir} -lwfa2 -lwfa2cpp~@
22598Cflags: -I${includedir}~%"
22599 #$output #$version)))))))))
22600 (native-inputs
22601 (list pkg-config))
22602 (home-page "https://github.com/smarco/WFA2-lib")
22603 (synopsis "Wavefront alignment algorithm library")
22604 (description "The wavefront alignment (WFA) algorithm is an exact
22605gap-affine algorithm that takes advantage of homologous regions between the
22606sequences to accelerate the alignment process.")
22607 (properties `((tunable? . #t)))
22608 (license license:expat)))
22609
22610(define-public samblaster 22563(define-public samblaster
22611 (package 22564 (package
22612 (name "samblaster") 22565 (name "samblaster")