[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/02: gnu: Add r-graph.
From: |
Ricardo Wurmus |
Subject: |
01/02: gnu: Add r-graph. |
Date: |
Wed, 24 Feb 2016 16:37:02 +0000 |
rekado pushed a commit to branch master
in repository guix.
commit d1dbde6ac174535bacaaef3f1f7c1f7a51519ce0
Author: Ricardo Wurmus <address@hidden>
Date: Wed Jan 13 16:26:13 2016 +0100
gnu: Add r-graph.
* gnu/packages/bioinformatics.scm (r-graph): New variable.
---
gnu/packages/bioinformatics.scm | 19 +++++++++++++++++++
1 files changed, 19 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm
index 64a398f..9d6f641 100644
--- a/gnu/packages/bioinformatics.scm
+++ b/gnu/packages/bioinformatics.scm
@@ -4109,6 +4109,25 @@ extracting the desired features in a convenient format.")
information about the latest version of the Gene Ontologies.")
(license license:artistic2.0)))
+(define-public r-graph
+ (package
+ (name "r-graph")
+ (version "1.48.0")
+ (source (origin
+ (method url-fetch)
+ (uri (bioconductor-uri "graph" version))
+ (sha256
+ (base32
+ "16w75rji3kv24gfv44w66y1a2y75ax26rl470y3ypna0ndc3rrcd"))))
+ (build-system r-build-system)
+ (propagated-inputs
+ `(("r-biocgenerics" ,r-biocgenerics)))
+ (home-page "http://bioconductor.org/packages/graph")
+ (synopsis "Handle graph data structures in R")
+ (description
+ "This package implements some simple graph handling capabilities for R.")
+ (license license:artistic2.0)))
+
(define-public r-topgo
(package
(name "r-topgo")