osanseviero HF staff commited on
Commit
c9f16f1
β€’
1 Parent(s): 0670a40

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +3 -3
app.py CHANGED
@@ -109,7 +109,7 @@ def update(sequence=DEFAULT_SEQ):
109
  with open(tmp.name, "w") as f:
110
  f.write(pdb_string)
111
  print("File name", tmp.name)
112
- return molecule(tmp.name), tmp.name
113
 
114
 
115
  def suggest(option):
@@ -152,8 +152,8 @@ with demo:
152
  inp = gr.Textbox(label="Protein sequence", lines=3, value=DEFAULT_SEQ, placeholder="Write your protein sequence here...")
153
  btn = gr.Button("πŸ”¬ Predict Structure ").style(full_width=False)
154
  mol = gr.HTML(update)
155
- download = gr.File(label="Download file")
156
- btn.click(fn=update, inputs=inp, outputs=[mol, download])
157
 
158
  name.change(fn=suggest, inputs=name, outputs=inp)
159
  name.change(fn=lambda :"", inputs=None, outputs=mol)
 
109
  with open(tmp.name, "w") as f:
110
  f.write(pdb_string)
111
  print("File name", tmp.name)
112
+ return molecule(tmp.name)
113
 
114
 
115
  def suggest(option):
 
152
  inp = gr.Textbox(label="Protein sequence", lines=3, value=DEFAULT_SEQ, placeholder="Write your protein sequence here...")
153
  btn = gr.Button("πŸ”¬ Predict Structure ").style(full_width=False)
154
  mol = gr.HTML(update)
155
+ #download = gr.File(label="Download file")
156
+ btn.click(fn=update, inputs=inp, outputs=mol)
157
 
158
  name.change(fn=suggest, inputs=name, outputs=inp)
159
  name.change(fn=lambda :"", inputs=None, outputs=mol)