Skip to content

Instantly share code, notes, and snippets.

@hisplan
Created July 29, 2019 19:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hisplan/472f122138707cd4442d9a5880c8ffd2 to your computer and use it in GitHub Desktop.
Save hisplan/472f122138707cd4442d9a5880c8ffd2 to your computer and use it in GitHub Desktop.
Installing pysam on AWS Instance
conda create -n pysam python=3.6.5 pip

sudo yum install -y openssl-devel

wget https://github.com/pysam-developers/pysam/archive/v0.15.3.tar.gz
tar xvzf v0.15.3.tar.gz

cd pysam-0.15.3
cd htslib
./configure
make
cd ..
python setup.py install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment