FLIGHTED, a machine learning method for inference of fitness landscapes from high-throughput experimental data.
Author: Vikram Sundar.
For convenience, you can install FLIGHTED on pip using pip install flighted
in a clean virtual environment. This installs FLIGHTED, but not any other packages you may want for landscape modeling.
You can also install directly from the source code here on Github. The following packages are required for use and development of FLIGHTED:
- numpy
- scipy
- pandas
- scikit-learn
- matplotlib
- seaborn
- biopython
- pytest
- pytest-pylint
- pytorch
- black
- isort
- pre-commit
- pyro-ppl
The following packages are not required for use of FLIGHTED, but needed for landscape modeling:
- fair-esm
- tape_proteins
- evcouplings
- transformers
- sentencepiece
- sequence-models
An env.yml file is provided for your convenience, especially when installing the tricky dependencies around evcoupling
, though it has a few packages that are not necessary for FLIGHTED.
Once these packages are installed, add the FLIGHTED directory to your Python path (either as an environment variable or within an individual script) to run the model.
To run FLIGHTED-Selection, first prepare a tensor with the following five columns:
- Variant number (0 - number of variants)
- Number of samples of this variant observed pre-selection
- Number of samples of this variant observed post-selection
- Total samples taken pre-selection
- Total samples taken post-selection
This should be a tensor with shape (number of variants, 5). Then run:
from flighted import pretrained
hparams, model = pretrained.load_trained_flighted_model("Selection", cpu_only=True)
fitness_mean, fitness_var = model.selection_reverse_model(selection_data)
The result is the fitness mean and variance (not standard deviation).
To run FLIGHTED-DHARMA, collect all DHARMA reads for a given variant into a single tensor with shape (number of reads, canvas length, 3). The last column is a one-hot encoding for 3 categories: wild-type, C to T Mutation, other mutation. Then run:
from flighted import pretrained
hparams, model = pretrained.load_trained_flighted_model("DHARMA", cpu_only=True)
mean, variance = model.infer_fitness_from_dharma(dharma_data)
The result is the fitness mean and variance (not standard deviation).
If you install from Github, you should test the code after installation to ensure that all the requirements are installed correctly and the package is working. To test the code, run make test-all
in the main directory. This will automatically run a linter and all tests.
While developing code, you can skip slow tests by running make test
instead.
Data has been deposited at Zenodo here and here. Data should be downloaded and installed in a Data/
folder within this directory so the filepaths match in scripts and notebooks. The trained model weights and hyperparameters are on Github and may be automatically downloaded as described above.
A number of scripts are provided for the most important functionality of FLIGHTED. Specifically, within scripts/FLIGHTED_selection/
, we have:
selection_simulations.py
: generates simulated single-step selection experiments for use as training data for FLIGHTED-selection.train_selection_model.py
: trains FLIGHTED-selection (should be run on a GPU).infer_fitness_from_selection.py
: infers fitnesses with variance from FLIGHTED-selection on a provided landscape. The script is written to use the GB1 landscape, but can be easily adapted.train_landscape_model.py
: trains a landscape model (with the given options) on the GB1 landscape with and without FLIGHTED-selection. Can be extended to train models on other landscapes.
Within scripts/FLIGHTED_DHARMA
, we have:
train_dharma_model.py
: trains FLIGHTED-DHARMA on the provided data (should be run on a GPU).infer_fitness_from_dharma.py
: infers fitnesses from DHARMA data.train_landscape_model.py
: trains a landscape model (with the given options) on the TEV landscape. Can be extended to train models on other landscapes.
These scripts should allow you to regenerate all data provided in Zenodo, aside from the DHARMA input data that was obtained experimentally.
The provided notebooks reproduce all figures used in the main text and supplement, when provided with the Data deposited in Zenodo. They also provide examples of how to evaluate the performance of FLIGHTED-selection and FLIGHTED-DHARMA.
For now, please cite the bioRxiv preprint here.