[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
04/17: gnu: Add ribodiff.
From: |
Ricardo Wurmus |
Subject: |
04/17: gnu: Add ribodiff. |
Date: |
Tue, 17 Jan 2017 20:47:20 +0000 (UTC) |
rekado pushed a commit to branch master
in repository guix.
commit 769fc6bb18d311bafa47e9666d35db2cb594e8ab
Author: Ricardo Wurmus <address@hidden>
Date: Mon Jan 16 11:56:00 2017 +0100
gnu: Add ribodiff.
* gnu/packages/bioinformatics.scm (ribodiff): New variable.
---
gnu/packages/bioinformatics.scm | 41 +++++++++++++++++++++++++++++++++++++++
1 file changed, 41 insertions(+)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index b3aedec..cd64d34 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -468,6 +468,47 @@ frames} (ORFs) using ribosome profiling (ribo-seq) data.
This package
provides the Ribotaper pipeline.")
(license license:gpl3+)))
+(define-public ribodiff
+ (package
+ (name "ribodiff")
+ (version "0.2.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "https://github.com/ratschlab/RiboDiff/"
+ "archive/v" version ".tar.gz"))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "0wpbwmfv05wdjxv7ikm664f7s7p7cqr8jnw99zrda0q67rl50aaj"))))
+ (build-system python-build-system)
+ (arguments
+ `(#:python ,python-2
+ #:phases
+ (modify-phases %standard-phases
+ ;; Generate an installable executable script wrapper.
+ (add-after 'unpack 'patch-setup.py
+ (lambda _
+ (substitute* "setup.py"
+ (("^(.*)packages=.*" line prefix)
+ (string-append line "\n"
+ prefix "scripts=['scripts/TE.py'],\n")))
+ #t)))))
+ (inputs
+ `(("python-numpy" ,python2-numpy)
+ ("python-matplotlib" ,python2-matplotlib)
+ ("python-scipy" ,python2-scipy)
+ ("python-statsmodels" ,python2-statsmodels)))
+ (home-page "http://public.bmi.inf.ethz.ch/user/zhongy/RiboDiff/")
+ (synopsis "Detect translation efficiency changes from ribosome footprints")
+ (description "RiboDiff is a statistical tool that detects the protein
+translational efficiency change from Ribo-Seq (ribosome footprinting) and
+RNA-Seq data. It uses a generalized linear model to detect genes showing
+difference in translational profile taking mRNA abundance into account. It
+facilitates us to decipher the translational regulation that behave
+independently with transcriptional regulation.")
+ (license license:gpl3+)))
+
(define-public bioawk
(package
(name "bioawk")
- branch master updated (46076d0 -> 66da3a9), Ricardo Wurmus, 2017/01/17
- 02/17: gnu: Add r-fivethirtyeight., Ricardo Wurmus, 2017/01/17
- 08/17: gnu: Add r-maldiquant., Ricardo Wurmus, 2017/01/17
- 05/17: gnu: Add r-compquadform., Ricardo Wurmus, 2017/01/17
- 16/17: gnu: Add r-msnbase., Ricardo Wurmus, 2017/01/17
- 14/17: gnu: Add r-mzid., Ricardo Wurmus, 2017/01/17
- 04/17: gnu: Add ribodiff.,
Ricardo Wurmus <=
- 01/17: gnu: powertabeditor: Update to 2.0.0-alpha9., Ricardo Wurmus, 2017/01/17
- 03/17: gnu: Add hisat2., Ricardo Wurmus, 2017/01/17
- 07/17: gnu: Add r-raremetals2., Ricardo Wurmus, 2017/01/17
- 15/17: gnu: Add r-pcamethods., Ricardo Wurmus, 2017/01/17
- 12/17: gnu: Add r-affy., Ricardo Wurmus, 2017/01/17
- 11/17: gnu: Add r-affyio., Ricardo Wurmus, 2017/01/17
- 10/17: gnu: Add r-mzr., Ricardo Wurmus, 2017/01/17
- 06/17: gnu: Add r-seqminer., Ricardo Wurmus, 2017/01/17
- 09/17: gnu: Add r-protgenerics., Ricardo Wurmus, 2017/01/17
- 17/17: gnu: Add r-msnid., Ricardo Wurmus, 2017/01/17