mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add r-bayseq.
* gnu/packages/bioconductor.scm (r-bayseq): New variable.
This commit is contained in:
parent
b494bbe466
commit
bb15b581f7
1 changed files with 26 additions and 0 deletions
|
@ -371,3 +371,29 @@ (define-public r-qdnaseq
|
|||
segmentation and calling are also implemented via packages DNAcopy and CGHcall,
|
||||
respectively.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public r-bayseq
|
||||
(package
|
||||
(name "r-bayseq")
|
||||
(version "2.14.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (bioconductor-uri "baySeq" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0hbmm01a8libara9mbxknpk0wzarwfngnfwlmhpww91a0cmy5klg"))))
|
||||
(properties `((upstream-name . "baySeq")))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
`(("r-abind" ,r-abind)
|
||||
("r-edger" ,r-edger)
|
||||
("r-genomicranges" ,r-genomicranges)))
|
||||
(home-page "https://bioconductor.org/packages/baySeq/")
|
||||
(synopsis "Bayesian analysis of differential expression patterns in count data")
|
||||
(description
|
||||
"This package identifies differential expression in high-throughput count
|
||||
data, such as that derived from next-generation sequencing machines,
|
||||
calculating estimated posterior likelihoods of differential expression (or
|
||||
more complex hypotheses) via empirical Bayesian methods.")
|
||||
(license license:gpl3)))
|
||||
|
|
Loading…
Reference in a new issue