From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ricardo Wurmus Subject: Re: [PATCH 3/7] gnu: Add r-biocviews. Date: Mon, 19 Sep 2016 14:46:35 +0200 Message-ID: <877fa8m504.fsf@elephly.net> References: <87intxs89p.fsf@gnu.org> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33055) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1blxyB-0006u9-MW for guix-devel@gnu.org; Mon, 19 Sep 2016 08:46:48 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1blxyA-0007T5-Ic for guix-devel@gnu.org; Mon, 19 Sep 2016 08:46:47 -0400 In-reply-to: <87intxs89p.fsf@gnu.org> 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: Roel Janssen Cc: guix-devel@gnu.org Roel Janssen writes: > * gnu/packages/bioinformatics.scm (r-biocviews): New variable. > --- > gnu/packages/bioinformatics.scm | 28 ++++++++++++++++++++++++++++ > 1 file changed, 28 insertions(+) > > diff --git a/gnu/packages/bioinformatics.scm b/gnu/packages/bioinformatics.scm > index 3d607cc..fa32075 100644 > --- a/gnu/packages/bioinformatics.scm > +++ b/gnu/packages/bioinformatics.scm > @@ -5333,6 +5333,34 @@ CRAN, and (some) github packages.") > the graph algorithms contained in the Boost library.") > (license license:artistic2.0))) > > +(define-public r-biocviews > + (package > + (name "r-biocviews") > + (version "1.40.1") > + (source (origin > + (method url-fetch) > + (uri (bioconductor-uri "biocViews" version)) > + (sha256 > + (base32 > + "1d1g06zwx3xhc07mdhs5x31730xw08fg3x73xyfj0qdy2ykww3f9")))) > + (properties > + `((upstream-name . "biocViews"))) > + (build-system r-build-system) > + (propagated-inputs > + `(("r-biobase" ,r-biobase) > + ("r-graph" ,r-graph) > + ("r-rbgl" ,r-rbgl) > + ("r-rcurl" ,r-rcurl) > + ("r-xml" ,r-xml) > + ("r-knitr" ,r-knitr) > + ("r-runit" ,r-runit))) > + (home-page "http://bioconductor.org/packages/Biocviews") > + (synopsis "Bioconductor structures for vocabularies and narratives of > +views") I don’t know what this means. Does this mean “data structures”? What is a vocabulary or narrative in this case? ~~ Ricardo