Skip to content

Instantly share code, notes, and snippets.

@jrdemasi
Created November 26, 2018 21:36
Show Gist options
  • Save jrdemasi/a939587340456ce593a600b4d08a5fb1 to your computer and use it in GitHub Desktop.
Save jrdemasi/a939587340456ce593a600b4d08a5fb1 to your computer and use it in GitHub Desktop.
Brief instructions for installing bioconda on top of miniconda3
cd $HOME
wget https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh
bash $HOME/Miniconda3-latest-Linux-x86_64.sh
(Follow the prompts to install miniconda3 in the default location)
. $HOME/miniconda3/bin/activate
(Your prompt should change to indicate you're in the base of a miniconda3 env)
conda config --add channels defaults
conda config --add channels bioconda
conda config --add channels conda-forge
conda install porechop
which porechop
(the last line should point to your porechop binary, confirming it's installed)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment