mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 15:36:20 -05:00
gnu: Add r-tgutil.
* gnu/packages/statistics.scm (r-tgutil): New variable.
This commit is contained in:
parent
bd12aead95
commit
54274a5a3b
1 changed files with 37 additions and 0 deletions
|
@ -6558,6 +6558,43 @@ (define-public r-tgconfig
|
|||
can load multiple parameters to the current environment.")
|
||||
(license license:gpl3+))))
|
||||
|
||||
(define-public r-tgutil
|
||||
(let ((commit "0e4a2e84e5cf1f74bc66df0a3d8eac89633fd7b1")
|
||||
(revision "1"))
|
||||
(package
|
||||
(name "r-tgutil")
|
||||
(version (git-version "0.1.15" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/tanaylab/tgutil")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "0pmacpzhrigprlpl8b5j4xz7l110ifw98017xwk569dghbf8zrq1"))))
|
||||
(properties `((upstream-name . "tgutil")))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs (list r-broom
|
||||
r-cowplot
|
||||
r-data-table
|
||||
r-dplyr
|
||||
r-ggplot2
|
||||
r-glue
|
||||
r-magrittr
|
||||
r-matrix
|
||||
r-matrixstats
|
||||
r-qlcmatrix
|
||||
r-readr
|
||||
r-rlang
|
||||
r-scales
|
||||
r-tibble
|
||||
r-tidyr))
|
||||
(home-page "https://github.com/tanaylab/tgutil")
|
||||
(synopsis "Simple utility functions for Tanay lab code")
|
||||
(description "Shared utility functions for multiple Tanay lab packages.")
|
||||
(license license:gpl3))))
|
||||
|
||||
(define-public r-catterplots
|
||||
(let ((commit "ae17cd5e49ddda4ecfe0eba8a4c21df8c88e72c4")
|
||||
(revision "3"))
|
||||
|
|
Loading…
Reference in a new issue