diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-03-24 23:37:51 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-03-24 23:44:13 +0100 |
commit | c4d521ba2c14ddf7f3be9ca430e03add435ff0e7 (patch) | |
tree | ecae9663c7281e2a1b16743f04228a5982842793 /gnu/packages/cran.scm | |
parent | 49a48c496f04d018f233bd5efc8b8ee11cd83cc9 (diff) |
gnu: r-seqinr: Move to (gnu packages cran).
* gnu/packages/bioinformatics.scm (r-seqinr): Move from here...
* gnu/packages/cran.scm (r-seqinr): ...to here.
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 22355c3bc5..6079ed9737 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -12049,6 +12049,31 @@ use multiple corrections. Visualization of data can be done either by barplots or heatmaps.") (license license:gpl2+))) +(define-public r-seqinr + (package + (name "r-seqinr") + (version "3.4-5") + (source + (origin + (method url-fetch) + (uri (cran-uri "seqinr" version)) + (sha256 + (base32 + "17zv0n5cji17izwmwg0jcbxbjl3w5rls91w15svcnlpxjms38ahn")))) + (build-system r-build-system) + (propagated-inputs + `(("r-ade4" ,r-ade4) + ("r-segmented" ,r-segmented))) + (inputs + `(("zlib" ,zlib))) + (home-page "http://seqinr.r-forge.r-project.org/") + (synopsis "Biological sequences retrieval and analysis") + (description + "This package provides tools for exploratory data analysis and data +visualization of biological sequence (DNA and protein) data. It also includes +utilities for sequence data management under the ACNUC system.") + (license license:gpl2+))) + (define-public r-units (package (name "r-units") |