Julia bindings for Python's boltz for biomolecular structure prediction.
using Pkg
pkg"add PyBoltz"
using PyBoltz, PyBoltz.Schema
input = BoltzInput(
sequences = [
protein(id="A", sequence="TTCCPSIVARSNFNVCRLPGTPEAICATYTGCIIIPGATCPGDYAN", msa="empty"),
]
)
using BioStructures: MolecularStructure
predicted_structure = predict(input, MolecularStructure)
using PyBoltz
PyBoltz.predict(input_path; options...)