Spaces:
Runtime error
Runtime error
File size: 158 Bytes
d4a5429 |
1 2 3 4 5 6 7 8 |
import streamlit as st
def gettingInput():
seq = st.text_area("Enter the sequence")
seq = seq.replace("\n", '')
seq = seq.strip()
return seq
|