You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"2D plots: SVG format with customizable dimensions"
134
-
),
135
-
html.Li("3D plots: Interactive HTML files"),
136
-
html.Li(
137
-
"Set width and height before downloading"
138
-
),
139
-
]
140
-
),
141
-
]
142
-
),
143
-
]
144
-
),
145
-
html.H4("Structure Visualization"),
146
-
html.Ul(
147
-
[
148
-
html.Li(
149
-
[
150
-
html.Strong("PDB Viewer"),
151
-
html.Ul(
152
-
[
153
-
html.Li(
154
-
"Upload PDB files as ZIP to enable structure viewing"
155
-
),
156
-
html.Li(
157
-
"Click data points to display corresponding structures"
158
-
),
159
-
html.Li(
160
-
"Multiple structures can be viewed simultaneously"
161
-
),
162
-
html.Li(
163
-
"Interactive 3D manipulation of protein structures"
164
-
),
165
-
]
166
-
),
167
-
]
168
-
)
169
-
]
170
-
),
171
-
html.H4("Data Management"),
172
-
html.Ul(
173
-
[
174
-
html.Li(
175
-
[
176
-
html.Strong("File Operations"),
177
-
html.Ul(
178
-
[
179
-
html.Li("Save visualization state as JSON"),
180
-
html.Li("Load previously saved states"),
181
-
html.Li(
182
-
"Import new protein structures (ZIP of PDB files)"
183
-
),
184
-
]
185
-
),
186
-
]
187
-
),
188
-
html.Li(
189
-
[
190
-
html.Strong("Data Types"),
191
-
html.Ul(
192
-
[
193
-
html.Li(
194
-
"Supports continuous and categorical features"
195
-
),
196
-
html.Li(
197
-
"Handles missing values (shown as <NaN>)"
198
-
),
199
-
html.Li(
200
-
"Compatible with various dimensionality reduction methods"
201
-
),
202
-
]
203
-
),
204
-
]
205
-
),
206
-
]
207
-
),
208
-
html.H4("Tips & Shortcuts"),
209
-
html.Ul(
210
-
[
211
-
html.Li(
212
-
"Hold Shift while selecting to compare multiple proteins"
213
-
),
214
-
html.Li("Use browser refresh to reset all selections"),
215
-
html.Li(
216
-
"Export plots at high resolution by setting large dimensions"
217
-
),
218
-
html.Li(
219
-
"Save visualization state frequently to preserve customizations"
220
-
),
221
-
]
222
-
),
223
-
],
224
-
style={
225
-
"maxHeight": "calc(100vh - 300px)",
226
-
"overflowY": "auto",
227
-
},
228
-
),
229
-
]
230
-
)
21
+
returnhtml.Div([
22
+
html.H3("ProtSpace Help Guide"),
23
+
html.Div([
24
+
html.H4("Interface Overview"),
25
+
html.Div([
26
+
html.Img(
27
+
src="assets/annotated_image.png",
28
+
alt="ProtSpace Interface Overview",
29
+
style={"width": "100%", "height": "auto"}
30
+
),
31
+
html.Div([
32
+
html.P([html.Strong("A: Feature Selection"), " - Choose between protein properties to visualize"], style=HELP_MENU_STYLES["overview_item"]),
33
+
html.P([html.Strong("B: Projection Method"), " - Change between different precomputed projections"], style=HELP_MENU_STYLES["overview_item"]),
34
+
html.P([html.Strong("C: Search Function"), " - Find and highlight specific proteins and its 3D structure if provided"], style=HELP_MENU_STYLES["overview_item"]),
0 commit comments