unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Ben Woodcroft <b.woodcroft@uq.edu.au>
To: "guix-devel@gnu.org" <guix-devel@gnu.org>
Subject: [PATCH] Add seqtk.
Date: Wed, 24 Jun 2015 15:07:38 +1000	[thread overview]
Message-ID: <558A3B1A.4010700@uq.edu.au> (raw)

[-- Attachment #1: Type: text/plain, Size: 75 bytes --]

I feel somewhat honoured to even be mentioned in the same thread as kseq.h

[-- Attachment #2: 0001-gnu-Add-seqtk.patch --]
[-- Type: text/x-patch, Size: 2380 bytes --]

From 48d3adae4bcada110df3fb7d8c5ddc55ad2000ff Mon Sep 17 00:00:00 2001
From: Ben Woodcroft <donttrustben@gmail.com>
Date: Wed, 24 Jun 2015 15:04:48 +1000
Subject: [PATCH] gnu: Add seqtk.

* gnu/packages/bioinformatics.scm (seqtk): New variable.
---
 gnu/packages/bioinformatics.scm | 45 +++++++++++++++++++++++++++++++++++++++++
 1 file changed, 45 insertions(+)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 8dfaff3..e4575ae 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -1573,6 +1573,51 @@ any particular back-end implementation, and supports use of multiple back-ends
 simultaneously.")
     (license license:public-domain)))
 
+(define-public seqtk
+  (let ((commit "4feb6e814"))
+    (package
+      (name "seqtk")
+      ;; version number from running 'seqtk' after installation
+      (version (string-append "1.0-r82." commit))
+      (source (origin
+                (method git-fetch)
+                (uri (git-reference
+                      (url "https://github.com/lh3/seqtk.git")
+                      (commit commit)))
+                (sha256
+                 (base32
+                  "0wdkz8chkinfm23cg95nrn797lv12n2wxglwb3s2kvf0iv3rrx01"))))
+      (build-system gnu-build-system)
+      (arguments
+       `(#:tests? #f
+	 #:phases
+	 (modify-phases %standard-phases
+	   (delete 'configure)
+	   (replace 'build
+		    (lambda* _
+		      (zero? (system* "make"))))
+	   (replace 'install
+		    (lambda* (#:key outputs #:allow-other-keys)
+		      (let ((bin (string-append
+				  (assoc-ref outputs "out")
+				  "/bin/")))
+			(mkdir-p bin)
+			(copy-file "seqtk" (string-append
+					    bin "seqtk"))
+			(copy-file "trimadap" (string-append
+					    bin "trimadap"))))))))
+      (native-inputs
+       `(("zlib" ,zlib)))
+      (home-page "https://github.com/lh3/seqtk")
+      (synopsis "Toolkit for processing sequences in FASTA/Q formats")
+      (description
+       "Seqtk is a fast and lightweight tool for processing sequences in
+the FASTA or FASTQ format.  It seamlessly parses both FASTA and FASTQ
+files which can also be optionally compressed by gzip.")
+      (license (license:non-copyleft
+		"file://src/LICENSE"
+		"See src/LICENSE in the distribution.")))))
+
 (define-public ngs-java
   (package (inherit ngs-sdk)
     (name "ngs-java")
-- 
2.1.4


             reply	other threads:[~2015-06-24  5:07 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-06-24  5:07 Ben Woodcroft [this message]
2015-06-24 12:09 ` [PATCH] Add seqtk Mark H Weaver
2015-07-18  7:51   ` Ben Woodcroft
2015-07-18  9:07     ` John Darrington
2016-09-09 11:08       ` [PATCH] gnu: " Ben Woodcroft
2016-09-09 12:37         ` Marius Bakke
2016-09-09 12:54           ` Marius Bakke
2016-09-10  4:03           ` Ben Woodcroft

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=558A3B1A.4010700@uq.edu.au \
    --to=b.woodcroft@uq.edu.au \
    --cc=guix-devel@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).