all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Rob Syme <rob.syme@gmail.com>
To: guix-devel@gnu.org
Subject: [PATCH] gnu: Include CodingQuarry gene predictor
Date: Tue, 8 Mar 2016 17:13:34 +0800	[thread overview]
Message-ID: <CAEf4xgeu18CvOoO0cC3rm3q3TxtROEtt56iTr7gDDoG7sKuW9w@mail.gmail.com> (raw)

* gnu/packages/bioinformatics.scm: Add codingquarry package description
---
 gnu/packages/bioinformatics.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 5d53dc9..2e665db 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -914,6 +914,37 @@ also includes an interface for tabix.")
      "CLIPper is a tool to define peaks in CLIP-seq datasets.")
     (license license:gpl2)))

+(define-public codingquarry
+  (package
+    (name "codingquarry")
+    (version "1.3")
+    (source (origin
+              (method url-fetch)
+              (uri (string-append
"mirror://sourceforge/codingquarry/CodingQuarry_v"
+                                  version ".tar.gz"))
+              (sha256
+               (base32
+                "1nicv9k7g7w7c7zihr27xa27xnrd46p6n3b801hh13a7d5775fzi"))))
+    (build-system gnu-build-system)
+    (arguments
+     '(#:phases
+       (modify-phases %standard-phases
+         (delete 'configure)
+         (delete 'check) ;; Don't run the 'make check' step of the
gnu-build-system
+         (replace 'install ;; Replace the install step with the
function defined below
+           (lambda* (#:key outputs #:allow-other-keys)
+             (let* ((out (assoc-ref outputs "out"))
+                    (bin (string-append out "/bin")))
+               (mkdir-p bin)
+               (copy-file "CodingQuarry" (string-append bin "/CodingQuarry"))
+               (copy-file "CufflinksGTF_to_CodingQuarryGFF3.py"
(string-append bin "/CufflinksGTF_to_CodingQuarryGFF3.py"))))))))
+    (inputs `(("openmpi", openmpi)))
+    (native-inputs `(("python", python-2)))
+    (synopsis "CodingQuarry is a highly accurate, self-training GHMM
fungal gene predictor")
+    (description "CodingQuarry is a highly accurate, self-training
GHMM fungal gene predictor designed to work with assembled, aligned
RNA-seq transcripts.")
+    (home-page "https://sourceforge.net/projects/codingquarry/")
+    (license licence:gpl3+)))
+
 (define-public couger
   (package
     (name "couger")
-- 
2.5.0

             reply	other threads:[~2016-03-08  9:14 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-03-08  9:13 Rob Syme [this message]
2016-03-08 23:39 ` [PATCH] gnu: Include CodingQuarry gene predictor Leo Famulari
2016-03-08 23:41   ` Rob Syme
2016-03-09 17:59   ` Andreas Enge
2016-03-11  3:55     ` Rob Syme
2016-03-16  8:50       ` Leo Famulari
2016-03-16  8:51         ` Rob Syme

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

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=CAEf4xgeu18CvOoO0cC3rm3q3TxtROEtt56iTr7gDDoG7sKuW9w@mail.gmail.com \
    --to=rob.syme@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 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.