diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2019-04-03 16:16:02 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2019-04-03 17:42:17 +0200 |
commit | 7b5101c5bf9fb33768ae90e0e32ba2f67a491bc3 (patch) | |
tree | 9c6d525e5dc68bf965a572adf546e8d0802f8470 | |
parent | b9b8b447ec63df1bec74d60bc5f0020b0d79bd28 (diff) |
gnu: Add r-widgettools.
* gnu/packages/bioconductor.scm (r-widgettools): New variable.
-rw-r--r-- | gnu/packages/bioconductor.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/bioconductor.scm b/gnu/packages/bioconductor.scm index 02688ce473..61ea05a7a7 100644 --- a/gnu/packages/bioconductor.scm +++ b/gnu/packages/bioconductor.scm @@ -4096,3 +4096,24 @@ experiments together with genomic annotations (genes, transcripts, peaks). Introns of long transcripts can be rescaled to a fixed length for better visualization of exonic read coverage.") (license license:asl2.0))) + +(define-public r-widgettools + (package + (name "r-widgettools") + (version "1.60.0") + (source + (origin + (method url-fetch) + (uri (bioconductor-uri "widgetTools" version)) + (sha256 + (base32 + "0mz69pdr6q69avsvs6r5ncdkdmgwfislpil4v18dsflw4j454gwf")))) + (properties `((upstream-name . "widgetTools"))) + (build-system r-build-system) + (home-page "https://bioconductor.org/packages/widgetTools/") + (synopsis "Tools for creating interactive tcltk widgets") + (description + "This packages contains tools to support the construction of tcltk +widgets in R.") + ;; Any version of the LGPL. + (license license:lgpl3+))) |