wzkariampuzha commited on
Commit
baf5826
·
verified ·
1 Parent(s): d41a72b

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -96,7 +96,7 @@ st.markdown("This application was built by the [National Center for Advancing Tr
96
  #max_results is Maximum number of PubMed ID's to retrieve BEFORE filtering
97
  max_results = st.sidebar.number_input("Maximum number of articles to find in PubMed", min_value=1, max_value=None, value=50)
98
 
99
- filtering = st.sidebar.radio("What type of filtering would you like?",('Strict', 'Lenient', 'None')).lower()
100
 
101
  extract_diseases = st.sidebar.checkbox("Extract Rare Diseases", value=False)
102
 
 
96
  #max_results is Maximum number of PubMed ID's to retrieve BEFORE filtering
97
  max_results = st.sidebar.number_input("Maximum number of articles to find in PubMed", min_value=1, max_value=None, value=50)
98
 
99
+ filtering = st.sidebar.radio("What type of filtering would you like?",('Lenient', 'Strict', 'None')).lower()
100
 
101
  extract_diseases = st.sidebar.checkbox("Extract Rare Diseases", value=False)
102