add option to download results
Browse files
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,
|