unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
From: Ben Woodcroft <donttrustben@gmail.com>
To: guix-devel@gnu.org
Subject: [PATCH 2/4] gnu: Add ncbi-tools.
Date: Sat,  3 Dec 2016 20:38:59 +1000	[thread overview]
Message-ID: <20161203103901.27770-2-donttrustben@gmail.com> (raw)
In-Reply-To: <20161203103901.27770-1-donttrustben@gmail.com>

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

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 415024f..961f0b2 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -80,6 +80,7 @@
   #:use-module (gnu packages readline)
   #:use-module (gnu packages ruby)
   #:use-module (gnu packages serialization)
+  #:use-module (gnu packages shells)
   #:use-module (gnu packages statistics)
   #:use-module (gnu packages tbb)
   #:use-module (gnu packages tex)
@@ -4340,6 +4341,67 @@ simultaneously.")
        ("ngs-sdk" ,ngs-sdk)))
     (synopsis "Java bindings for NGS SDK")))
 
+(define-public ncbi-tools
+  (package
+    (name "ncbi-tools")
+    (version "20160908")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "ftp://ftp.ncbi.nih.gov/toolbox/ncbi_tools/old/"
+                           version "/ncbi.tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "1252s4fw41w5yalz9b50pvzvkiyjfcgy0isw1qgmg0v66bp49khz"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:tests? #f ; There are no tests.
+       #:phases
+       (modify-phases %standard-phases
+         (delete 'configure)
+         (add-after 'unpack 'patch-sources
+            (lambda _
+              (for-each (lambda (file)
+                          (substitute* file
+                            (("NCBI_MAKE_SHELL = .*")
+                             (string-append
+                              "NCBI_MAKE_SHELL = "
+                              (which "sh")
+                              "\n"))))
+                        (find-files "platform" ".*mk"))
+              (substitute* "make/ln-if-absent"
+                (("set path=\\(/usr/bin /bin\\)") ""))
+              #t))
+         (replace 'build
+            (lambda _
+              (chdir "..")
+              (zero? (system* "ncbi/make/makedis.csh"))))
+         (replace 'install
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let* ((out (assoc-ref outputs "out"))
+                    (bin (string-append out "/bin"))
+                    (man (string-append out "/share/man/man1")))
+               (for-each (lambda (file)
+                           (install-file
+                            (string-append "ncbi/build/" file) bin)
+                           (install-file
+                            (string-append "ncbi/doc/man/" file ".1") man))
+                         ;; XXX: TODO: Install and test other binaries.
+                         (list "tbl2asn"))
+               #t))))))
+    (native-inputs
+     `(("csh" ,tcsh)
+       ("pkg-config" ,pkg-config)
+       ("coreutils" ,coreutils)))
+    (home-page "https://www.ncbi.nlm.nih.gov/IEB/ToolBox/MainPage/index.html")
+    (synopsis "NCBI-related tools")
+    (description "The United States of America @dfn{National Center for
+Biotechnology Information} (NCBI) Software Development Toolkit is for the
+production and distribution of GenBank, Entrez, BLAST and related NCBI
+services.")
+    (license license:public-domain)))
+
 (define-public ncbi-vdb
   (package
     (name "ncbi-vdb")
-- 
2.10.2

  reply	other threads:[~2016-12-03 10:39 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-12-03 10:38 [PATCH 1/4] gnu: Add perl-time-piece Ben Woodcroft
2016-12-03 10:38 ` Ben Woodcroft [this message]
2016-12-03 19:19   ` [PATCH 2/4] gnu: Add ncbi-tools Ricardo Wurmus
2016-12-03 19:30   ` Marius Bakke
2016-12-03 10:39 ` [PATCH 3/4] gnu: Add barrnap Ben Woodcroft
2016-12-03 19:20   ` Ricardo Wurmus
2016-12-03 19:36   ` Marius Bakke
2016-12-04 15:51     ` Ricardo Wurmus
2016-12-03 10:39 ` [PATCH 4/4] gnu: Add prokka Ben Woodcroft
2016-12-03 19:47   ` Marius Bakke
2016-12-03 18:55 ` [PATCH 1/4] gnu: Add perl-time-piece Marius Bakke

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=20161203103901.27770-2-donttrustben@gmail.com \
    --to=donttrustben@gmail.com \
    --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).