Handles basic bioinformatics operations with a python package structure
pip
pip install bipackagepipx
pipx install bipackageconda
conda env create -f env.yamlOn command line,
bip <subcommand> [params]On python,
import bipackage as bip
bip.function(args*,kwargs**)Note that params are the parameters for the subcommand.
To enable tab autocompletion, run the following command:
bashrc (For Linux)
run bip once and restart the shell
bipadd to zshrc (For MacOS)
autoload -U bashcompinit
bashcompinit
eval "$(register-python-argcomplete bip)"This will enable tab autocompletion for the bip command.