Spaces:
Runtime error
Runtime error
Update inference_app.py
Browse files- inference_app.py +2 -2
inference_app.py
CHANGED
|
@@ -24,11 +24,11 @@ with gr.Blocks() as app:
|
|
| 24 |
with gr.Row():
|
| 25 |
with gr.Column():
|
| 26 |
input_seq_1 = gr.Textbox(lines=3, label="Input Protein 1 sequence (FASTA)")
|
| 27 |
-
input_msa_1 = gr.File(label="Input MSA Protein 1 (
|
| 28 |
input_protein_1 = gr.File(label="Input Protein 2 monomer (PDB)")
|
| 29 |
with gr.Column():
|
| 30 |
input_seq_2 = gr.Textbox(lines=3, label="Input Protein 2 sequence (FASTA)")
|
| 31 |
-
input_msa_2 = gr.File(label="Input MSA Protein 2 (
|
| 32 |
input_protein_2 = gr.File(label="Input Protein 2 structure (PDB)")
|
| 33 |
|
| 34 |
|
|
|
|
| 24 |
with gr.Row():
|
| 25 |
with gr.Column():
|
| 26 |
input_seq_1 = gr.Textbox(lines=3, label="Input Protein 1 sequence (FASTA)")
|
| 27 |
+
input_msa_1 = gr.File(label="Input MSA Protein 1 (A3M)")
|
| 28 |
input_protein_1 = gr.File(label="Input Protein 2 monomer (PDB)")
|
| 29 |
with gr.Column():
|
| 30 |
input_seq_2 = gr.Textbox(lines=3, label="Input Protein 2 sequence (FASTA)")
|
| 31 |
+
input_msa_2 = gr.File(label="Input MSA Protein 2 (A3M)")
|
| 32 |
input_protein_2 = gr.File(label="Input Protein 2 structure (PDB)")
|
| 33 |
|
| 34 |
|