Skip to content

MurrellGroup/PyBoltz.jl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

57 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

PyBoltz.jl

Stable Dev Build Status Coverage

Julia bindings for Python's boltz for biomolecular structure prediction.

Installation

using Pkg
pkg"add PyBoltz"

Quickstart

In-memory input/output

using PyBoltz, PyBoltz.Schema

input = BoltzInput(
    sequences = [
        protein(id="A", sequence="TTCCPSIVARSNFNVCRLPGTPEAICATYTGCIIIPGATCPGDYAN", msa="empty"),
    ]
)

using BioStructures: MolecularStructure

predicted_structure = predict(input, MolecularStructure)

boltz predict command binding

using PyBoltz

PyBoltz.predict(input_path; options...)