luost26 commited on
Commit
7f79ac0
1 Parent(s): ca964a3
Files changed (2) hide show
  1. README.md +1 -1
  2. app.py +2 -2
README.md CHANGED
@@ -4,7 +4,7 @@ emoji: 😻
4
  colorFrom: indigo
5
  colorTo: gray
6
  sdk: streamlit
7
- sdk_version: 1.13.0
8
  app_file: app.py
9
  pinned: false
10
  ---
 
4
  colorFrom: indigo
5
  colorTo: gray
6
  sdk: streamlit
7
+ sdk_version: 1.10.0
8
  app_file: app.py
9
  pinned: false
10
  ---
app.py CHANGED
@@ -236,7 +236,7 @@ def main():
236
  'Heavy': {'Chain': H_chain},
237
  'Light': {'Chain': L_chain},
238
  'Antigen': {'Chain': ','.join(Ag_chains)},
239
- }), use_container_width=True)
240
 
241
  form = st.form('design_form')
242
  with form:
@@ -329,7 +329,7 @@ def main():
329
  df_results, fpath_to_name = st.session_state.results
330
 
331
  df_cols = ['name'] + list(CDR_OPTIONS.values())
332
- result_table_display.dataframe(df_results[df_cols], use_container_width=True)
333
 
334
  display_pdb_path = result_select_widget.selectbox(
335
  label = "Visualize",
 
236
  'Heavy': {'Chain': H_chain},
237
  'Light': {'Chain': L_chain},
238
  'Antigen': {'Chain': ','.join(Ag_chains)},
239
+ }))
240
 
241
  form = st.form('design_form')
242
  with form:
 
329
  df_results, fpath_to_name = st.session_state.results
330
 
331
  df_cols = ['name'] + list(CDR_OPTIONS.values())
332
+ result_table_display.dataframe(df_results[df_cols])
333
 
334
  display_pdb_path = result_select_widget.selectbox(
335
  label = "Visualize",