include display image
Browse files
app.py
CHANGED
@@ -40,15 +40,24 @@ def about_page():
|
|
40 |
a given protein target. We demonstrate state-of-the-art performance over previous methods on multiple
|
41 |
well-known benchmarks, particularly in zero-shot settings for unseen protein targets.
|
42 |
"""
|
|
|
43 |
)
|
44 |
|
45 |
def display_dti():
|
46 |
-
|
47 |
smiles = st.text_input("Enter the SMILES of the query drug compound", value="CC(=O)OC1=CC=CC=C1C(=O)O", placeholder="CC(=O)OC1=CC=CC=C1C(=O)O")
|
48 |
|
49 |
if smiles:
|
50 |
mol = Chem.MolFromSmiles(smiles)
|
51 |
mol_img = Chem.Draw.MolToImage(mol)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
52 |
|
53 |
sequence = st.text_input("Enter the amino-acid sequence of the query protein target", value="HXHVWPVQDAKARFSEFLDACITEGPQIVSRRGAEEAVLVPIGEWRRLQAAA", placeholder="HXHVWPVQDAKARFSEFLDACITEGPQIVSRRGAEEAVLVPIGEWRRLQAAA")
|
54 |
|
|
|
40 |
a given protein target. We demonstrate state-of-the-art performance over previous methods on multiple
|
41 |
well-known benchmarks, particularly in zero-shot settings for unseen protein targets.
|
42 |
"""
|
43 |
+
st.image('hyper-dti.png')
|
44 |
)
|
45 |
|
46 |
def display_dti():
|
47 |
+
st.markdown('##')
|
48 |
smiles = st.text_input("Enter the SMILES of the query drug compound", value="CC(=O)OC1=CC=CC=C1C(=O)O", placeholder="CC(=O)OC1=CC=CC=C1C(=O)O")
|
49 |
|
50 |
if smiles:
|
51 |
mol = Chem.MolFromSmiles(smiles)
|
52 |
mol_img = Chem.Draw.MolToImage(mol)
|
53 |
+
col1, col2, col3 = st.columns(3)
|
54 |
+
with col1:
|
55 |
+
st.write("")
|
56 |
+
with col2:
|
57 |
+
st.image(mol_imgs, width = 140)
|
58 |
+
with col3:
|
59 |
+
st.write("")
|
60 |
+
st.markdown('##')
|
61 |
|
62 |
sequence = st.text_input("Enter the amino-acid sequence of the query protein target", value="HXHVWPVQDAKARFSEFLDACITEGPQIVSRRGAEEAVLVPIGEWRRLQAAA", placeholder="HXHVWPVQDAKARFSEFLDACITEGPQIVSRRGAEEAVLVPIGEWRRLQAAA")
|
63 |
|