Spaces:
Build error
Build error
Update app.py
Browse files
app.py
CHANGED
|
@@ -63,6 +63,14 @@ def embed_seq(encoder_name: str, seq: str, chunk: int) -> np.ndarray:
|
|
| 63 |
# βββββββββββββββββββ INTERFACE STREAMLIT βββββββββββββββββββ #
|
| 64 |
st.title("π¬ PrediΓ§Γ£o de FunΓ§Γ΅es de ProteΓnas")
|
| 65 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 66 |
fasta = st.text_area("Insere a sequΓͺncia FASTA:", height=200)
|
| 67 |
|
| 68 |
if fasta and st.button("Prever GO terms"):
|
|
|
|
| 63 |
# βββββββββββββββββββ INTERFACE STREAMLIT βββββββββββββββββββ #
|
| 64 |
st.title("π¬ PrediΓ§Γ£o de FunΓ§Γ΅es de ProteΓnas")
|
| 65 |
|
| 66 |
+
st.markdown("""
|
| 67 |
+
<style>
|
| 68 |
+
.stTextArea textarea {
|
| 69 |
+
width: 95% !important;
|
| 70 |
+
}
|
| 71 |
+
</style>
|
| 72 |
+
""", unsafe_allow_html=True)
|
| 73 |
+
|
| 74 |
fasta = st.text_area("Insere a sequΓͺncia FASTA:", height=200)
|
| 75 |
|
| 76 |
if fasta and st.button("Prever GO terms"):
|