Update pages/Species_Prediction.py

#1
by djemec - opened
Files changed (1) hide show
  1. pages/Species_Prediction.py +1 -1
pages/Species_Prediction.py CHANGED
@@ -19,7 +19,7 @@ input_sequence = st.text_area('Enter your sequence to analyze',
19
  placeholder='aactaaaagactgacaaaatttttagtctctcgAATCGGGG...')
20
 
21
  if st.button('Predict', disabled=len(input_sequence)>= min_seq_length):
22
- status_text.text('Prediction Complete')
23
  species = 'Homo Sapien'
24
  st.markdown(f'The predicted squence is {species}')
25
 
 
19
  placeholder='aactaaaagactgacaaaatttttagtctctcgAATCGGGG...')
20
 
21
  if st.button('Predict', disabled=len(input_sequence)>= min_seq_length):
22
+ st.markdown('_Prediction Complete_')
23
  species = 'Homo Sapien'
24
  st.markdown(f'The predicted squence is {species}')
25