-
Notifications
You must be signed in to change notification settings - Fork 59
/
transformations_minimal.py
66 lines (53 loc) · 2.02 KB
/
transformations_minimal.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
from __future__ import annotations
import dash
from dash import dcc, html
from dash.dependencies import Input, Output
from dash_mp_components import JsonView
from pymatgen.core import Lattice, Structure
from pymatgen.ext.matproj import MPRester
import crystal_toolkit.components as ctc
from crystal_toolkit.settings import SETTINGS
app = dash.Dash(assets_folder=SETTINGS.ASSETS_PATH)
# create the Structure object
structure = Structure(Lattice.cubic(4.2), ["Na", "K"], [[0, 0, 0], [0.5, 0.5, 0.5]])
# create an input structure as an example
structure = MPRester().get_structure_by_material_id("mp-804")
structure_in = dcc.Store(id="structure_in", data=structure.as_dict())
# patch, this should be a JSON component ...
structure_in.id = lambda: "structure_in"
# and the transformation component itself
transformation_component = ctc.AllTransformationsComponent(
transformations=[
"AutoOxiStateDecorationTransformationComponent",
"SupercellTransformationComponent",
# "SlabTransformationComponent",
# "SubstitutionTransformationComponent",
"CubicSupercellTransformationComponent",
# "GrainBoundaryTransformationComponent"
],
input_structure=structure_in,
)
# example layout to demonstrate capabilities of component
layout = html.Div(
[
html.H1("TransformationComponent Example"),
html.H2("Standard Layout"),
transformation_component.layout(),
html.H3("Example Input Structure"),
JsonView(src=structure.as_dict()),
html.H3("Example Transformed Structure"),
JsonView(src={}, id="structure_out"),
]
)
# tell crystal toolkit about your app and layout
ctc.register_crystal_toolkit(app, layout=layout)
@app.callback(
Output("structure_out", "data"), Input(transformation_component.id(), "data")
)
def update_structure(struct):
return struct
# run this app with "python path/to/this/file.py"
# in production, deploy behind gunicorn or similar
# see Dash docs for more info
if __name__ == "__main__":
app.run(debug=True, port=8050)