Hi Brett,
A colleague and I have been evaluating SparCC vs other co-occurrence detection tools for use with microbiome data. I may be able to help with your questions:
> 1. How do I install SparCC?
SparCC is installed like many python program son *nix systems; you have to let the computer know the path to the executables as well as the path to the library files which undergird the executables. The executables need to be visible via your PATH variable. So, for instance, in my .bash_profile I have the following line:
PATH=$PATH:/Users/wdwvt/src/sparcc/
export PATH
The shell also needs to know where the library files live, which the following line in .bash_profile takes care of:
PYTHONPATH=$PYTHONPATH:/Users/wdwvt/src/sparcc/
export PYTHONPATH
If you are unsure of how the PATH and PYTHONPATH variables work, its important to learn those, otherwise your installation of SparCC and other *nix tools will fail. Note that the '/Users/wdwvt/src/' portion of my paths above is unique to my system - you'll have to specify where you put sparcc in your system.