Skip to content

Commit

Permalink
add set option to buildcell_options>SYSTEM
Browse files Browse the repository at this point in the history
  • Loading branch information
naik-aakash committed Jan 31, 2025
1 parent 112b1e0 commit a368920
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/autoplex/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -876,9 +876,11 @@ class BuildcellOptions(AutoplexBaseModel):
"values are (1,2,3,5,4,6,7,8,9,10,11,12,24). "
"Ranges are allowed (e.g., #SYMMOPS=1-4).",
)
SYSTEM: None | Literal["Rhom", "Tric", "Mono", "Cubi", "Hexa", "Orth", "Tetra"] = (
Field(default=None, description="Enforce a crystal system")
)
SYSTEM: (
None
| Literal["Rhom", "Tric", "Mono", "Cubi", "Hexa", "Orth", "Tetra"]
| set[Literal["Rhom", "Tric", "Mono", "Cubi", "Hexa", "Orth", "Tetra"]]
) = Field(default=None, description="Enforce a crystal system")
SLACK: float | None = Field(default=None, description="The slack factor")
OCTET: bool = Field(
default=False,
Expand Down

0 comments on commit a368920

Please sign in to comment.