From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:49125) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fwouh-0006Eg-VQ for guix-patches@gnu.org; Mon, 03 Sep 2018 09:29:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fwoue-0003TN-7g for guix-patches@gnu.org; Mon, 03 Sep 2018 09:29:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:38730) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fwoud-0003TF-V6 for guix-patches@gnu.org; Mon, 03 Sep 2018 09:29:04 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fwoud-0002ST-Mn for guix-patches@gnu.org; Mon, 03 Sep 2018 09:29:03 -0400 Subject: [bug#32622] [PATCH] gnu: Add r-abf2. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48988) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fwouF-00067c-Jb for guix-patches@gnu.org; Mon, 03 Sep 2018 09:28:40 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fwouC-0003KL-FG for guix-patches@gnu.org; Mon, 03 Sep 2018 09:28:39 -0400 Received: from pegasus.bbbm.mdc-berlin.de ([141.80.25.20]:36242) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fwouC-0003Jw-3S for guix-patches@gnu.org; Mon, 03 Sep 2018 09:28:36 -0400 Received: from localhost (localhost [127.0.0.1]) by pegasus.bbbm.mdc-berlin.de (Postfix) with ESMTP id 396ECA8189F for ; Mon, 3 Sep 2018 15:28:34 +0200 (CEST) Received: from pegasus.bbbm.mdc-berlin.de ([127.0.0.1]) by localhost (pegasus.bbbm.mdc-berlin.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ZBdixuDShvUA for ; Mon, 3 Sep 2018 15:28:28 +0200 (CEST) Received: from SW-IT-P-CAS2.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 pegasus.bbbm.mdc-berlin.de (Postfix) with ESMTPS for ; Mon, 3 Sep 2018 15:28:28 +0200 (CEST) From: pimi Date: Mon, 3 Sep 2018 15:28:14 +0200 Message-ID: <20180903132814.15547-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: 32622@debbugs.gnu.org Cc: pimi gnu/packages/cran.scm (r-abf2): New variable. --- gnu/packages/cran.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index dde5fb317..33dc61593 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -5016,3 +5016,22 @@ information based criteria with the change in estimate to either select the optimal model for prediction purposes or to serve as a tool to obtain a practically sound, highly interpretable model.") (license license:gpl2+))) + +(define-public r-abf2 + (package + (name "r-abf2") + (version "0.7-1") + (source + (origin + (method url-fetch) + (uri (cran-uri "abf2" version)) + (sha256 + (base32 "0d65mc1w4pbiv7xaqzdlw1bfsxf25587rv597hh41vs0j0zlfpxx")))) + (build-system r-build-system) + (home-page "https://cran.r-project.org/web/packages/abf2/") + (synopsis "Load gap-free axon @code{r-abf2} files") + (description + "This package loads electrophysiology data from @code{r-abf2} files, as created by +Axon Instruments/Molecular Devices software such as pClamp 10. Only files +recorded in gap-free mode are currently supported.") + (license license:artistic2.0))) -- 2.17.1