diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-12-17 19:46:30 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-12-17 20:02:16 +0100 |
commit | 75eb1149f3feb7b786455c09866611d54ccd4fc4 (patch) | |
tree | c0c03ca04d5829722cdc8d73916f474057a0a316 /gnu | |
parent | d11d6feafaff1a91bf9e24221432356c6828e93a (diff) | |
download | patches-75eb1149f3feb7b786455c09866611d54ccd4fc4.tar patches-75eb1149f3feb7b786455c09866611d54ccd4fc4.tar.gz |
gnu: Add r-bgx.
* gnu/packages/bioconductor.scm (r-bgx): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/bioconductor.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index 9e3aaf7fe2..0f3342007f 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -6575,3 +6575,28 @@ cellular organization in health and disease.") "This package provides fully Bayesian mixture models for differential gene expression.") (license license:gpl2))) + +(define-public r-bgx + (package + (name "r-bgx") + (version "1.52.0") + (source + (origin + (method url-fetch) + (uri (bioconductor-uri "bgx" version)) + (sha256 + (base32 + "0fiqqv6pin0zhxaw67hzfjccq2qkl9qfqjf10nx2zmpxm2licavm")))) + (properties `((upstream-name . "bgx"))) + (build-system r-build-system) + (propagated-inputs + `(("r-affy" ,r-affy) + ("r-biobase" ,r-biobase) + ("r-gcrma" ,r-gcrma) + ("r-rcpp" ,r-rcpp))) + (home-page "https://bioconductor.org/packages/bgx/") + (synopsis "Bayesian gene expression") + (description + "This package provides tools for Bayesian integrated analysis of +Affymetrix GeneChips.") + (license license:gpl2))) |