From: Pierre Neidhardt <mail@ambrevar.xyz>
To: 35792@debbugs.gnu.org
Subject: [bug#35792] [PATCH 5/7] gnu: Add fastahack.
Date: Sat, 18 May 2019 19:26:38 +0200 [thread overview]
Message-ID: <20190518172640.7165-5-mail@ambrevar.xyz> (raw)
In-Reply-To: <20190518172640.7165-1-mail@ambrevar.xyz>
* gnu/packages/bioinformatics.scm (fastahack): New variable.
---
gnu/packages/bioinformatics.scm | 32 ++++++++++++++++++++++++++++++++
1 file changed, 32 insertions(+)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index e018b51968..3ad0a2a421 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -14964,3 +14964,35 @@ combinatorial configurations.\", G. Ehrlich - Journal of the ACM (JACM),
(description "A tiny C library for managing SOM (Self-Organizing Maps)
neural networks.")
(license license:gpl3))))
+
+(define-public fastahack
+ (let ((commit "c68cebb4f2e5d5d2b70cf08fbdf1944e9ab2c2dd"))
+ (package
+ (name "fastahack")
+ (version (git-version "0.0.0" "1" commit))
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/ekg/fastahack/")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0hfdv67l9g611i2ck4l92pd6ygmsp9g1ph4zx1ni7qkpsikf0l19"))))
+ (build-system gnu-build-system)
+ (arguments
+ `(#:tests? #f ; There are no tests to run.
+ #:phases
+ (modify-phases %standard-phases
+ (delete 'configure) ; There is no configure phase.
+ (replace 'install
+ (lambda* (#:key outputs #:allow-other-keys)
+ (let ((bin (string-append (assoc-ref outputs "out") "/bin")))
+ (install-file "fastahack" bin)))))))
+ (home-page "https://github.com/ekg/fastahack")
+ (synopsis "Indexing and sequence extraction from FASTA files")
+ (description "Fastahack is a small application for indexing and
+extracting sequences and subsequences from FASTA files. The included library
+provides a FASTA reader and indexer that can be embedded into applications
+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)))))
--
2.21.0
next prev parent reply other threads:[~2019-05-18 17:27 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-05-18 17:25 [bug#35792] [PATCH 0/7] Package freebayes Pierre Neidhardt
2019-05-18 17:26 ` [bug#35792] [PATCH 1/7] gnu: Add tabixpp Pierre Neidhardt
2019-05-18 17:26 ` [bug#35792] [PATCH 2/7] gnu: Add smithwaterman Pierre Neidhardt
2019-08-08 14:30 ` Ricardo Wurmus
2019-08-08 16:29 ` Efraim Flashner
2019-08-08 16:31 ` Ricardo Wurmus
2019-05-18 17:26 ` [bug#35792] [PATCH 3/7] gnu: Add multichoose Pierre Neidhardt
2019-05-18 17:26 ` [bug#35792] [PATCH 4/7] gnu: Add fsom Pierre Neidhardt
2019-05-18 17:26 ` Pierre Neidhardt [this message]
2019-05-18 17:26 ` [bug#35792] [PATCH 6/7] gnu: Add vcflib Pierre Neidhardt
2019-05-18 17:26 ` [bug#35792] [PATCH 7/7] gnu: Add freebayes Pierre Neidhardt
2019-08-01 14:38 ` Pjotr Prins
2019-08-08 12:20 ` bug#35792: " Efraim Flashner
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://guix.gnu.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20190518172640.7165-5-mail@ambrevar.xyz \
--to=mail@ambrevar.xyz \
--cc=35792@debbugs.gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
Code repositories for project(s) associated with this public inbox
https://git.savannah.gnu.org/cgit/guix.git
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).