https://github.com/fdrennan/ndexutils
Utility functions for my platform
https://github.com/fdrennan/ndexutils
Last synced: 5 months ago
JSON representation
Utility functions for my platform
- Host: GitHub
- URL: https://github.com/fdrennan/ndexutils
- Owner: fdrennan
- License: other
- Created: 2020-09-21T17:23:40.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2020-09-23T00:27:08.000Z (over 4 years ago)
- Last Synced: 2024-08-13T07:13:53.792Z (8 months ago)
- Language: R
- Size: 25.4 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- jimsghstars - fdrennan/ndexutils - Utility functions for my platform (R)
README
## ndexutils
[](https://travis-ci.com/fdrennan/ndexutils)
[](https://codecov.io/gh/fdrennan/ndexutils?branch=master)
Various functions I would like to have in all packagesPackages:
#### [environ](https://github.com/fdrennan/environ)
#### [ndexutils](https://github.com/fdrennan/ndexutils)
#### [biggr](https://github.com/fdrennan/biggr)
#### [ndexssh](https://github.com/fdrennan/ndexssh)
#### [ndexrstrator](https://github.com/fdrennan/ndexrstrator)
#### [ndexie](https://github.com/fdrennan/ndexie)
#### [interface](https://github.com/fdrennan/interface)## Installation
```
renv::install('fdrennan/ndexutils')
# OR
devtools::install_github('fdrennan/ndexutils')
``````{r}
Sys.setenv(NDEXR_VERBOSE = 'true')
name = 'Freddy'
ndex_glue_message('Hello {name}') # use glue and message at the same time
ndex_glue_system('echo {name}') # use glue, message, system on same string
```