Update app.py
Browse files
app.py
CHANGED
@@ -148,7 +148,7 @@ if st.session_state.structure_info:
|
|
148 |
render_mol(info['pdb_string'])
|
149 |
|
150 |
st.subheader('plDDT Confidence Score')
|
151 |
-
st.write('plDDT is bench mark for scoring the confidence in prediction on a scale from 0-100%. 70% or more is really good!')
|
152 |
plddt_score = int(info["b_value"] * 100)
|
153 |
st.info(f'Average plDDT: {plddt_score}%')
|
154 |
|
@@ -158,8 +158,8 @@ if st.session_state.structure_info:
|
|
158 |
<div style='background-color: #e6f2ff; padding: 10px; border-radius: 5px; font-size: 0.8em;'>
|
159 |
<ol>
|
160 |
<li>Take a screenshot of the protein structure above.</li>
|
161 |
-
<li>Click the 'Share on X' button below to open a pre-filled protein seed-words and score.</li>
|
162 |
-
<li>
|
163 |
</ol>
|
164 |
</div>
|
165 |
""", unsafe_allow_html=True)
|
@@ -168,14 +168,17 @@ if st.session_state.structure_info:
|
|
168 |
st.markdown(f"[Share Results]({tweet_url})")
|
169 |
|
170 |
st.markdown("""
|
171 |
-
##
|
172 |
-
|
173 |
-
|
174 |
-
|
|
|
|
|
|
|
175 |
|
176 |
|
177 |
**Remember, this folding is based on randomly generated sequences. Interpret the results with caution.
|
178 |
-
Enjoy exploring the world of protein sequences!
|
179 |
""")
|
180 |
|
181 |
|
|
|
148 |
render_mol(info['pdb_string'])
|
149 |
|
150 |
st.subheader('plDDT Confidence Score')
|
151 |
+
st.write('plDDT is a bench mark for scoring the confidence level in protein folding prediction based on a scale from 0-100%. 70% or more is really good!')
|
152 |
plddt_score = int(info["b_value"] * 100)
|
153 |
st.info(f'Average plDDT: {plddt_score}%')
|
154 |
|
|
|
158 |
<div style='background-color: #e6f2ff; padding: 10px; border-radius: 5px; font-size: 0.8em;'>
|
159 |
<ol>
|
160 |
<li>Take a screenshot of the protein structure above.</li>
|
161 |
+
<li>Click the 'Share on X' button below to open a pre-filled post with your protein seed-words and score.</li>
|
162 |
+
<li>Be sure to attach the screenshot of your protein before your post!</li>
|
163 |
</ol>
|
164 |
</div>
|
165 |
""", unsafe_allow_html=True)
|
|
|
168 |
st.markdown(f"[Share Results]({tweet_url})")
|
169 |
|
170 |
st.markdown("""
|
171 |
+
## What to do next:
|
172 |
+
|
173 |
+
If you find an interesting protein from the sequence folding, you can explore it even further:
|
174 |
+
|
175 |
+
1. Click the 'analyze protein' button to use the [BLAST](https://blast.ncbi.nlm.nih.gov/Blast.cgi?PROGRAM=blastp&PAGE_TYPE=BlastSearch&LINK_LOC=blasthome) tool to see what you protein might do. The sequence identity will show how close of a match your protein is the the best match. *Note this can take several minutes
|
176 |
+
2. Download your protein data and visit the [Protein Data Bank (PDB)](https://www.rcsb.org/) to match your protein structure against known protein structures.
|
177 |
+
3. If you think you've discovered a new and useful protein message us!
|
178 |
|
179 |
|
180 |
**Remember, this folding is based on randomly generated sequences. Interpret the results with caution.
|
181 |
+
Enjoy exploring the world of protein sequences!
|
182 |
""")
|
183 |
|
184 |
|