guix-commits
[Top][All Lists]
Advanced

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

01/04: gnu: Add pyicoteo.


From: Ricardo Wurmus
Subject: 01/04: gnu: Add pyicoteo.
Date: Mon, 14 Mar 2016 11:38:13 +0000

rekado pushed a commit to branch master
in repository guix.

commit 846e3409540241a05ed10f36e1a4a9b049ad5810
Author: Ricardo Wurmus <address@hidden>
Date:   Fri Mar 11 17:01:00 2016 +0100

    gnu: Add pyicoteo.
    
    * gnu/packages/bioinformatics.scm (pyicoteo): New variable.
---
 gnu/packages/bioinformatics.scm |   38 ++++++++++++++++++++++++++++++++++++++
 1 files changed, 38 insertions(+), 0 deletions(-)

diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index b3d8827..4925290 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -2556,6 +2556,44 @@ the phenotype as it models the data.")
 generated using the PacBio Iso-Seq protocol.")
       (license license:bsd-3))))
 
+(define-public pyicoteo
+  (package
+    (name "pyicoteo")
+    (version "2.0.7")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://bitbucket.org/regulatorygenomicsupf/";
+                           "pyicoteo/get/v" version ".tar.bz2"))
+       (file-name (string-append name "-" version ".tar.bz2"))
+       (sha256
+        (base32
+         "0d6087f29xp8wxwlj111c3sylli98n0l8ry58c51ixzq0zfm50wa"))))
+    (build-system python-build-system)
+    (arguments
+     `(#:python ,python-2 ; does not work with Python 3
+       #:tests? #f))      ; there are no tests
+    (inputs
+     `(("python2-matplotlib" ,python2-matplotlib)))
+    (home-page "https://bitbucket.org/regulatorygenomicsupf/pyicoteo";)
+    (synopsis "Analyze high-throughput genetic sequencing data")
+    (description
+     "Pyicoteo is a suite of tools for the analysis of high-throughput genetic
+sequencing data.  It works with genomic coordinates.  There are currently six
+different command-line tools:
+
address@hidden
address@hidden pyicoregion: for generating exploratory regions automatically;
address@hidden pyicoenrich: for differential enrichment between two conditions;
address@hidden pyicoclip: for calling CLIP-Seq peaks without a control;
address@hidden pyicos: for genomic coordinates manipulation;
address@hidden pyicoller: for peak calling on punctuated ChIP-Seq;
address@hidden pyicount: to count how many reads from N experiment files 
overlap in a
+  region file;
address@hidden pyicotrocol: to combine operations from pyicoteo.
address@hidden enumerate\n")
+    (license license:gpl3+)))
+
 (define-public prodigal
   (package
     (name "prodigal")



reply via email to

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