Spaces:
Running
Running
OleinikovasV
commited on
Commit
•
085cf46
1
Parent(s):
21a7e32
Update inference_app.py
Browse files- inference_app.py +4 -4
inference_app.py
CHANGED
@@ -43,12 +43,12 @@ with gr.Blocks() as app:
|
|
43 |
gr.Markdown("Title, description, and other information about the model")
|
44 |
with gr.Row():
|
45 |
with gr.Column():
|
46 |
-
|
47 |
-
|
48 |
input_protein_1 = gr.File(label="Input Protein 1 monomer (PDB)")
|
49 |
with gr.Column():
|
50 |
-
|
51 |
-
|
52 |
input_protein_2 = gr.File(label="Input Protein 2 structure (PDB)")
|
53 |
|
54 |
|
|
|
43 |
gr.Markdown("Title, description, and other information about the model")
|
44 |
with gr.Row():
|
45 |
with gr.Column():
|
46 |
+
input_seq_1 = gr.Textbox(lines=3, label="Input Protein 1 sequence (FASTA)")
|
47 |
+
input_msa_1 = gr.File(label="Input MSA Protein 1 (A3M)")
|
48 |
input_protein_1 = gr.File(label="Input Protein 1 monomer (PDB)")
|
49 |
with gr.Column():
|
50 |
+
input_seq_2 = gr.Textbox(lines=3, label="Input Protein 2 sequence (FASTA)")
|
51 |
+
input_msa_2 = gr.File(label="Input MSA Protein 2 (A3M)")
|
52 |
input_protein_2 = gr.File(label="Input Protein 2 structure (PDB)")
|
53 |
|
54 |
|