wenjun99 commited on
Commit
3afbb18
·
verified ·
1 Parent(s): 33573cd

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +2 -2
app.py CHANGED
@@ -197,8 +197,8 @@ with tab2:
197
  st.write("**Note:** Please upload CSV files **without column headers**, in ascending order from 3244 to 4455.")
198
  ef_file = st.file_uploader("Upload EF CSV", type=["csv"], key="ef")
199
 
200
- ascending_input_headers = sorted([h for h in mutation_site_headers if 3244 <= h <= 4455])
201
- high_index_headers = sorted([h for h in mutation_site_headers if h >= 4480])
202
 
203
  if ef_file:
204
  ef_df = pd.read_csv(ef_file, header=None)
 
197
  st.write("**Note:** Please upload CSV files **without column headers**, in ascending order from 3244 to 4455.")
198
  ef_file = st.file_uploader("Upload EF CSV", type=["csv"], key="ef")
199
 
200
+ ascending_input_headers = sorted([h for h in mutation_site_headers if 3244 <= h <= 4402])
201
+ high_index_headers = sorted([h for h in mutation_site_headers if h >= 4455])
202
 
203
  if ef_file:
204
  ef_df = pd.read_csv(ef_file, header=None)