list_CondaEnv {Herper} | R Documentation |
List Conda environments
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
condaDir <- file.path(tempdir(), "r-miniconda") condaPaths <- install_CondaTools("igv", "herper", pathToMiniConda = condaDir) list_CondaEnv(pathToMiniConda = condaDir) list_CondaEnv(pathToMiniConda = condaDir, env = "herper")