install_CondaTools | R Documentation |
Install Conda requirements
install_CondaTools(
tools,
env,
channels = NULL,
pathToMiniConda = NULL,
updateEnv = FALSE,
search = FALSE,
verbose = FALSE
)
tools |
Vector of software to install using conda. |
env |
Name of Conda environment to install tools into. |
channels |
Channels for miniconda (bioconda and conda-forge are defaults). |
pathToMiniConda |
NULL Path to miniconda installation |
updateEnv |
Update existing package's conda environment if already installed. |
search |
Whether to search for the package name and version before installing. It is highly recommended this be set to TRUE as information about available versions or similar packages will be included in the output if the exact match is not found. |
verbose |
Print system messages from conda on progress (Default is FALSE). There is a third option "silent" which suppresses Herper and Conda messaging. |
Nothing returned. Output written to file.
Thomas Carroll
condaPaths <- install_CondaTools("salmon", "herper_env")
system2(file.path(condaPaths$pathToEnvBin, "salmon"), args = "--help")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.