FaST-LMM, which stands for Factored Spectrally Transformed Linear Mixed Models, is a program for performing genome-wide association studies (GWAS) on datasets of all sizes, up to one millions samples.
This release contains the following features, each illustrated with an IPython notebook.
- Core FaST-LMM (notebook) -- Lippert et al., Nature Methods 2011
Improvements:
- Ludicrous-Speed GWAS (notebook) -- Kadie and Heckerman, bioRxiv 2018
- Heritability with Spatial Correction (notebook), Heckerman et al., PNAS 2016
- Two Kernels (notebook) -- Widmer et al., Scientific Reports 2014
- Set Analysis (notebook) -- Lippert et al., Bioinformatics 2014
- Epistasis (notebook) -- Lippert et al., Scientific Reports, 2013
A C++ version, which is generally less functional, is available. See http://fastlmm.github.io/.
- IPython Notebooks:
- API Documentation
- Project Home and Full Annotated Bibliography
- Email the developers at [email protected].
- Join the user discussion and announcement list (or use web sign up).
- Open an issue on GitHub.
If you have pip installed, installation is as easy as:
pip install fastlmm
fastlmm has the following dependencies:
python 2.7
Packages:
- scipy
- numpy
- pandas
- matplotlib
- scikit.learn (sklearn)
- dill
- pysnptools
- cython
- optional: [statsmodels -- install only required for logistic-based tests, not the standard linear LRT]
We recommend using a Python distribution such as Anaconda. This distribution can be used on Linux and Windows and is free. It is the easiest way to get all the required package dependencies.
Go to the directory where you copied the source code for fastlmm.
On Linux:
At the shell, type:
sudo python setup.py install
On Windows:
At the OS command prompt, type
python setup.py install
When working on the developer version, first add the src directory of the package to your PYTHONPATH environment variable.
For building C-extensions, first make sure all of the above dependencies are installed (including cython)
To build extension (from .\src dir), type the following at the OS prompt:
python setup.py build_ext --inplace
Note, if this fails with a gcc permission denied error, then specifying the correct compiler will likely fix the problem, e.g.
python setup.py build_ext --inplace --compiler=msvc
Don't forget to set your PYTHONPATH to point to the directory above the one named fastlmm in the fastlmm source code. For e.g. if fastlmm is in the [somedir] directory, then in the unix shell use:
export PYTHONPATH=$PYTHONPATH:[somedir]
Or in the Windows DOS terminal, one can use:
set PYTHONPATH=%PYTHONPATH%;[somedir]
(or use the Windows GUI for env variables).
Note for Windows: You must have Visual Studio installed. If you have VisualStudio2008 installed (which was used to build python2.7) you need to nothing more. Otherwise, follow these instructions:
If you have Visual Studio 2010 installed, execute:
SET VS90COMNTOOLS=%VS100COMNTOOLS%
or with Visual Studio 2012 installed:
SET VS90COMNTOOLS=%VS110COMNTOOLS%
or with Visual Studio 2013 installed:
SET VS90COMNTOOLS=%VS120COMNTOOLS%
or with Visual Studio 2015 installed:
SET VS90COMNTOOLS=%VS130COMNTOOLS%
or with Visual Studio 2017 installed:
SET VS90COMNTOOLS=%VS140COMNTOOLS%
From the directory tests at the top level, run:
python test.py
This will run a series of regression tests, reporting "." for each one that passes, "F" for each one that does not match up, and "E" for any which produce a run-time error. After they have all run, you should see the string "............" indicating that they all passed, or if they did not, something such as "....F...E......", after which you can see the specific errors.
Note that you must use "python setup.py build_ext --inplace" to run the regression tests, and not "python setup.py install".