#!/usr/bin/env bash
######
# This is the install script for Sphinx.
# This compiles the RAPDF scripts first, then installs everything to the user's local directories by default.
######

# Set up the C bits
gcc lib/python/sphinx/ranking/RAPDF_general_protein_data.c -lm -o bin/RAPDF
#gcc lib/python/sphinx/rapdf_h3/RAPDF_H3_protein_data.c -lm -o bin/RAPDF_H3

# Set up the Python scripts
python setup.py install --user
