From mboxrd@z Thu Jan 1 00:00:00 1970 From: Roel Janssen Subject: [PATCH 1/7] gnu: Add r-biocinstaller. Date: Thu, 15 Sep 2016 13:37:56 +0200 Message-ID: <87lgyts8a3.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33741) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bkUyT-0001Tu-MG for guix-devel@gnu.org; Thu, 15 Sep 2016 07:37:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bkUyS-0004Mt-ML for guix-devel@gnu.org; Thu, 15 Sep 2016 07:37:01 -0400 Received: from fencepost.gnu.org ([2001:4830:134:3::e]:34663) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bkUyS-0004Mi-Ih for guix-devel@gnu.org; Thu, 15 Sep 2016 07:37:00 -0400 Received: from ip-80-113-14-101.ip.prioritytelecom.net ([80.113.14.101]:5682 helo=roel-tp) by fencepost.gnu.org with esmtpsa (TLS1.2:RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1bkUyR-0005pD-SZ for guix-devel@gnu.org; Thu, 15 Sep 2016 07:37:00 -0400 List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: guix-devel@gnu.org * gnu/packages/bioinformatics.scm (r-biocinstaller): New variable. --- gnu/packages/bioinformatics.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm index 39a420a..ffb9692 100644 --- a/gnu/packages/bioinformatics.scm +++ b/gnu/packages/bioinformatics.scm @@ -5290,6 +5290,25 @@ barplots or heatmaps.") packages.") (license license:artistic2.0))) +(define-public r-biocinstaller + (package + (name "r-biocinstaller") + (version "1.22.3") + (source (origin + (method url-fetch) + (uri (bioconductor-uri "BiocInstaller" version)) + (sha256 + (base32 + "02qkfq6f2b7v9klri6d1nv21r54bywv1zd5x47ka0jhhp946cqpr")))) + (properties + `((upstream-name . "BiocInstaller"))) + (build-system r-build-system) + (home-page "http://bioconductor.org/packages/BiocInstaller") + (synopsis "Bioconductor installer package") + (description "This package is used to install and update Bioconductor, +CRAN, and (some) github packages.") + (license license:artistic2.0))) + (define-public r-dnacopy (package (name "r-dnacopy") -- 2.10.0