Removes an environment managed by condathis.
Usage
remove_env(
env_name = "condathis-env",
verbose = c("silent", "cmd", "output", "spinner", "full")
)Value
A process result list (from processx::run()) with command output,
error output, exit status, and timeout information.
Examples
if (FALSE) { # \dontrun{
condathis::with_sandbox_dir({
condathis::create_env(
packages = "bioconda::fastqc",
env_name = "fastqc-env"
)
condathis::remove_env(env_name = "fastqc-env")
})
} # }