luost26 commited on
Commit
2461ead
1 Parent(s): 35ba8d6
Files changed (1) hide show
  1. app.py +9 -8
app.py CHANGED
@@ -304,7 +304,6 @@ def main():
304
 
305
  with left_col:
306
  output_display = st.empty()
307
- output_display.code('[INFO] Your job has been submitted. Please wait...\n')
308
 
309
  with right_col:
310
  result_molecule_display = st.empty()
@@ -312,14 +311,16 @@ def main():
312
  result_table_display = st.empty()
313
  result_download_btn = st.empty()
314
 
315
- config, config_path = get_config(
316
- save_dir = tempdir_path,
317
- mode = design_mode,
318
- cdrs = cdr_choices,
319
- num_samples = num_designs,
320
- )
321
-
322
  if not st.session_state.done:
 
 
 
 
 
 
 
 
 
323
  run_design(
324
  pdb_path = renum_path,
325
  config_path = config_path,
 
304
 
305
  with left_col:
306
  output_display = st.empty()
 
307
 
308
  with right_col:
309
  result_molecule_display = st.empty()
 
311
  result_table_display = st.empty()
312
  result_download_btn = st.empty()
313
 
 
 
 
 
 
 
 
314
  if not st.session_state.done:
315
+ output_display.code('[INFO] Your job has been submitted. Please wait...\n')
316
+
317
+ config, config_path = get_config(
318
+ save_dir = tempdir_path,
319
+ mode = design_mode,
320
+ cdrs = cdr_choices,
321
+ num_samples = num_designs,
322
+ )
323
+
324
  run_design(
325
  pdb_path = renum_path,
326
  config_path = config_path,