gnu: Add r-aws.

* gnu/packages/cran.scm (r-aws): New variable.

Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
Naga Malleswari 2020-04-24 01:32:33 +05:30 committed by Ricardo Wurmus
parent fe14871edd
commit ea43d299fa
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -21213,3 +21213,32 @@ (define-public r-awsmethods
@code{openMP} support as needed in several packages like
@code{aws}, @code{adimpro}, @code{fmri}, and @code{dwi}.")
(license license:gpl2+)))
(define-public r-aws
(package
(name "r-aws")
(version "2.4-2")
(source
(origin
(method url-fetch)
(uri (cran-uri "aws" version))
(sha256
(base32
"1czlsy64nx6j7h1smgb561yyv3f98pwqwglk77yla4mx3fp14bvq"))))
(properties
`((upstream-name . "aws")))
(build-system r-build-system)
(propagated-inputs
`(("r-awsmethods" ,r-awsmethods)
("r-gsl" ,r-gsl)))
(native-inputs
`(("gfortran" ,gfortran)))
(home-page "https://cran.r-project.org/web/packages/aws/")
(synopsis "Adaptive weights smoothing")
(description
"This package provides a collection of R-functions implementing adaptive
smoothing procedures in 1D, 2D and 3D. This includes the
Propagation-Separation approach to adaptive smoothing, the @dfn{Intersecting
Confidence Intervals} (ICI), variational approaches, and a non-local means
filter.")
(license license:gpl2+)))