Spaces:
Runtime error
Runtime error
simonduerr
commited on
Commit
·
73fc10f
1
Parent(s):
3b273aa
Update app.py
Browse files
app.py
CHANGED
@@ -230,22 +230,22 @@ metal3d = gr.Blocks()
|
|
230 |
|
231 |
with metal3d:
|
232 |
gr.Markdown("# Metal3D")
|
233 |
-
|
234 |
-
"""
|
235 |
-
Details about implementation and code available here:
|
236 |
-
>Duerr, Levy and Roethlisberger, Predicting zinc ion location using deep learning, BioRxiv, 2022 "
|
237 |
-
"""
|
238 |
-
)
|
239 |
with gr.Group():
|
240 |
inp = gr.Textbox(
|
241 |
-
placeholder="PDB Code or Uniprot identifier", label="Input molecule"
|
242 |
)
|
243 |
-
gr.Markdown("or upload a file")
|
244 |
file = gr.File(file_count="single", type="file")
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
249 |
btn = gr.Button("Run")
|
250 |
|
251 |
gr.Markdown("# Output")
|
|
|
230 |
|
231 |
with metal3d:
|
232 |
gr.Markdown("# Metal3D")
|
233 |
+
|
|
|
|
|
|
|
|
|
|
|
234 |
with gr.Group():
|
235 |
inp = gr.Textbox(
|
236 |
+
placeholder="PDB Code or Uniprot identifier or upload file below", label="Input molecule"
|
237 |
)
|
|
|
238 |
file = gr.File(file_count="single", type="file")
|
239 |
+
with gr.Row():
|
240 |
+
mode = gr.Radio(
|
241 |
+
["All metalbinding residues (ASP, CYS, GLU, HIS)", "All residues"],
|
242 |
+
label="Residues to use for prediction",
|
243 |
+
)
|
244 |
+
custom_resids = gr.Textbox(placeholder="Comma separated list of residues", label="Custom residues")
|
245 |
+
gr.Markdown(
|
246 |
+
""" <small>Inference using CPU-only, can be quite slow for more than 20 residues. Use Colab notebook for GPU acceleration</small>
|
247 |
+
"""
|
248 |
+
)
|
249 |
btn = gr.Button("Run")
|
250 |
|
251 |
gr.Markdown("# Output")
|