From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:35690) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fzLhe-0005wE-UJ for guix-patches@gnu.org; Mon, 10 Sep 2018 08:54:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fzLhb-0002qc-Mb for guix-patches@gnu.org; Mon, 10 Sep 2018 08:54:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:46839) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fzLhb-0002qO-Ie for guix-patches@gnu.org; Mon, 10 Sep 2018 08:54:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fzLhb-0008KC-E2 for guix-patches@gnu.org; Mon, 10 Sep 2018 08:54:03 -0400 Subject: [bug#32679] [PATCH] gnu: Add r-abps. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:35369) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fzLh5-0005XQ-Vf for guix-patches@gnu.org; Mon, 10 Sep 2018 08:53:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fzLgz-0002PI-Oo for guix-patches@gnu.org; Mon, 10 Sep 2018 08:53:31 -0400 Received: from sinope02.bbbm.mdc-berlin.de ([141.80.25.24]:57098) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fzLgz-0002N0-9b for guix-patches@gnu.org; Mon, 10 Sep 2018 08:53:25 -0400 Received: from localhost (localhost [127.0.0.1]) by sinope02.bbbm.mdc-berlin.de (Postfix) with ESMTP id 243DC130C50F for ; Mon, 10 Sep 2018 14:53:23 +0200 (CEST) Received: from sinope02.bbbm.mdc-berlin.de ([127.0.0.1]) by localhost (sinope02.bbbm.mdc-berlin.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id vbmclI5qHYxT for ; Mon, 10 Sep 2018 14:53:17 +0200 (CEST) Received: from SW-IT-P-CAS4.mdc-berlin.net (puck.citx.mdc-berlin.de [141.80.36.101]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (No client certificate requested) by sinope02.bbbm.mdc-berlin.de (Postfix) with ESMTPS for ; Mon, 10 Sep 2018 14:53:17 +0200 (CEST) From: pimi Date: Mon, 10 Sep 2018 14:50:07 +0200 Message-ID: <20180910125007.25253-1-madalinionel.patrascu@mdc-berlin.de> MIME-Version: 1.0 Content-Type: text/plain List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 32679@debbugs.gnu.org Cc: pimi gnu/packages/cran.scm (r-abps): New variable. --- gnu/packages/cran.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 962b82168..2d97a12d0 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -5592,3 +5592,27 @@ complexity; @end enumerate These algorithms are well suited for high dimensional data outlier detection.") (license license:expat))) + +(define-public r-abps + (package + (name "r-abps") + (version "0.2") + (source + (origin + (method url-fetch) + (uri (cran-uri "ABPS" version)) + (sha256 + (base32 "1k3f5i34f4w2khkszb4qhwwcpiy7gsfh82vjr6rypwg6rx5rjclq")))) + (properties `((upstream-name . "ABPS"))) + (build-system r-build-system) + (propagated-inputs `(("r-kernlab" ,r-kernlab))) + (home-page "https://cran.r-project.org/web/packages/ABPS/") + (synopsis "Abnormal blood profile score to detect blood doping") + (description + "This package offers an implementation of the Abnormal blood profile score (ABPS). + The ABPS is a part of the Athlete biological passport program of the World +anti-doping agency, which combines several blood parameters into a single score +in order to detect blood doping. The package also contains functions to +calculate other scores used in anti-doping programs, such as the ratio of +hemoglobin to reticulocytes (OFF-score), as well as example data.") + (license license:gpl2+))) -- 2.17.1