mirror of
https://github.com/RosettaCommons/foundry.git
synced 2026-06-04 13:24:22 +08:00
* rfd3na * ruff check fix * ruff format * handle P suffix from fonudry components update * simplify p suffix handling and fix demo.json (was brokem in foundry due to ligand chain allow issue) * clean; remove extraneous files * main doc cleanup; training fix * rnasep png * add white background to png * try jpg as png getting cropped * atom23 gif * Update README.md * foundry install * no background multipolymer * Update README.md * ruff format --------- Co-authored-by: Raktim Mitra <raktim@localhost> Co-authored-by: Rohith Krishna <rohith@localhost> Co-authored-by: Raktim Mitra <raktim@digs> Co-authored-by: Raktim Mitra <raktim@digs.ipd.uw.edu>
200 lines
8.9 KiB
Markdown
200 lines
8.9 KiB
Markdown
# Protein design with Foundry
|
|
|
|
Foundry provides tooling and infrastructure for using and training all classes of models for protein design, including design (RFD3), inverse folding (ProteinMPNN) and protein folding (RF3).
|
|
|
|
All models within Foundry rely on [AtomWorks](https://github.com/RosettaCommons/atomworks) - a unified framework for manipulating and processing biomolecular structures - for both training and inference.
|
|
|
|
|
|
> [!NOTE]
|
|
> We have a slack now! Join for updates and to get your questions answered [here](https://join.slack.com/t/proteinmodelfoundry/shared_invite/zt-3pj032444-jC8MRqsV8nhpKX0PGowQ4A).
|
|
|
|
## Getting Started
|
|
### Quickstart guide
|
|
**Installation**
|
|
```bash
|
|
pip install "rc-foundry[all]"
|
|
```
|
|
|
|
**Intel XPU Installation**
|
|
|
|
For Intel XPU devices, install PyTorch with XPU support first, then install Foundry.
|
|
```bash
|
|
pip install torch --index-url https://download.pytorch.org/whl/xpu
|
|
pip install "rc-foundry[all]"
|
|
```
|
|
> [!NOTE]
|
|
> Use `pip` (not `uv`) for XPU installs since UV re-resolves dependencies and may replace your XPU torch with the standard PyPI version.
|
|
|
|
**macOS (Apple Silicon) Installation**
|
|
|
|
MPS support is available via a community fork. Install PyTorch first, then install directly from the fork:
|
|
```bash
|
|
pip install torch
|
|
pip install "rc-foundry[all] @ git+https://github.com/fnachon/foundry.git"
|
|
```
|
|
|
|
All three models — **RFD3**, **RF3**, and **ProteinMPNN/LigandMPNN** — run on Apple Silicon MPS.
|
|
|
|
> [!NOTE]
|
|
> - The `rf3` extra (cuEquivariance) is Linux-only and is automatically skipped on macOS.
|
|
> - Use `float32` precision — `bfloat16` is not supported on MPS. The MPS accelerator is selected and float32 precision is enforced automatically.
|
|
> - Inference only; multi-GPU training is not supported on MPS.
|
|
> - For `rf3 fold`, pass an absolute path to the input CIF file.
|
|
|
|
**Downloading weights** Models can be downloaded to a target folder with:
|
|
```
|
|
foundry install base-models --checkpoint-dir <path/to/ckpt/dir>
|
|
```
|
|
where `checkpoint-dir` will be `~/.foundry/checkpoints` by default. Foundry always searches `~/.foundry/checkpoints` plus any colon-separated entries in `$FOUNDRY_CHECKPOINT_DIRS` during inference or subsequent commands to find checkpoints. `base-models` installs the latest RFD3, RF3 and MPNN variants - you can also download all of the models supported (including multiple checkpoints of RF3) with `all`, or by listing the models sequentially (e.g. `foundry install rfd3 rf3 ...`).
|
|
To list the registry of available checkpoints:
|
|
```
|
|
foundry list-available
|
|
```
|
|
To check what you already have downloaded (searches `~/.foundry/checkpoints` plus `$FOUNDRY_CHECKPOINT_DIRS` if set):
|
|
```
|
|
foundry list-installed
|
|
```
|
|
|
|
>*See `examples/all.ipynb` for how to run each model and design proteins end-to-end in a notebook.*
|
|
|
|
### Docker Image
|
|
|
|
There is an official [Foundry image](https://hub.docker.com/r/rosettacommons/foundry) maintained by the [Rosetta Commons](https://rosettacommons.org/). The default image comes with the model weights for the available models, but you can use the `slim` tag to either use pre-exiting model weights or use the image to download the available model weights.
|
|
|
|
For more information and example syntax, see the [Overview on DockerHub](https://hub.docker.com/r/rosettacommons/foundry).
|
|
|
|
The recipe to create the Docker image can be found in `foundry/examples/docker` and can be used as a "blue-print" for creating your own images.
|
|
|
|
### Google Colab
|
|
For an interactive Google Colab notebook walking through a basic design pipeline with RFD3, MPNN, and RF3, please see the [IPD Design Pipeline Tutorial](https://colab.research.google.com/drive/1ZwIMV3n9h0ZOnIXX0GyKUuoiahgifBxh?usp=sharing).
|
|
|
|
### RFdiffusion3 (RFD3)
|
|
|
|
[RFdiffusion3](https://www.biorxiv.org/content/10.1101/2025.09.18.676967v2) is an all-atom generative model capable of designing protein structures under complex constraints.
|
|
|
|
<div align="center">
|
|
<img src="docs/_static/cover.png" alt="RFdiffusion3 generation trajectory." width="700">
|
|
</div>
|
|
|
|
> *See [models/rfd3/README.md](models/rfd3/README.md) for complete documentation.*
|
|
|
|
### RFdiffusion3NA (RFD3NA)
|
|
|
|
[RFdiffusion3NA](https://www.biorxiv.org/content/10.1101/2025.09.18.676967v3) is an extension of RFDiffusion3 capable of designing also nucleic acid structures under complex constraints.
|
|
|
|
<div align="center">
|
|
<img src="models/rfd3na/docs/.assets/multipolymer.png" alt="RFdiffusion3NA multi polymer" width="400">
|
|
</div>
|
|
|
|
> *See [models/rfd3na/README.md](models/rfd3na/README.md) for complete documentation.*
|
|
|
|
### RosettaFold3 (RF3)
|
|
|
|
[RF3](https://doi.org/10.1101/2025.08.14.670328) is a structure prediction neural network that narrows the gap between closed-source AF-3 and open-source alternatives.
|
|
|
|
<div align="center">
|
|
<img src="docs/_static/prot_dna.png" alt="Protein-DNA complex prediction" width="400">
|
|
</div>
|
|
|
|
> *See [models/rf3/README.md](models/rf3/README.md) for complete documentation.*
|
|
|
|
### ProteinMPNN
|
|
[ProteinMPNN](https://www.science.org/doi/10.1126/science.add2187) and [LigandMPNN](https://www.nature.com/articles/s41592-025-02626-1) are lightweight inverse-folding models which can be use to design diverse sequences for backbones under constrained conditions.
|
|
|
|
> *See [models/mpnn/README.md](models/mpnn/README.md) for complete documentation.*
|
|
|
|
---
|
|
|
|
## Development
|
|
|
|
### Code Organization
|
|
|
|
**Strict dependency flow:** `foundry` → `atomworks`
|
|
|
|
- **atomworks**: Structure I/O, preprocessing, featurization
|
|
- **foundry**: Model architectures, training, inference endpoints
|
|
- **models/\<model\>:** Released models.
|
|
|
|
#### For Core Developers (Multiple Packages)
|
|
|
|
Install both `foundry` and models in editable mode for development:
|
|
|
|
```bash
|
|
uv pip install -e '.[all,dev]'
|
|
```
|
|
|
|
This approach allows you to:
|
|
- Modify `foundry` shared utilities and see changes immediately
|
|
- Work on specific models without installing all models
|
|
- Add new models as independent packages in `models/`
|
|
|
|
> [!NOTE]
|
|
> Running tests is not currently supported, test files may be missing.
|
|
|
|
### Adding New Models
|
|
|
|
To add a new model:
|
|
|
|
1. Create `models/<model_name>/` directory with its own `pyproject.toml`
|
|
2. Add `foundry` as a dependency
|
|
3. Implement model-specific code in `models/<model_name>/src/`
|
|
4. Users can install with: `uv pip install -e ./models/<model_name>`
|
|
|
|
### Pre-commit Formatting
|
|
|
|
We ship a `.pre-commit-config.yaml` that runs `make format` (via `ruff format`) before each commit. Enable it once per clone:
|
|
|
|
```bash
|
|
pip install pre-commit # if not already installed
|
|
pre-commit install
|
|
```
|
|
|
|
After installation the hook automatically formats the repo whenever you `git commit`. Use `pre-commit run --all-files` to apply it manually.
|
|
|
|
## Citation
|
|
|
|
If you use this repository code or data in your work, please cite the relavant work as below:
|
|
|
|
```bibtex
|
|
@article{corley2025accelerating,
|
|
title={Accelerating biomolecular modeling with atomworks and rf3},
|
|
author={Corley, Nathaniel and Mathis, Simon and Krishna, Rohith and Bauer, Magnus S and Thompson, Tuscan R and Ahern, Woody and Kazman, Maxwell W and Brent, Rafael I and Didi, Kieran and Kubaney, Andrew and others},
|
|
journal={bioRxiv},
|
|
year={2025}
|
|
}
|
|
|
|
@article {butcher2025_rfdiffusion3,
|
|
author = {Butcher, Jasper and Krishna, Rohith and Mitra, Raktim and Brent, Rafael Isaac and Li, Yanjing and Corley, Nathaniel and Kim, Paul T and Funk, Jonathan and Mathis, Simon Valentin and Salike, Saman and Muraishi, Aiko and Eisenach, Helen and Thompson, Tuscan Rock and Chen, Jie and Politanska, Yuliya and Sehgal, Enisha and Coventry, Brian and Zhang, Odin and Qiang, Bo and Didi, Kieran and Kazman, Maxwell and DiMaio, Frank and Baker, David},
|
|
title = {De novo Design of All-atom Biomolecular Interactions with RFdiffusion3},
|
|
elocation-id = {2025.09.18.676967},
|
|
year = {2025},
|
|
doi = {10.1101/2025.09.18.676967},
|
|
publisher = {Cold Spring Harbor Laboratory},
|
|
URL = {https://www.biorxiv.org/content/early/2025/11/19/2025.09.18.676967},
|
|
eprint = {https://www.biorxiv.org/content/early/2025/11/19/2025.09.18.676967.full.pdf},
|
|
journal = {bioRxiv}
|
|
}
|
|
|
|
@article{dauparas2022robust,
|
|
title={Robust deep learning--based protein sequence design using ProteinMPNN},
|
|
author={Dauparas, Justas and Anishchenko, Ivan and Bennett, Nathaniel and Bai, Hua and Ragotte, Robert J and Milles, Lukas F and Wicky, Basile IM and Courbet, Alexis and de Haas, Rob J and Bethel, Neville and others},
|
|
journal={Science},
|
|
volume={378},
|
|
number={6615},
|
|
pages={49--56},
|
|
year={2022},
|
|
publisher={American Association for the Advancement of Science}
|
|
}
|
|
|
|
@article{dauparas2025atomic,
|
|
title={Atomic context-conditioned protein sequence design using LigandMPNN},
|
|
author={Dauparas, Justas and Lee, Gyu Rie and Pecoraro, Robert and An, Linna and Anishchenko, Ivan and Glasscock, Cameron and Baker, David},
|
|
journal={Nature Methods},
|
|
pages={1--7},
|
|
year={2025},
|
|
publisher={Nature Publishing Group US New York}
|
|
}
|
|
```
|
|
## Acknowledgments
|
|
We thank Rachel Clune and Hope Woods from the RosettaCommons for their collaboration on the codebase, documentation, tutorials and examples.
|