Skip to content

Instantly share code, notes, and snippets.

@harish0201
Last active March 21, 2021 10:44
Show Gist options
  • Save harish0201/b9f16960c0cd1a08f2214194d68b6e1b to your computer and use it in GitHub Desktop.
Save harish0201/b9f16960c0cd1a08f2214194d68b6e1b to your computer and use it in GitHub Desktop.
Installing STAMP for Metagenomic Statistical Analyses
##Assumes that Anaconda/Miniconda etc are installed:
#Credit to Donovan Parks at STAMP Google Group
#1. Deactivate all the environments loaded
conda deactivate
#2. Create a new environment for stamp:
conda create -y -n stamp-test python=2.7
#3. Install all the dependencies:
pip install numpy
pip install cython
pip install biom-format==2.1.7
pip install STAMP
###this is the most important one, as QT4 is the GUI base for STAMP:
conda install -c asmeurer pyqt=4
#4. Check if installation has worked
STAMP
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment