mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 23:02:16 -05:00
gnu: Add r-chipkernels.
* gnu/packages/bioinformatics.scm (r-chipkernels): New variable.
This commit is contained in:
parent
1571f90e35
commit
c827f20286
1 changed files with 36 additions and 0 deletions
|
@ -7577,6 +7577,42 @@ (define-public r-wgcna
|
||||||
data manipulation and visualization.")
|
data manipulation and visualization.")
|
||||||
(license license:gpl2+)))
|
(license license:gpl2+)))
|
||||||
|
|
||||||
|
(define-public r-chipkernels
|
||||||
|
(let ((commit "c9cfcacb626b1221094fb3490ea7bac0fd625372")
|
||||||
|
(revision "1"))
|
||||||
|
(package
|
||||||
|
(name "r-chipkernels")
|
||||||
|
(version (string-append "1.1-" revision "." (string-take commit 9)))
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/ManuSetty/ChIPKernels.git")
|
||||||
|
(commit commit)))
|
||||||
|
(file-name (string-append name "-" version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"14bj5qhjm1hsm9ay561nfbqi9wxsa7y487df2idsaaf6z10nw4v0"))))
|
||||||
|
(build-system r-build-system)
|
||||||
|
(propagated-inputs
|
||||||
|
`(("r-iranges" ,r-iranges)
|
||||||
|
("r-xvector" ,r-xvector)
|
||||||
|
("r-biostrings" ,r-biostrings)
|
||||||
|
("r-bsgenome" ,r-bsgenome)
|
||||||
|
("r-gtools" ,r-gtools)
|
||||||
|
("r-genomicranges" ,r-genomicranges)
|
||||||
|
("r-sfsmisc" ,r-sfsmisc)
|
||||||
|
("r-kernlab" ,r-kernlab)
|
||||||
|
("r-s4vectors" ,r-s4vectors)
|
||||||
|
("r-biocgenerics" ,r-biocgenerics)))
|
||||||
|
(home-page "https://github.com/ManuSetty/ChIPKernels")
|
||||||
|
(synopsis "Build string kernels for DNA Sequence analysis")
|
||||||
|
(description "ChIPKernels is an R package for building different string
|
||||||
|
kernels used for DNA Sequence analysis. A dictionary of the desired kernel
|
||||||
|
must be built and this dictionary can be used for determining kernels for DNA
|
||||||
|
Sequences.")
|
||||||
|
(license license:gpl2+))))
|
||||||
|
|
||||||
(define-public emboss
|
(define-public emboss
|
||||||
(package
|
(package
|
||||||
(name "emboss")
|
(name "emboss")
|
||||||
|
|
Loading…
Reference in a new issue