Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
SyedSyab
/
AllergenePrediction
like
0
Runtime error
App
Files
Files
Community
Fetching metadata from the HF Docker repository...
d4a5429
AllergenePrediction
/
frontend
/
gettingInput.py
SyedSyab
model added
d4a5429
about 1 year ago
raw
Copy download link
history
blame
Safe
158 Bytes
import
streamlit
as
st
def
gettingInput
():
seq = st.text_area(
"Enter the sequence"
)
seq = seq.replace(
"\n"
,
''
)
seq = seq.strip()
return
seq