Spaces:
Running
Running
Update app.py
Browse files
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?",('
|
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 |
|