run_gunzip | R Documentation |
Decompress a file using gunzip
.
run_gunzip(
path,
conda_env = "echoR_mini",
method = c("R.utils", "conda"),
outputs = c("command", "path", "data"),
verbose = TRUE
)
path |
Path to file. |
conda_env |
Conda environments to search in.
If |
method |
Method to gunzip
|
outputs |
Which outputs to return in a list. Can be one or more of the following:
If only one valid option is selected, the item will be returned without being embedded within a list. |
verbose |
Print messages. |
dat <- echodata::BST1
tmp <- tempfile(fileext = ".csv.gz")
data.table::fwrite(dat, tmp)
out <- echotabix::run_gunzip(path=tmp)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.