all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
* [PATCH] gnu: Add hmmer
@ 2015-06-21  8:52 Ben Woodcroft
  2015-06-21  9:51 ` Ricardo Wurmus
  0 siblings, 1 reply; 10+ messages in thread
From: Ben Woodcroft @ 2015-06-21  8:52 UTC (permalink / raw)
  To: guix-devel@gnu.org

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

One of my favourite pieces of software.

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

From 7afc66fcf58e75e3738edf31f3cf1da0c1fe4488 Mon Sep 17 00:00:00 2001
From: Ben Woodcroft <donttrustben@gmail.com>
Date: Sun, 21 Jun 2015 18:49:56 +1000
Subject: [PATCH] gnu: Add hmmer.

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

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 8dfaff3..a41d0f5 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -1032,6 +1032,29 @@ several alignment strategies enable effective alignment of RNA-seq reads, in
 particular, reads spanning multiple exons.")
     (license license:gpl3+)))
 
+(define-public hmmer
+  (package
+    (name "hmmer")
+    (version "3.1b2")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
+                    "http://selab.janelia.org/software/hmmer3/3.1b2/hmmer-"
+		    version ".tar.gz"))
+              (sha256
+               (base32
+                "0djmgc0pfli0jilfx8hql1axhwhqxqb8rxg2r5rg07aw73sfs5nx"))))
+    (build-system gnu-build-system)
+    (native-inputs `(("perl", perl)))
+    (home-page "http://hmmer.janelia.org")
+    (synopsis "Biosequence analysis using profile hidden Markov models")
+    (description
+     "HMMER is used for searching sequence databases for homologs of protein
+sequences, and for making protein sequence alignments.  It implements methods
+using probabilistic models called profile hidden Markov models (profile
+HMMs).")
+    (license license:gpl3+)))
+
 (define-public htseq
   (package
     (name "htseq")
-- 
2.1.4


^ permalink raw reply related	[flat|nested] 10+ messages in thread

end of thread, other threads:[~2015-06-24  4:41 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-06-21  8:52 [PATCH] gnu: Add hmmer Ben Woodcroft
2015-06-21  9:51 ` Ricardo Wurmus
2015-06-21 10:17   ` Ben Woodcroft
2015-06-21 17:17     ` Mark H Weaver
2015-06-21 18:11       ` Pjotr Prins
2015-06-21 18:23         ` Ricardo Wurmus
2015-06-24  1:37           ` Ben Woodcroft
2015-06-24  1:48             ` Ben Woodcroft
2015-06-24  1:52               ` Ben Woodcroft
2015-06-24  4:41                 ` Mark H Weaver

Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.