mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: Add savvy.
* gnu/packages/bioinformatics.scm (savvy): New variable. Change-Id: I48dcfad2c6c769778bd79dffa084332da53991ad
This commit is contained in:
parent
81d6fe1672
commit
4a5a23aceb
1 changed files with 37 additions and 0 deletions
|
@ -9386,6 +9386,43 @@ viewer.")
|
||||||
(delete 'patch-tests)
|
(delete 'patch-tests)
|
||||||
(delete 'configure))))))))
|
(delete 'configure))))))))
|
||||||
|
|
||||||
|
(define-public savvy
|
||||||
|
(package
|
||||||
|
(name "savvy")
|
||||||
|
(version "2.1.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/statgen/savvy")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"03jh89gl67adnpkwx8yrdn62pd9sg69k21gxh15my2vvpfl1pxlx"))))
|
||||||
|
(build-system cmake-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:configure-flags
|
||||||
|
'(list "-DBUILD_TESTS=ON"
|
||||||
|
"-DBUILD_EVAL=ON")
|
||||||
|
#:phases
|
||||||
|
'(modify-phases %standard-phases
|
||||||
|
(add-after 'unpack 'use-shared-libraries
|
||||||
|
(lambda _
|
||||||
|
;; Do not prefer static libraries.
|
||||||
|
(substitute* "CMakeLists.txt"
|
||||||
|
(("set\\(CMAKE_FIND_LIBRARY_SUFFIXES \".a;.*") "")))))))
|
||||||
|
(native-inputs (list pkg-config))
|
||||||
|
(inputs (list htslib))
|
||||||
|
(propagated-inputs (list streambuf-shrinkwrap))
|
||||||
|
(home-page "https://github.com/statgen/savvy/")
|
||||||
|
(synopsis "Interface to various variant calling formats")
|
||||||
|
(description
|
||||||
|
"Savvy is the official C++ interface for the SAV file format and offers
|
||||||
|
seamless support for BCF and VCF files.")
|
||||||
|
(license license:mpl2.0)))
|
||||||
|
|
||||||
(define-public morpheus
|
(define-public morpheus
|
||||||
(package
|
(package
|
||||||
(name "morpheus")
|
(name "morpheus")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue