refua
The core Refua package for running structure and affinity workflows directly from Python.
- Move from target and ligand inputs to model outputs quickly
- Base layer used across the Refua ecosystem
pip install refua
View repositoryOpen Source Drug Discovery Stack
AgentCures builds in public at github.com/agentcures. Our mission is simple: open source to solve all human disease. Start with Refua, then layer in refua-mcp and refua-notebook for agent workflows and notebook-first research.
Three key repositories in this stack:
The core Refua package for running structure and affinity workflows directly from Python.
pip install refua
View repositoryAn MCP bridge that lets assistant tools call Refua workflows in a structured way.
pip install refua-mcp
View repositoryA Jupyter-first package for interactive, visual exploration of Refua objects.
%load_ext refua_notebookpip install refua-notebook
View repositorypip install refua
pip install refua-mcp
pip install refua-notebook
pip install "refua[cuda]"
from refua import Boltz2
model = Boltz2()
complex_spec = (
model.fold_complex()
.protein("A", "MKTAYIAKQRQISFVKSHFSRQLEERLGLIEVQ")
.ligand("L", "CCO")
)
affinity = complex_spec.get_affinity()
print(affinity.ic50, affinity.binding_probability)
Use the repos, open issues, ship fixes, and help us push open source to solve all human disease.