Arts-of-coding commited on
Commit
01952ff
·
1 Parent(s): 15c4d6e

Update pages/Cornea_v1_integrated_scVI.py

Browse files
Files changed (1) hide show
  1. pages/Cornea_v1_integrated_scVI.py +6 -6
pages/Cornea_v1_integrated_scVI.py CHANGED
@@ -158,7 +158,7 @@ df = pl.scan_parquet(f"./data/{dataset}.parquet", storage_options=storage_option
158
  # ])
159
 
160
  # Create the second tab content with scatter-plot_db2-5 and scatter-plot_db2-6
161
- tab4_content = html.Div([
162
  html.Div([
163
  html.Label("S-cycle genes"),
164
  dcc.Dropdown(id='dpdn3', value="MCM5", multi=False,
@@ -229,7 +229,7 @@ tab4_content = html.Div([
229
  ])
230
 
231
  # Create the second tab content with scatter-plot_db2-5 and scatter-plot_db2-6
232
- tab2_content = html.Div([
233
  html.Div([
234
  html.Label("UMAP condition 1"),
235
  dcc.Dropdown(id='dpdn5', value="studies", multi=False,
@@ -258,7 +258,7 @@ tab2_content = html.Div([
258
  # ]),
259
 
260
 
261
- tab3_content = html.Div([
262
  html.Label("Column chosen"),
263
  dcc.Dropdown(id='dpdn2', value="integrated_cell_states", multi=False,
264
  options=df.columns),
@@ -280,9 +280,9 @@ layout = html.Div([
280
  'height': 50}, value='tab1',children=[
281
  #dcc.Tab(label='Dataset', value='tab0', children=tab0_content),
282
  #dcc.Tab(label='QC', value='tab1', children=tab1_content),
283
- dcc.Tab(label='UMAP visualisation', value='tab2', children=tab2_content),
284
- dcc.Tab(label='Multi dot', value='tab3', children=tab3_content),
285
- dcc.Tab(label='Cell cycle', value='tab4', children=tab4_content),
286
  ]),
287
  ])
288
 
 
158
  # ])
159
 
160
  # Create the second tab content with scatter-plot_db2-5 and scatter-plot_db2-6
161
+ tab2_content = html.Div([
162
  html.Div([
163
  html.Label("S-cycle genes"),
164
  dcc.Dropdown(id='dpdn3', value="MCM5", multi=False,
 
229
  ])
230
 
231
  # Create the second tab content with scatter-plot_db2-5 and scatter-plot_db2-6
232
+ tab3_content = html.Div([
233
  html.Div([
234
  html.Label("UMAP condition 1"),
235
  dcc.Dropdown(id='dpdn5', value="studies", multi=False,
 
258
  # ]),
259
 
260
 
261
+ tab4_content = html.Div([
262
  html.Label("Column chosen"),
263
  dcc.Dropdown(id='dpdn2', value="integrated_cell_states", multi=False,
264
  options=df.columns),
 
280
  'height': 50}, value='tab1',children=[
281
  #dcc.Tab(label='Dataset', value='tab0', children=tab0_content),
282
  #dcc.Tab(label='QC', value='tab1', children=tab1_content),
283
+ dcc.Tab(label='UMAP visualisation', value='tab3', children=tab3_content),
284
+ dcc.Tab(label='Multi dot', value='tab4', children=tab4_content),
285
+ dcc.Tab(label='Cell cycle', value='tab2', children=tab2_content),
286
  ]),
287
  ])
288