[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
03/04: gnu: Add r-cghcall.
From: |
Roel Janssen |
Subject: |
03/04: gnu: Add r-cghcall. |
Date: |
Tue, 24 Apr 2018 08:13:11 -0400 (EDT) |
roelj pushed a commit to branch master
in repository guix.
commit 67ee83d6c30b7b73facf1f9a7c981d05399ff190
Author: Roel Janssen <address@hidden>
Date: Tue Apr 24 14:12:15 2018 +0200
gnu: Add r-cghcall.
* gnu/packages/bioconductor.scm (r-cghcall): New variable.
---
gnu/packages/bioconductor.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm
index 87c0c68..9b1d866 100644
--- a/gnu/packages/bioconductor.scm
+++ b/gnu/packages/bioconductor.scm
@@ -275,3 +275,26 @@ normalization and quality checking.")
(description "This package contains functions and classes that are needed by
the @code{arrayCGH} packages.")
(license license:gpl2+)))
+
+(define-public r-cghcall
+ (package
+ (name "r-cghcall")
+ (version "2.40.0")
+ (source (origin
+ (method url-fetch)
+ (uri (bioconductor-uri "CGHcall" version))
+ (sha256
+ (base32 "11pi6awz3858yb4s0z3qf3kcmsdgp6d4aj41g4lfix1sv5amllch"))))
+ (properties `((upstream-name . "CGHcall")))
+ (build-system r-build-system)
+ (propagated-inputs
+ `(("r-biobase" ,r-biobase)
+ ("r-cghbase" ,r-cghbase)
+ ("r-impute" ,r-impute)
+ ("r-dnacopy" ,r-dnacopy)
+ ("r-snowfall" ,r-snowfall)))
+ (home-page "http://bioconductor.org/packages/CGHcall")
+ (synopsis "Base functions and classes for arrayCGH data analysis")
+ (description "This package contains functions and classes that are needed by
address@hidden packages.")
+ (license license:gpl2+)))