diff options
author | Roel Janssen <roel@gnu.org> | 2021-05-26 13:31:20 +0200 |
---|---|---|
committer | Roel Janssen <roel@gnu.org> | 2021-05-26 13:31:20 +0200 |
commit | f921981536d6e99f5807f721977e83c13827c091 (patch) | |
tree | 16cee758c3712880f10765bf95eb7c2e87b9271f /gnu/packages/bioconductor.scm | |
parent | 99873359edd7882c776afa326eb23d2d89d87ee2 (diff) |
gnu: Add r-decipher.
* gnu/packages/bioconductor.scm (r-decipher): New variable.
Diffstat (limited to 'gnu/packages/bioconductor.scm')
-rw-r--r-- | gnu/packages/bioconductor.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index 7db99fd5ff..596e80a9f9 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -1408,6 +1408,26 @@ data. In addition, provides numerous plotting functions for commonly used visualizations.") (license license:artistic2.0))) +(define-public r-decipher + (package + (name "r-decipher") + (version "2.18.1") + (source (origin + (method url-fetch) + (uri (bioconductor-uri "DECIPHER" version)) + (sha256 + (base32 + "0jz2lffks9rrk5wzbvnr8yal91kf8rg2xn0fmg9ywk45ql657sm9")))) + (build-system r-build-system) + (propagated-inputs + `(("r-biostrings" ,r-biostrings) + ("r-rsqlite" ,r-rsqlite))) + (home-page "https://www.bioconductor.org/packages/DECIPHER/") + (synopsis "Tools for deciphering and managing biological sequences") + (description "This package provides a toolset for deciphering and managing +biological sequences.") + (license license:gpl3))) + (define-public r-deepsnv (package (name "r-deepsnv") |