From 74b3f2cbb13f197136c0215ce6156d015080a61a Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Thu, 29 Apr 2021 09:55:40 +0200 Subject: [PATCH] gnu: Add r-qpcr. * gnu/packages/cran.scm (r-qpcr): New variable. --- gnu/packages/cran.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 51696058bc..35c35e6716 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -28307,6 +28307,33 @@ OpenStreetMap, Google Maps, and Bing to reverse geocode coordinate pairs with minimal hassle.") (license license:gpl3+))) +(define-public r-qpcr + (package + (name "r-qpcr") + (version "1.4-1") + (source + (origin + (method url-fetch) + (uri (cran-uri "qpcR" version)) + (sha256 + (base32 + "1r01q7jv3w59yx1gc0qw91rq7rvdhqsi8y57sqqkmwyqfw2x2vsv")))) + (properties `((upstream-name . "qpcR"))) + (build-system r-build-system) + (propagated-inputs + `(("r-mass" ,r-mass) + ("r-matrix" ,r-matrix) + ("r-minpack-lm" ,r-minpack-lm) + ("r-rgl" ,r-rgl) + ("r-robustbase" ,r-robustbase))) + (home-page "https://cran.r-project.org/package=qpcR") + (synopsis "Modelling and analysis of real-time PCR data") + (description + "This is a package for model fitting, optimal model selection and +calculation of various features that are essential in the analysis of +quantitative real-time polymerase chain reaction (qPCR).") + (license license:gpl2+))) + (define-public r-textplot (package (name "r-textplot")