Spaces:
Sleeping
Sleeping
Update dash_plotly_QC_scRNA.py
Browse files- dash_plotly_QC_scRNA.py +4 -5
dash_plotly_QC_scRNA.py
CHANGED
@@ -65,11 +65,10 @@ tab0_content = html.Div([
|
|
65 |
@app.callback(
|
66 |
Input(component_id='dpdn1', component_property='value')
|
67 |
)
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
return
|
73 |
|
74 |
df = pl.read_parquet(filepath, storage_options=storage_options)
|
75 |
min_value = df[col_features].min()
|
|
|
65 |
@app.callback(
|
66 |
Input(component_id='dpdn1', component_property='value')
|
67 |
)
|
68 |
+
|
69 |
+
if f"az://{path_parquet}" != f"az://data10xflex/{dataset_chosen}.parquet":
|
70 |
+
global filepath
|
71 |
+
filepath = f"az://data10xflex/{dataset_chosen}.parquet"
|
|
|
72 |
|
73 |
df = pl.read_parquet(filepath, storage_options=storage_options)
|
74 |
min_value = df[col_features].min()
|