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