diff options
author | Arun Isaac | 2024-02-23 21:28:12 +0000 |
---|---|---|
committer | Arun Isaac | 2024-02-23 21:28:12 +0000 |
commit | 9f4c479e6d21e7bb2d3590cbb2df5906060d2781 (patch) | |
tree | 36685fac91f0fd520d5ed16e0c89037e3fc79b41 /gn/packages | |
parent | 8de10edc74100b49589949778c5bd84c72e83deb (diff) | |
download | guix-bioinformatics-9f4c479e6d21e7bb2d3590cbb2df5906060d2781.tar.gz |
gn: Add vcfpp.
* gn/packages/bioinformatics.scm (vcfpp): New variable.
Diffstat (limited to 'gn/packages')
-rw-r--r-- | gn/packages/bioinformatics.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gn/packages/bioinformatics.scm b/gn/packages/bioinformatics.scm index b0590ca..8141ada 100644 --- a/gn/packages/bioinformatics.scm +++ b/gn/packages/bioinformatics.scm @@ -4550,3 +4550,24 @@ and VCF files.") (license (list license:expat ; SeqLib/IntervalTree.h, SeqLib/aho_corasick.hpp, ; json/json-forwards.h, json/json.h, src/jsoncpp.cpp, src/ssw.c, license:asl2.0)))) ; main license + +(define-public vcfpp + (package + (name "vcfpp") + (version "0.3.3") + (source (origin + (method url-fetch) + (uri (string-append "https://github.com/Zilong-Li/vcfpp/releases/download/v" + version "/vcfpp.h")) + (sha256 + (base32 + "1wq76wz81y09ic37z30vljqnczhwx2qijav0nfvg6xi8wd2c75n3")))) + (build-system copy-build-system) + (arguments + (list #:install-plan #~'(("vcfpp.h" "include/vcfpp/vcfpp.h")))) + (home-page "https://github.com/Zilong-Li/vcfpp") + (synopsis "C++ API of htslib") + (description "@code{vcfpp} is a single C++ file as +interface to the basic htslib. It can be easily included in a C++ +program for scripting high-performance genomic analyses.") + (license license:asl2.0))) |