Skip to content

Commit

Permalink
adds warning in docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
Valentin Zulkower committed Dec 17, 2024
1 parent 6a9609b commit d5cc0e5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ginkgo_ai_client/queries.py
Original file line number Diff line number Diff line change
Expand Up @@ -584,10 +584,14 @@ def download_structure(self, path: str):
class BoltzStructurePredictionQuery(QueryBase):
"""A query to predict the structure of a protein using the Boltz model.
This type of query is better constructed using the `from_yaml_file` or
`from_protein_sequence` methods.
Parameters
----------
sequences: List[Dict[Literal["protein", "ligand"], Union[_Protein, _CCD, _Smiles]]]
The sequences to predict the structure for
The sequences to predict the structure for.
Only protein sequences of size <1000aa are supported for now.
model: Literal["boltz"] = "boltz"
The model to use for the inference (only Boltz(1) is supported for now).
query_name: Optional[str] = None
Expand Down

0 comments on commit d5cc0e5

Please sign in to comment.