mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 14:28:15 -05:00
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:
parent
fe14871edd
commit
ea43d299fa
1 changed files with 29 additions and 0 deletions
|
@ -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+)))
|
||||
|
|
Loading…
Reference in a new issue