Spaces:
Runtime error
Runtime error
File size: 938 Bytes
d4a5429 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 |
import streamlit as st
def displayInstructionSection():
st.title("Alerginity Prediction of protien")
st.header("Instructions")
st.write("Allerginity Prediction of protien tools is specialy desinged for to find that the protien is allergin or nor, the machine learning model is specaily designed for a protien sequence, through this the model is able to predict its status")
st.markdown("""
- Select which type of seq you want to predict for
- Enter the sequnce in the input box
- Click the predict button
- wait for the magic
- and boom, you got the result
""")
st.write("There are many tools and servers for rediction the alergenity status for sequences you want to predict, but this tool gives you 94% accuracy.")
st.write("you can find the official documentation in the github repository here: http://github.com/syabahmad/alernonpred")
|