[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/05: gnu: Add r-roc.
From: |
guix-commits |
Subject: |
01/05: gnu: Add r-roc. |
Date: |
Thu, 5 Sep 2019 05:46:36 -0400 (EDT) |
rekado pushed a commit to branch master
in repository guix.
commit db316d7376386acc9ba7657c827cd1ad0c31c8fb
Author: Ricardo Wurmus <address@hidden>
Date: Thu Sep 5 11:45:33 2019 +0200
gnu: Add r-roc.
* gnu/packages/bioconductor.scm (r-roc): New variable.
---
gnu/packages/bioconductor.scm | 20 ++++++++++++++++++++
1 file changed, 20 insertions(+)
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm
index 3faf79f..e7773f0 100644
--- a/gnu/packages/bioconductor.scm
+++ b/gnu/packages/bioconductor.scm
@@ -5273,3 +5273,23 @@ cisTopics and explore the nature and regulatory proteins
driving them.")
"This package implements the GENIE3 algorithm for inferring gene
regulatory networks from expression data.")
(license license:gpl2+)))
+
+(define-public r-roc
+ (package
+ (name "r-roc")
+ (version "1.60.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (bioconductor-uri "ROC" version))
+ (sha256
+ (base32
+ "1sapnl8kyaldgvdc657wqcmyjb24nvrnaw7v94bbs8yf5pmfm71c"))))
+ (properties `((upstream-name . "ROC")))
+ (build-system r-build-system)
+ (home-page "https://www.bioconductor.org/packages/ROC/")
+ (synopsis "Utilities for ROC curves")
+ (description
+ "This package provides utilities for @dfn{Receiver Operating
+Characteristic} (ROC) curves, with a focus on micro arrays.")
+ (license license:artistic2.0)))