GenericRunner | R Documentation |
A simplified way to call executable / shell commands from within R code.
GenericRunner( command = "echo", param = list(threads = 4, mem = 120), RunInTmp = F, FlgType = "-", AsType = " ", ... )
command |
Command to call (if notin path, provide the full path to the binary). |
param |
Flags/parameters to pass to the command. Formatted as a named list, e.g. "flag" = "value". |
RunInTmp |
Should the command be called from a temporary folder made inside the current working directory? |
FlgType |
How should the flags (from "params") be passed to the command? character, e.g. "-", "–" |
AsType |
How should the values of flags (from "params") be joined with the flags? character, e.g. "=", " " |
GenericRunner
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.