Spaces:
Running
on
Zero
Running
on
Zero
Anton Bushuiev
commited on
Commit
·
ce43754
1
Parent(s):
f88ab28
Add maintenance banner
Browse files
app.py
CHANGED
@@ -1,3 +1,23 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
import sys
|
2 |
import copy
|
3 |
import random
|
@@ -403,7 +423,7 @@ with app:
|
|
403 |
with gr.Row(equal_height=True):
|
404 |
pdb_code = gr.Textbox(placeholder="1BUI", label="PDB code", info="Protein Data Bank identifier for the structure (https://www.rcsb.org/)")
|
405 |
partners = gr.Textbox(placeholder="A,B,C", label="Partners", info="Protein chain identifiers in the PDB file forming the PPI interface (two or more)")
|
406 |
-
pdb_path = gr.File(file_count="single", label="Or .pdb file instead of PDB code")
|
407 |
|
408 |
with gr.Column():
|
409 |
gr.Markdown("## Mutations")
|
|
|
1 |
+
print("""
|
2 |
+
__ __ _ ___ _ _ _____ _____ _ _ _ _ _ ____ _____
|
3 |
+
| \/ | / \ |_ _| \ | |_ _| ____| \ | | / \ | \ | |/ ___| ____|
|
4 |
+
| |\/| | / _ \ | || \| | | | | _| | \| | / _ \ | \| | | | _|
|
5 |
+
| | | |/ ___ \ | || |\ | | | | |___| |\ |/ ___ \| |\ | |___| |___
|
6 |
+
|_| |_/_/ \_\___|_| \_| |_| |_____|_| \_/_/ \_\_| \_|\____|_____|
|
7 |
+
|
8 |
+
____ ____ _____ _ _ __
|
9 |
+
| __ )| _ \| ____| / \ | |/ /
|
10 |
+
| _ \| |_) | _| / _ \ | ' /
|
11 |
+
| |_) | _ <| |___ / ___ \| . \
|
12 |
+
|____/|_| \_\_____/_/ \_\_|\_\
|
13 |
+
|
14 |
+
|
15 |
+
Dear users, we are currently adapting the PPIformer Web for the GPU-based predictions.
|
16 |
+
Stay tuned for the much faster version of the web application!
|
17 |
+
|
18 |
+
The new verison of the web will be available withing several days.
|
19 |
+
""")
|
20 |
+
|
21 |
import sys
|
22 |
import copy
|
23 |
import random
|
|
|
423 |
with gr.Row(equal_height=True):
|
424 |
pdb_code = gr.Textbox(placeholder="1BUI", label="PDB code", info="Protein Data Bank identifier for the structure (https://www.rcsb.org/)")
|
425 |
partners = gr.Textbox(placeholder="A,B,C", label="Partners", info="Protein chain identifiers in the PDB file forming the PPI interface (two or more)")
|
426 |
+
pdb_path = gr.File(file_count="single", label="Or .pdb file instead of PDB code (your structure will only be used for this prediction and not stored anywhere)")
|
427 |
|
428 |
with gr.Column():
|
429 |
gr.Markdown("## Mutations")
|