me
/
guix
Archived
1
0
Fork 0

gnu: Add r-qpcr.

* gnu/packages/cran.scm (r-qpcr): New variable.
master
Ricardo Wurmus 2021-04-29 09:55:40 +02:00
parent 04ef4c7880
commit 74b3f2cbb1
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 27 additions and 0 deletions

View File

@ -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")