Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -577,7 +577,7 @@ def update_df(file, progress=gr.Progress(track_tqdm=True)):
|
|
577 |
def create_html_report(df, file=None, progress=gr.Progress(track_tqdm=True)):
|
578 |
df_html = df.copy(deep=True)
|
579 |
|
580 |
-
cols_left = ['ID1', 'Compound', 'Scaffold', 'Scaffold SMILES', 'ID2', 'Y', 'Y^',]
|
581 |
cols_right = ['X1', 'X2']
|
582 |
cols_left = [col for col in cols_left if col in df_html.columns]
|
583 |
cols_right = [col for col in cols_right if col in df_html.columns]
|
|
|
577 |
def create_html_report(df, file=None, progress=gr.Progress(track_tqdm=True)):
|
578 |
df_html = df.copy(deep=True)
|
579 |
|
580 |
+
cols_left = ['N', 'ID1', 'Compound', 'Scaffold', 'Scaffold SMILES', 'ID2', 'Y', 'Y^',]
|
581 |
cols_right = ['X1', 'X2']
|
582 |
cols_left = [col for col in cols_left if col in df_html.columns]
|
583 |
cols_right = [col for col in cols_right if col in df_html.columns]
|