From: Marius Bakke <mbakke@fastmail.com>
To: Ben Woodcroft <donttrustben@gmail.com>, guix-devel@gnu.org
Subject: Re: [PATCH 2/4] gnu: Add ncbi-tools.
Date: Sat, 03 Dec 2016 20:30:04 +0100 [thread overview]
Message-ID: <87wpfgbykj.fsf@kirby.i-did-not-set--mail-host-address--so-tickle-me> (raw)
In-Reply-To: <20161203103901.27770-2-donttrustben@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 4282 bytes --]
Ben Woodcroft <donttrustben@gmail.com> writes:
> * 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"))
I'm getting a timeout on this, though it works in a browser. However
this server is apparently also available over HTTPS, which is better.
> + (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)))
The files in regexp/ are released under a custom license found in
regexp/doc/LICENSE. Also corelib/regex.{c.h} are GPL2+.
algo/blast/core/boost_erf.c is covered by boost1.0, and
connect/parson.{c,h} are MIT. Some files in connect/mitsock seems to be
covered by an early variant of the 2-clause BSD.
Other files have unclear license terms such as those in
corelib/morefiles, though they seem sufficiently free for the
non-copyleft procedure. LGTM with these updates!
> +
> (define-public ncbi-vdb
> (package
> (name "ncbi-vdb")
> --
> 2.10.2
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 487 bytes --]
next prev parent reply other threads:[~2016-12-03 19:30 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 ` [PATCH 2/4] gnu: Add ncbi-tools Ben Woodcroft
2016-12-03 19:19 ` Ricardo Wurmus
2016-12-03 19:30 ` Marius Bakke [this message]
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=87wpfgbykj.fsf@kirby.i-did-not-set--mail-host-address--so-tickle-me \
--to=mbakke@fastmail.com \
--cc=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).