Warning
Boltz currently fails when using CPU as accelerator (and thus also GitHub's default CI). See #2 for tracker.
Julia bindings for Python's boltz for biomolecular structure prediction.
using Pkg
pkg"add PyBoltz"
using PyBoltz, PyBoltz.Schema
input = MolecularInput(
sequences = [
protein(id="A", sequence="TTCCPSIVARSNFNVCRLPGTPEAICATYTGCIIIPGATCPGDYAN", msa="empty"),
]
)
using BioStructures: MolecularStructure
predicted_structure = predict(input, MolecularStructure)
using PyBoltz
PyBoltz.predict(input_path; options...)