diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2020-08-12 11:55:55 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-08-12 13:57:10 +0200 |
commit | 0a41d9be2e5584c638d6b1cabfee13b88e47f0a1 (patch) | |
tree | c58f6aa986977653cd604e0323c2f21b7b25501b /gnu/packages | |
parent | dec2a0c9289fecbcdf963e46f036a2c01ac2d2a6 (diff) | |
download | guix-0a41d9be2e5584c638d6b1cabfee13b88e47f0a1.tar.gz guix-0a41d9be2e5584c638d6b1cabfee13b88e47f0a1.zip |
gnu: r-nmf: Update to 0.23.0.
* gnu/packages/bioconductor.scm (r-nmf): Update to 0.23.0.
[native-inputs]: Add r-knitr.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/bioconductor.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index 8f5a4dffe7..4a37681ae5 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -798,14 +798,14 @@ closely reconstructs the mutational profile.") (define-public r-nmf (package (name "r-nmf") - (version "0.22.0") + (version "0.23.0") (source (origin (method url-fetch) (uri (cran-uri "NMF" version)) (sha256 (base32 - "0b2ls3x1nkrnam45hagpys624nzxj3v7kxnp0q216yakvx5h57cq")))) + "0ls7q9yc9l1z10jphq5a11wkfgcxc3gm3sfjj376zx3vnc0wl30g")))) (properties `((upstream-name . "NMF"))) (build-system r-build-system) (propagated-inputs @@ -826,6 +826,8 @@ closely reconstructs the mutational profile.") ("r-reshape2" ,r-reshape2) ("r-rngtools" ,r-rngtools) ("r-stringr" ,r-stringr))) + (native-inputs + `(("r-knitr" ,r-knitr))) (home-page "http://renozao.github.io/NMF") (synopsis "Algorithms and framework for nonnegative matrix factorization") (description |