Skip to content

BIONF/conda-recipes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

36 Commits
 
 
 
 
 
 

Repository files navigation

Conda recipes

Add conda repositories

conda config --add channels bioconda
conda config --add channels conda-forge

Building conda package

conda-build recipes/<tool_name>

Upload package into anaconda cloud (need to run conda login first to log into your anaconda cloud account)

anaconda upload /path/to/<tool>-<version>.tar.bz2

Install tool within a conda env

conda install -c <conda.org account name> <tool name>

Alternatively, you can build a package file for a tool, then create your own channel and install your tool from there.

mkdir my_channel
cp /path/to/<tool>-<version>.tar.bz2 my_channel
conda index my_channel

Then, modify ~/.condarc file to add my_channel

channels:
  - file:/path/to/my_channel/
  - conda.org_account_name
  - defaults

After that, you can easily install your tool with the command

conda install <tool name>

Current tools that have recipes

  1. HaMStR
  2. FAS

BIONF in anaconda cloud

https://anaconda.org/BIONF

Install tools from BIONF channel with the command

conda install -c bionf <tool name>

Contact

For any questions, please open an issue on GitHub :-)

Releases

No releases published

Packages

No packages published

Languages