Spaces:
Runtime error
Runtime error
Update app.py
Browse files
app.py
CHANGED
@@ -176,7 +176,7 @@ with gr.Blocks() as demo1:
|
|
176 |
print("Loaded sequences")
|
177 |
for seq in seqs:
|
178 |
pdb_path = f'{seq.replace(" ", "_").replace(",","")}.pdb'
|
179 |
-
html
|
180 |
print(f"Prediction for {seq} is over")
|
181 |
gr.HTML(html, label=f"{seq} structural representation")
|
182 |
|
|
|
176 |
print("Loaded sequences")
|
177 |
for seq in seqs:
|
178 |
pdb_path = f'{seq.replace(" ", "_").replace(",","")}.pdb'
|
179 |
+
html = fold_protein_wpdb(seqs[seq], pdb_path)
|
180 |
print(f"Prediction for {seq} is over")
|
181 |
gr.HTML(html, label=f"{seq} structural representation")
|
182 |
|