Description Usage Arguments Value Author(s) Examples
List Conda environments
1 | list_CondaEnv(pathToMiniConda = NULL, allCondas = FALSE, env = NULL)
|
pathToMiniConda |
NULL Path to miniconda installation |
allCondas |
Logical. Whether to return conda environments, for all discoverable conda installs, or just the conda specified in pathToMiniConda. |
env |
Environment name. If this is supplied to list_CondaEnv, it will query whether that environment is present in the given conda. |
Conda environment names and the file paths to their conda installation are printed to the screen. If environment name is supplied a TRUE/FALSE will be returned depending on whether that environment is present or not.
Matt Paul
1 2 3 4 | condaDir <- file.path(tempdir(), "r-miniconda")
condaPaths <- install_CondaTools("igv", "herper", pathToMiniConda = condaDir)
list_CondaEnv(pathToMiniConda = condaDir)
list_CondaEnv(pathToMiniConda = condaDir, env = "herper")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.