guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

18/21: gnu: Add exonerate.


From: Ben Woodcroft
Subject: 18/21: gnu: Add exonerate.
Date: Mon, 8 Aug 2016 12:09:00 +0000 (UTC)

benwoodcroft pushed a commit to branch master
in repository guix.

commit b16728b068ff9fda98b6f867a106a02bf5550364
Author: Ben Woodcroft <address@hidden>
Date:   Tue Jul 12 16:27:49 2016 +1000

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

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 4450580..661bacb 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -52,6 +52,7 @@
   #:use-module (gnu packages gcc)
   #:use-module (gnu packages gd)
   #:use-module (gnu packages gtk)
+  #:use-module (gnu packages glib)
   #:use-module (gnu packages groff)
   #:use-module (gnu packages image)
   #:use-module (gnu packages imagemagick)
@@ -1996,6 +1997,36 @@ in structured XML format.  This can eliminate the need 
for writing custom
 software to answer ad hoc questions.")
     (license license:public-domain)))
 
+(define-public exonerate
+  (package
+    (name "exonerate")
+    (version "2.4.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri
+        (string-append
+         "http://ftp.ebi.ac.uk/pub/software/vertebrategenomics/exonerate/";
+         "exonerate-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0hj0m9xygiqsdxvbg79wq579kbrx1mdrabi2bzqz2zn9qwfjcjgq"))))
+    (build-system gnu-build-system)
+    (arguments
+     `(#:parallel-build? #f)) ; Building in parallel fails on some machines.
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (inputs
+     `(("glib" ,glib)))
+    (home-page
+     "https://www.ebi.ac.uk/about/vertebrate-genomics/software/exonerate";)
+    (synopsis "Generic tool for biological sequence alignment")
+    (description
+     "Exonerate is a generic tool for pairwise sequence comparison.  It allows
+the alignment of sequences using a many alignment models, either exhaustive
+dynamic programming or a variety of heuristics.")
+    (license license:gpl3)))
+
 (define-public express
   (package
     (name "express")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]