mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add r-savr.
* gnu/packages/bioconductor.scm (r-savr): New variable.
This commit is contained in:
parent
cee9ab244f
commit
8a587c89af
1 changed files with 26 additions and 0 deletions
|
@ -969,3 +969,29 @@ (define-public r-biocneighbors
|
|||
to search for all neighbors within a given distance. Parallelization is
|
||||
achieved for all methods using the BiocParallel framework.")
|
||||
(license license:gpl3)))
|
||||
|
||||
(define-public r-savr
|
||||
(package
|
||||
(name "r-savr")
|
||||
(version "1.20.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (bioconductor-uri "savR" version))
|
||||
(sha256
|
||||
(base32
|
||||
"13bwq2a2pygdkmhrcmvz525wsi5i01j911711zgs6x93wj20b2w7"))))
|
||||
(properties `((upstream-name . "savR")))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
`(("r-ggplot2" ,r-ggplot2)
|
||||
("r-gridextra" ,r-gridextra)
|
||||
("r-reshape2" ,r-reshape2)
|
||||
("r-scales" ,r-scales)
|
||||
("r-xml" ,r-xml)))
|
||||
(home-page "https://github.com/bcalder/savR")
|
||||
(synopsis "Parse and analyze Illumina SAV files")
|
||||
(description
|
||||
"This package provides tools to parse Illumina Sequence Analysis
|
||||
Viewer (SAV) files, access data, and generate QC plots.")
|
||||
(license license:agpl3+)))
|
||||
|
|
Loading…
Reference in a new issue