import_cli | R Documentation |
Import a Command Line Interface (CLI) tool into R as a function.
import_cli(path, fix_names = TRUE, conda_env = NULL, verbose = TRUE)
path |
Path to CLI tool executable file (preferred), or simply the tool name. |
fix_names |
Map argument names to R-friendly versions. |
conda_env |
Conda environments to search in.
If |
verbose |
Print messages. |
mycurl <- import_cli(path="curl")
mycurl(h = TRUE)
mycurl(url= file.path("http://hgdownload.soe.ucsc.edu/goldenPath",
"hg38/multiz100way/md5sum.txt"),
o="~/Downloads/tmp.txt")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.