as-cle-bert commited on
Commit
56de590
Β·
verified Β·
1 Parent(s): 9aa3aab

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
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, pdb = 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
 
 
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