Skip to content

Instantly share code, notes, and snippets.

@wckdouglas
Last active March 4, 2016 17:13
Show Gist options
  • Save wckdouglas/45868b4b643d732926fa to your computer and use it in GitHub Desktop.
Save wckdouglas/45868b4b643d732926fa to your computer and use it in GitHub Desktop.
#!/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