fix typo
Browse files
app.py
CHANGED
@@ -15,7 +15,7 @@ def compute_horvath_score(uploaded_file, clock_selection, coefficients, intercep
|
|
15 |
|
16 |
# the user data must have the required columns
|
17 |
if 'probes' not in user_data.columns or 'beta' not in user_data.columns:
|
18 |
-
return "Error: Uploaded CSV must have columns '
|
19 |
|
20 |
user_data.rename(columns={"probes": "Marker"}, inplace=True)
|
21 |
|
|
|
15 |
|
16 |
# the user data must have the required columns
|
17 |
if 'probes' not in user_data.columns or 'beta' not in user_data.columns:
|
18 |
+
return "Error: Uploaded CSV must have columns 'probes' and 'beta'."
|
19 |
|
20 |
user_data.rename(columns={"probes": "Marker"}, inplace=True)
|
21 |
|