Andrew Stirn commited on
Commit
592b51c
·
1 Parent(s): f7e003e

default test case

Browse files
Files changed (1) hide show
  1. app.py +4 -2
app.py CHANGED
@@ -11,8 +11,10 @@ def convert_df(df):
11
  # title and instructions
12
  st.title('TIGER Cas13 Efficacy Prediction')
13
  st.session_state['userInput'] = ''
14
- st.session_state['userInput'] = st.text_input('Enter a target transcript (or substring thereof):',
15
- placeholder='Upper or lower case')
 
 
16
 
17
  # input is too short
18
  if len(st.session_state['userInput']) < TARGET_LEN:
 
11
  # title and instructions
12
  st.title('TIGER Cas13 Efficacy Prediction')
13
  st.session_state['userInput'] = ''
14
+ st.session_state['userInput'] = st.text_input(
15
+ label='Enter a target transcript:',
16
+ value='ATGCAGGACGCGGAGAACGTGGCGGTGCCCGAGGCGGCCGAGGAGCGCGC',
17
+ placeholder='Upper or lower case')
18
 
19
  # input is too short
20
  if len(st.session_state['userInput']) < TARGET_LEN: