Update dash_plotly_QC_scRNA.py
Browse files- dash_plotly_QC_scRNA.py +2 -2
dash_plotly_QC_scRNA.py
CHANGED
@@ -51,7 +51,7 @@ storage_options={'account_name': AZURE_STORAGE_ACCOUNT, 'account_key': AZURE_STO
|
|
51 |
external_stylesheets = ['https://codepen.io/chriddyp/pen/bWLwgP.css']
|
52 |
app = dash.Dash(__name__, external_stylesheets=external_stylesheets) #, requests_pathname_prefix='/dashboard1/'
|
53 |
|
54 |
-
|
55 |
#df = pl.DataFrame()
|
56 |
#abfs = AzureBlobFileSystem(account_name=accountname,account_key=accountkey)
|
57 |
#df = df.rename({"__index_level_0__": "Unnamed: 0"})
|
@@ -69,7 +69,7 @@ def update_dataset(dataset_chosen):
|
|
69 |
global df
|
70 |
filepath = f"az://data10xflex/{dataset_chosen}.parquet"
|
71 |
df = pl.read_parquet(filepath, storage_options=storage_options)
|
72 |
-
return
|
73 |
|
74 |
min_value = df[col_features].min()
|
75 |
max_value = df[col_features].max()
|
|
|
51 |
external_stylesheets = ['https://codepen.io/chriddyp/pen/bWLwgP.css']
|
52 |
app = dash.Dash(__name__, external_stylesheets=external_stylesheets) #, requests_pathname_prefix='/dashboard1/'
|
53 |
|
54 |
+
df = pl.read_parquet(filepath,storage_options=storage_options)
|
55 |
#df = pl.DataFrame()
|
56 |
#abfs = AzureBlobFileSystem(account_name=accountname,account_key=accountkey)
|
57 |
#df = df.rename({"__index_level_0__": "Unnamed: 0"})
|
|
|
69 |
global df
|
70 |
filepath = f"az://data10xflex/{dataset_chosen}.parquet"
|
71 |
df = pl.read_parquet(filepath, storage_options=storage_options)
|
72 |
+
return
|
73 |
|
74 |
min_value = df[col_features].min()
|
75 |
max_value = df[col_features].max()
|