Update app.py
Browse files
app.py
CHANGED
@@ -13,9 +13,10 @@ with gr.Blocks() as demo:
|
|
13 |
**Predict the protein half-life from its sequence or PDB file.**
|
14 |
"""
|
15 |
)
|
16 |
-
gr.Markdown("")
|
17 |
|
18 |
model_choice = gr.Radio(choices=["SaProt", "ESM-2"], label="Select PLTNUM's base model.", value="SaProt")
|
|
|
19 |
|
20 |
with gr.Tabs():
|
21 |
with gr.TabItem("Upload PDB File"):
|
|
|
13 |
**Predict the protein half-life from its sequence or PDB file.**
|
14 |
"""
|
15 |
)
|
16 |
+
gr.Markdown("")
|
17 |
|
18 |
model_choice = gr.Radio(choices=["SaProt", "ESM-2"], label="Select PLTNUM's base model.", value="SaProt")
|
19 |
+
organism_choice = gr.Radio(choices=["Mouse", "Human"], label="Select the target organism.", value="Mouse")
|
20 |
|
21 |
with gr.Tabs():
|
22 |
with gr.TabItem("Upload PDB File"):
|