ervau commited on
Commit
2643ed2
·
1 Parent(s): 25123c8

better explain search process

Browse files
Files changed (1) hide show
  1. ProtHGT_app.py +2 -2
ProtHGT_app.py CHANGED
@@ -111,7 +111,7 @@ with st.sidebar:
111
 
112
  # User enters search term
113
  search_query = st.text_input(
114
- "1\\. Start typing a protein ID (at least 3 characters) and press Enter to see search results in the dropdown menu below",
115
  "",
116
  disabled=disabled
117
  )
@@ -130,7 +130,7 @@ with st.sidebar:
130
  selected_proteins = st.multiselect(
131
  "2\\. Select proteins from search results",
132
  options=filtered_proteins,
133
- placeholder="Start typing to search...",
134
  max_selections=100,
135
  disabled=disabled
136
  )
 
111
 
112
  # User enters search term
113
  search_query = st.text_input(
114
+ "1\\. Start typing a protein ID (at least 3 characters) and press Enter to see search results in the dropdown menu below (2)",
115
  "",
116
  disabled=disabled
117
  )
 
130
  selected_proteins = st.multiselect(
131
  "2\\. Select proteins from search results",
132
  options=filtered_proteins,
133
+ placeholder="Start typing a protein ID above (1) to see search results...",
134
  max_selections=100,
135
  disabled=disabled
136
  )