wangjin2000
commited on
Commit
•
4a2eb3c
1
Parent(s):
e7f6276
Update app.py
Browse files
app.py
CHANGED
@@ -93,15 +93,8 @@ with demo:
|
|
93 |
</div>""")
|
94 |
name = gr.Dropdown(label="Choose a Sample Protein", value="Plastic degradation protein", choices=["Antifreeze protein", "Plastic degradation protein", "AI Generated protein", "7-bladed propeller fold", "custom"])
|
95 |
with gr.Row():
|
96 |
-
inp = gr.Textbox(label="Protein sequence", lines=3, value=DEFAULT_SEQ, placeholder="Paste your protein sequence here...")
|
97 |
-
|
98 |
-
btn = gr.Button(value = "🔬 Plot Predicted Structure ", size = 'sm')
|
99 |
-
with gr.Row():
|
100 |
-
PDB_string = gr.Textbox(
|
101 |
-
lines=4,
|
102 |
-
max_lines=120,
|
103 |
-
label="PDB_string Output"
|
104 |
-
)
|
105 |
with gr.Row():
|
106 |
output_file = gr.File(
|
107 |
label="Download PDB Structure as Text File",
|
|
|
93 |
</div>""")
|
94 |
name = gr.Dropdown(label="Choose a Sample Protein", value="Plastic degradation protein", choices=["Antifreeze protein", "Plastic degradation protein", "AI Generated protein", "7-bladed propeller fold", "custom"])
|
95 |
with gr.Row():
|
96 |
+
inp = gr.Textbox(label="Protein sequence", lines=3, value=DEFAULT_SEQ, placeholder="Paste your protein sequence here...", scale = 8)
|
97 |
+
btn = gr.Button(value = "Plot Predicted Structure ", scale = 2)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
98 |
with gr.Row():
|
99 |
output_file = gr.File(
|
100 |
label="Download PDB Structure as Text File",
|