From patchwork Thu Sep 15 11:37:56 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Roel Janssen X-Patchwork-Id: 15653 Received: (qmail 90762 invoked by uid 89); 15 Sep 2016 11:37:43 -0000 Authentication-Results: sourceware.org; auth=none X-Virus-Checked: by ClamAV 0.99.2 on sourceware.org X-Virus-Found: No X-Spam-SWARE-Status: No, score=-3.9 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 spammy=1223 X-Spam-Status: No, score=-3.9 required=5.0 tests=AWL, BAYES_00, RP_MATCHES_RCVD, SPF_PASS autolearn=ham version=3.3.2 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on sourceware.org X-Spam-Level: X-HELO: lists.gnu.org Received: from lists.gnu.org (HELO lists.gnu.org) (208.118.235.17) by sourceware.org (qpsmtpd/0.93/v0.84-503-g423c35a) with ESMTP; Thu, 15 Sep 2016 11:37:33 +0000 Received: from localhost ([::1]:33687 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bkUyy-0001mx-1I for patchwork@sourceware.org; Thu, 15 Sep 2016 07:37:32 -0400 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 User-agent: mu4e 0.9.17; emacs 25.1.1 From: Roel Janssen To: guix-devel@gnu.org 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 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 2001:4830:134:3::e X-BeenThere: guix-devel@gnu.org X-Mailman-Version: 2.1.21 Precedence: list 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+patchwork=sourceware.org@gnu.org Sender: "Guix-devel" * 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")