diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-12-17 19:46:18 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-12-17 20:02:16 +0100 |
commit | d11d6feafaff1a91bf9e24221432356c6828e93a (patch) | |
tree | 29fc6dc4660fddea97ad21883406c132f2b68ca8 | |
parent | 1028bf0a05ee2f44d41f56eecd5ae6f72f150e05 (diff) | |
download | guix-d11d6feafaff1a91bf9e24221432356c6828e93a.tar.gz guix-d11d6feafaff1a91bf9e24221432356c6828e93a.zip |
gnu: Add r-bgmix.
* gnu/packages/bioconductor.scm (r-bgmix): New variable.
-rw-r--r-- | gnu/packages/bioconductor.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index cb748df6c2..9e3aaf7fe2 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -6553,3 +6553,25 @@ uses a statistical data fusion approach, rationalizes contributing evidence and highlights associated genes, improving systems-level understanding of cellular organization in health and disease.") (license license:gpl3))) + +(define-public r-bgmix + (package + (name "r-bgmix") + (version "1.46.0") + (source + (origin + (method url-fetch) + (uri (bioconductor-uri "BGmix" version)) + (sha256 + (base32 + "1bwqqhkh4m3hhpd71grwjrg7n07lzvys4y7aghmw2gw5ibnk5683")))) + (properties `((upstream-name . "BGmix"))) + (build-system r-build-system) + (propagated-inputs + `(("r-kernsmooth" ,r-kernsmooth))) + (home-page "https://bioconductor.org/packages/BGmix/") + (synopsis "Bayesian models for differential gene expression") + (description + "This package provides fully Bayesian mixture models for differential +gene expression.") + (license license:gpl2))) |