update text
Browse files
app.py
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
# Uncomment if run locally
|
2 |
import os
|
3 |
#import sys
|
|
|
4 |
#sys.path.append(os.path.abspath("../../../molvault"))
|
5 |
#sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))
|
6 |
|
@@ -17,7 +18,6 @@ import shutil
|
|
17 |
import time
|
18 |
from chemdata import get_ECFP_AND_FEATURES
|
19 |
import streamlit as st
|
20 |
-
import subprocess
|
21 |
import cairosvg
|
22 |
from rdkit import Chem
|
23 |
from rdkit.Chem import AllChem
|
@@ -476,11 +476,11 @@ if __name__ == "__main__":
|
|
476 |
|
477 |
with st.container():
|
478 |
st.header(":green[Start]")
|
479 |
-
st.
|
480 |
-
"Run all the steps in order to predict
|
481 |
)
|
482 |
st.subheader("Step 0: Which property do you want to predict?")
|
483 |
-
st.
|
484 |
"This app can predict the following properties of confidential molecules:"
|
485 |
)
|
486 |
|
@@ -497,7 +497,7 @@ if __name__ == "__main__":
|
|
497 |
|
498 |
# Display the HTML table
|
499 |
st.write(html, unsafe_allow_html=True)
|
500 |
-
st.
|
501 |
selected_label = st.selectbox(
|
502 |
"Choose a property",
|
503 |
task_options,
|
|
|
1 |
# Uncomment if run locally
|
2 |
import os
|
3 |
#import sys
|
4 |
+
#
|
5 |
#sys.path.append(os.path.abspath("../../../molvault"))
|
6 |
#sys.path.insert(0, os.path.abspath(os.path.join(os.path.dirname(__file__), "..")))
|
7 |
|
|
|
18 |
import time
|
19 |
from chemdata import get_ECFP_AND_FEATURES
|
20 |
import streamlit as st
|
|
|
21 |
import cairosvg
|
22 |
from rdkit import Chem
|
23 |
from rdkit.Chem import AllChem
|
|
|
476 |
|
477 |
with st.container():
|
478 |
st.header(":green[Start]")
|
479 |
+
st.markdown(
|
480 |
+
"Run all the steps in order to predict a property for a molecule of your choice. Why not all steps at once? Because we want to show you the steps involved in the process (see figure above)."
|
481 |
)
|
482 |
st.subheader("Step 0: Which property do you want to predict?")
|
483 |
+
st.markdown(
|
484 |
"This app can predict the following properties of confidential molecules:"
|
485 |
)
|
486 |
|
|
|
497 |
|
498 |
# Display the HTML table
|
499 |
st.write(html, unsafe_allow_html=True)
|
500 |
+
st.markdown("Which one do you want to predict?")
|
501 |
selected_label = st.selectbox(
|
502 |
"Choose a property",
|
503 |
task_options,
|