Skip to content

Commit

Permalink
chore : remove duplication of options/examples
Browse files Browse the repository at this point in the history
  • Loading branch information
jannisborn committed Jun 9, 2024
1 parent ad30d5c commit 5cdd186
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions src/gt4sd/properties/molecules/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,6 @@ class Output(str, Enum):
default=Output.plausability,
examples=[Output.synthesizability],
description="Main output return type from ASKCOS",
options=["plausibility", "num_step", "synthesizability", "price"],
)
save_json: bool = Field(default=False)
file_name: str = Field(default="tree_builder_result.json")
Expand Down Expand Up @@ -171,9 +170,8 @@ class DockingTdcParameters(PropertyPredictorParameters):
# To dock against a receptor defined via TDC
target: str = Field(
...,
examples=["1iep_docking"],
examples=download_receptor_oracle_name,
description="Target for docking, provided via TDC",
options=download_receptor_oracle_name,
)


Expand Down Expand Up @@ -271,7 +269,6 @@ class ToxType(str, Enum):
default=ToxType.all,
examples=[ToxType.chronic],
description="type of toxicity for which predictions are made.",
options=["chronic", "subchronic", "multigenerational", "all"],
)


Expand Down

0 comments on commit 5cdd186

Please sign in to comment.