Last active
March 4, 2016 17:13
-
-
Save wckdouglas/45868b4b643d732926fa to your computer and use it in GitHub Desktop.
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
| #!/bin/bash | |
| if ! [ -x $(command -v conda) ] | |
| then | |
| echo Conda not installed in PATH | |
| exit | |
| else | |
| if ! [ -x $(command -v pip) ] | |
| then | |
| echo pip not in PATH | |
| exit | |
| else | |
| conda install matplotlib scikit-learn numpy scipy seaborn pandas | |
| pip install biopython pyfaidx pybedtools pysam | |
| fi | |
| fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment