emmas96 commited on
Commit
031d745
·
1 Parent(s): a8c3bc5

add option to download results

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -202,8 +202,8 @@ def retrieval():
202
  mol = Chem.MolFromSmiles(results.loc[j + 5*i, 'SMILES'])
203
  mol_img = Chem.Draw.MolToImage(mol)
204
  st.image(mol_img, caption=f"{results.loc[j + 5*i, 'Prediction']:.2f}")
205
-
206
-
207
 
208
  page_names_to_func = {
209
  'Retrieval': retrieval,
 
202
  mol = Chem.MolFromSmiles(results.loc[j + 5*i, 'SMILES'])
203
  mol_img = Chem.Draw.MolToImage(mol)
204
  st.image(mol_img, caption=f"{results.loc[j + 5*i, 'Prediction']:.2f}")
205
+
206
+ st.download_button('Download Retrieved Drug Compounds', results.head(selected_k), 'retrieved_drugs.csv')
207
 
208
  page_names_to_func = {
209
  'Retrieval': retrieval,