diff options
author | Afkhami, Navid <Navid.Afkhami@mdc-berlin.de> | 2023-10-13 16:04:23 +0000 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2023-10-17 14:25:36 +0200 |
commit | 54274a5a3bb5e2f637758d1d8797213d1ebaec20 (patch) | |
tree | 66191ae0e60465b18ecba056d80a5e0ea845efc4 /gnu | |
parent | bd12aead95664c7fa52e3fb6aab68232527cef1b (diff) |
gnu: Add r-tgutil.
* gnu/packages/statistics.scm (r-tgutil): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/statistics.scm | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 2ee41bd8e5..557b63aeae 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -6558,6 +6558,43 @@ when trying to override a parameter that was not registered, and 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")) |