Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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 <=
|
201 |
-
high_index_headers = sorted([h for h in mutation_site_headers if h >=
|
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)
|