Changed default molecules in text boxes
Browse files- src/app/layout.py +14 -6
src/app/layout.py
CHANGED
@@ -159,8 +159,16 @@ class LayoutMaker():
|
|
159 |
label="SMILES input for query molecules",
|
160 |
label_visibility="hidden",
|
161 |
key="query_textbox",
|
162 |
-
value="
|
163 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
164 |
)
|
165 |
elif input_choice == "CSV upload":
|
166 |
query_file = st.file_uploader(key="query_csv",
|
@@ -194,8 +202,8 @@ class LayoutMaker():
|
|
194 |
label="SMILES input for active support set molecules",
|
195 |
label_visibility="hidden",
|
196 |
key="active_textbox",
|
197 |
-
value="
|
198 |
-
|
199 |
)
|
200 |
elif active_input_choice == "CSV upload":
|
201 |
support_active_file = st.file_uploader(
|
@@ -224,8 +232,8 @@ class LayoutMaker():
|
|
224 |
label="SMILES input for inactive support set molecules",
|
225 |
label_visibility="hidden",
|
226 |
key="inactive_textbox",
|
227 |
-
value="CSc1nc(
|
228 |
-
|
229 |
)
|
230 |
elif inactive_input_choice == "CSV upload":
|
231 |
support_inactive_file = st.file_uploader(
|
|
|
159 |
label="SMILES input for query molecules",
|
160 |
label_visibility="hidden",
|
161 |
key="query_textbox",
|
162 |
+
value= "Cc1nc(N2CCN(Cc3ccccc3)CC2)c(C#N)c(=O)n1CC(=O)O, "
|
163 |
+
"N#Cc1c(-c2ccccc2)nc(-c2cccc3c(Br)cccc23)n(CC(=O)O)c1=O, "
|
164 |
+
"Cc1nc(N2CCC(Cc3ccccc3)CC2)c(C#N)c(=O)n1CC(=O)O, "
|
165 |
+
"CC(C)Sc1nc(C(C)(C)C)nc(OCC(=O)O)c1C#N, "
|
166 |
+
"Cc1nc(NCc2cccnc2)cc(=O)n1CC(=O)O, "
|
167 |
+
"COC(=O)c1c(SC)nc(C2CCCCC2)n(CC(=O)O)c1=O, "
|
168 |
+
"Cc1nc(NCc2cccnc2)c(C#N)c(=O)n1CC(=O)O, "
|
169 |
+
"CC(C)c1nc(SCc2ccccc2)c(C#N)c(=O)n1CC(=O)O, "
|
170 |
+
"N#Cc1c(OCC(=O)O)nc(-c2cccc3ccccc23)nc1-c1ccccc1, "
|
171 |
+
"COc1ccc2c(C(=S)N(C)CC(=O)O)cccc2c1C(F)(F)F"
|
172 |
)
|
173 |
elif input_choice == "CSV upload":
|
174 |
query_file = st.file_uploader(key="query_csv",
|
|
|
202 |
label="SMILES input for active support set molecules",
|
203 |
label_visibility="hidden",
|
204 |
key="active_textbox",
|
205 |
+
value="CC(C)(C)c1nc(OCC(=O)O)c(C#N)c(SCC2CCCCC2)n1, "
|
206 |
+
"Cc1nc(NCC2CCCCC2)c(C#N)c(=O)n1CC(=O)O"
|
207 |
)
|
208 |
elif active_input_choice == "CSV upload":
|
209 |
support_active_file = st.file_uploader(
|
|
|
232 |
label="SMILES input for inactive support set molecules",
|
233 |
label_visibility="hidden",
|
234 |
key="inactive_textbox",
|
235 |
+
value="CSc1nc(C2CCCCC2)n(CC(=O)O)c(=O)c1S(=O)(=O)c1ccccc1, "
|
236 |
+
"CSc1nc(C)nc(OCC(=O)O)c1C#N"
|
237 |
)
|
238 |
elif inactive_input_choice == "CSV upload":
|
239 |
support_inactive_file = st.file_uploader(
|