Last active
March 21, 2021 10:44
-
-
Save harish0201/b9f16960c0cd1a08f2214194d68b6e1b to your computer and use it in GitHub Desktop.
Installing STAMP for Metagenomic Statistical Analyses
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
##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