diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-04-29 09:55:40 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-04-29 09:55:57 +0200 |
commit | 74b3f2cbb13f197136c0215ce6156d015080a61a (patch) | |
tree | 0f7eeb0fc96cd3d1faadfb2561aa9769aaa160ce | |
parent | 04ef4c788063d419816c59fc0260b649830a751b (diff) | |
download | guix-74b3f2cbb13f197136c0215ce6156d015080a61a.tar guix-74b3f2cbb13f197136c0215ce6156d015080a61a.tar.gz |
gnu: Add r-qpcr.
* gnu/packages/cran.scm (r-qpcr): New variable.
-rw-r--r-- | gnu/packages/cran.scm | 27 |
1 files changed, 27 insertions, 0 deletions
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") |