Spaces:
Running
Running
David Prihoda
commited on
Commit
·
68bbda2
1
Parent(s):
5500725
Add note
Browse files- src/streamlit_app.py +4 -1
src/streamlit_app.py
CHANGED
@@ -10,9 +10,12 @@ st.set_page_config(layout="wide")
|
|
10 |
|
11 |
@st.cache_resource(show_spinner=False)
|
12 |
def init_db_cached(db_name, *args, **kwargs):
|
|
|
|
|
|
|
|
|
13 |
return init_db(db_name, *args, **kwargs)
|
14 |
|
15 |
-
|
16 |
st.write('# promb - protein humanness evaluation')
|
17 |
|
18 |
st.code('''pip install promb
|
|
|
10 |
|
11 |
@st.cache_resource(show_spinner=False)
|
12 |
def init_db_cached(db_name, *args, **kwargs):
|
13 |
+
st.info("""
|
14 |
+
Note: More human doesn't always mean "good". Peptides like "GGGGGGGGG" or "EKEKEKEKE" are human but you don\'t necessarily want your protein to contain those.
|
15 |
+
Make sure to check for sequence entropy, AlphaFold2 confidence, or other quality metrics.
|
16 |
+
""")
|
17 |
return init_db(db_name, *args, **kwargs)
|
18 |
|
|
|
19 |
st.write('# promb - protein humanness evaluation')
|
20 |
|
21 |
st.code('''pip install promb
|