[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
09/10: gnu: Add r-glimma.
From: |
Ricardo Wurmus |
Subject: |
09/10: gnu: Add r-glimma. |
Date: |
Thu, 5 Jul 2018 09:09:27 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit f4235c0eca46a59c3a71e9977efcbed6248901cf
Author: Ricardo Wurmus <address@hidden>
Date: Wed Jul 4 17:45:08 2018 +0200
gnu: Add r-glimma.
* gnu/packages/bioconductor.scm (r-glimma): New variable.
---
gnu/packages/bioconductor.scm | 30 +++++++++++++++++++++++++++++-
1 file changed, 29 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm
index 40ac1d2..611fd99 100644
--- a/gnu/packages/bioconductor.scm
+++ b/gnu/packages/bioconductor.scm
@@ -28,7 +28,8 @@
#:use-module (gnu packages cran)
#:use-module (gnu packages compression)
#:use-module (gnu packages graph)
- #:use-module (gnu packages statistics))
+ #:use-module (gnu packages statistics)
+ #:use-module (gnu packages web))
(define-public r-bsgenome-dmelanogaster-ucsc-dm6
(package
@@ -750,3 +751,30 @@ trees and clusters to other programs.")
"This package provides tools to detect Gene Ontology and/or other user
defined categories which are over/under represented in RNA-seq data.")
(license license:lgpl2.0+)))
+
+(define-public r-glimma
+ (package
+ (name "r-glimma")
+ (version "1.8.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (bioconductor-uri "Glimma" version))
+ (sha256
+ (base32
+ "0kfia60vrlys6amdchdix01iwbkwyb7nfjqn5hczsxp8rhmbg25s"))))
+ (properties `((upstream-name . "Glimma")))
+ (build-system r-build-system)
+ (propagated-inputs
+ `(("r-edger" ,r-edger)
+ ("r-jsonlite" ,r-jsonlite)
+ ("r-s4vectors" ,r-s4vectors)))
+ (home-page "https://github.com/Shians/Glimma")
+ (synopsis "Interactive HTML graphics")
+ (description
+ "This package generates interactive visualisations for analysis of
+RNA-sequencing data using output from limma, edgeR or DESeq2 packages in an
+HTML page. The interactions are built on top of the popular static
+representations of analysis results in order to provide additional
+information.")
+ (license license:lgpl3)))
- branch master updated (0a562e4 -> aa388dc), Ricardo Wurmus, 2018/07/05
- 01/10: gnu: Add r-biasedurn., Ricardo Wurmus, 2018/07/05
- 07/10: gnu: Add r-ctc., Ricardo Wurmus, 2018/07/05
- 05/10: gnu: Add r-argparse., Ricardo Wurmus, 2018/07/05
- 06/10: gnu: Add r-genelendatabase., Ricardo Wurmus, 2018/07/05
- 08/10: gnu: Add r-goseq., Ricardo Wurmus, 2018/07/05
- 03/10: gnu: r-getopt: Move from bioinformatics to cran., Ricardo Wurmus, 2018/07/05
- 10/10: gnu: Add r-rots., Ricardo Wurmus, 2018/07/05
- 04/10: gnu: Add r-findpython., Ricardo Wurmus, 2018/07/05
- 02/10: gnu: Add r-goplot., Ricardo Wurmus, 2018/07/05
- 09/10: gnu: Add r-glimma.,
Ricardo Wurmus <=