Spaces:
Running
Running
Update pages/DLC_corg_scVI_integrated_week6-week16.py
Browse files
pages/DLC_corg_scVI_integrated_week6-week16.py
CHANGED
@@ -13,7 +13,7 @@ pl.enable_string_cache(False)
|
|
13 |
|
14 |
dash.register_page(__name__, location="sidebar")
|
15 |
|
16 |
-
dataset = "data10xflex/corg/
|
17 |
|
18 |
# Set custom resolution for plots:
|
19 |
config_fig = {
|
@@ -48,217 +48,73 @@ col_mt = config.get("col_mt")
|
|
48 |
|
49 |
#filepath = f"az://{path_parquet}"
|
50 |
|
51 |
-
storage_options={'account_name': AZURE_STORAGE_ACCOUNT, 'account_key': AZURE_STORAGE_ACCESS_KEY
|
52 |
#azfs = AzureBlobFileSystem(**storage_options )
|
53 |
|
54 |
# Load in multiple dataframes
|
55 |
df = pl.read_parquet(f"az://{dataset}.parquet", storage_options=storage_options)
|
56 |
|
57 |
-
#
|
58 |
-
#external_stylesheets = ['https://codepen.io/chriddyp/pen/bWLwgP.css']
|
59 |
-
#app = dash.Dash(__name__, use_pages=True) #, requests_pathname_prefix='/dashboard1/'
|
60 |
-
|
61 |
-
#df = pl.read_parquet(filepath,storage_options=storage_options)
|
62 |
-
#df = pl.DataFrame()
|
63 |
-
#abfs = AzureBlobFileSystem(account_name=accountname,account_key=accountkey)
|
64 |
-
#df = df.rename({"__index_level_0__": "Unnamed: 0"})
|
65 |
-
|
66 |
-
#df1 = pl.read_parquet(filepath, storage_options=storage_options)
|
67 |
-
|
68 |
-
#df2 = pl.read_parquet(f"az://data10xflex/{dataset_chosen}.parquet", storage_options=storage_options)
|
69 |
-
|
70 |
-
#tab0_content = html.Div([
|
71 |
-
# html.Label("Dataset chosen"),
|
72 |
-
# dcc.Dropdown(id='dpdn1', value="corg/10xflexcorg_umap_clusres", multi=False,
|
73 |
-
# options=["corg/10xflexcorg_umap_clusres","d1011/10xflexd1011_umap_clusres"])
|
74 |
-
#])
|
75 |
-
|
76 |
-
#@app.callback(
|
77 |
-
# Input(component_id='dpdn1', component_property='value')
|
78 |
-
#)
|
79 |
-
|
80 |
-
#def update_filepath(dpdn1):
|
81 |
-
# global df
|
82 |
-
# if str(f"az://data10xflex/{dpdn1}.parquet") != str(filepath):
|
83 |
-
# print("not identical filepath, chosing other")
|
84 |
-
# df2 = pl.read_parquet(f"az://data10xflex/{dpdn1}.parquet", storage_options=storage_options)
|
85 |
-
# df = df2
|
86 |
-
# return
|
87 |
-
|
88 |
-
#df = pl.read_parquet(filepath, storage_options=storage_options)
|
89 |
-
min_value = df[col_features].min()
|
90 |
-
max_value = df[col_features].max()
|
91 |
-
|
92 |
-
min_value_2 = df[col_counts].min()
|
93 |
-
min_value_2 = round(min_value_2)
|
94 |
-
max_value_2 = df[col_counts].max()
|
95 |
-
max_value_2 = round(max_value_2)
|
96 |
-
|
97 |
-
min_value_3 = df[col_mt].min()
|
98 |
-
min_value_3 = round(min_value_3, 1)
|
99 |
-
max_value_3 = df[col_mt].max()
|
100 |
-
max_value_3 = round(max_value_3, 1)
|
101 |
-
|
102 |
-
# Loads in the conditions specified in the yaml file
|
103 |
-
|
104 |
-
# Note: Future version perhaps all values from a column in the dataframe of the parquet file
|
105 |
-
# Note 2: This could also be a tsv of the categories and own specified colors
|
106 |
-
#conditions = df[col_batch].unique().to_list()
|
107 |
-
# Create the first tab content
|
108 |
-
# Add Sliders for three QC params: N genes by counts, total amount of reads and pct MT reads
|
109 |
-
|
110 |
-
tab1_content = html.Div([
|
111 |
-
html.Label("Column chosen"),
|
112 |
-
dcc.Dropdown(id='dpdn2', value="batch", multi=False,
|
113 |
-
options=df.columns),
|
114 |
-
html.Label("N Genes by Counts"),
|
115 |
-
dcc.RangeSlider(
|
116 |
-
id='range-slider_db6-1',
|
117 |
-
step=250,
|
118 |
-
value=[min_value, max_value],
|
119 |
-
marks={i: str(i) for i in range(min_value, max_value + 1, 250)},
|
120 |
-
),
|
121 |
-
dcc.Input(id='min-slider_db6-1', type='number', value=min_value, debounce=True),
|
122 |
-
dcc.Input(id='max-slider_db6-1', type='number', value=max_value, debounce=True),
|
123 |
-
html.Label("Total Counts"),
|
124 |
-
dcc.RangeSlider(
|
125 |
-
id='range-slider_db6-2',
|
126 |
-
step=7500,
|
127 |
-
value=[min_value_2, max_value_2],
|
128 |
-
marks={i: str(i) for i in range(min_value_2, max_value_2 + 1, 7500)},
|
129 |
-
),
|
130 |
-
dcc.Input(id='min-slider_db6-2', type='number', value=min_value_2, debounce=True),
|
131 |
-
dcc.Input(id='max-slider_db6-2', type='number', value=max_value_2, debounce=True),
|
132 |
-
html.Label("Percent Mitochondrial Genes"),
|
133 |
-
dcc.RangeSlider(
|
134 |
-
id='range-slider_db6-3',
|
135 |
-
step=5,
|
136 |
-
min=0,
|
137 |
-
max=100,
|
138 |
-
value=[min_value_3, max_value_3],
|
139 |
-
),
|
140 |
-
dcc.Input(id='min-slider_db6-3', type='number', value=min_value_3, debounce=True),
|
141 |
-
dcc.Input(id='max-slider_db6-3', type='number', value=max_value_3, debounce=True),
|
142 |
-
html.Div([
|
143 |
-
dcc.Graph(id='pie-graph_db6', figure={}, className='four columns',config=config_fig),
|
144 |
-
dcc.Graph(id='my-graph_db6', figure={}, clickData=None, hoverData=None,
|
145 |
-
className='four columns',config=config_fig
|
146 |
-
),
|
147 |
-
dcc.Graph(id='scatter-plot_db6', figure={}, className='four columns',config=config_fig)
|
148 |
-
]),
|
149 |
-
html.Div([
|
150 |
-
dcc.Graph(id='scatter-plot_db6-2', figure={}, className='four columns',config=config_fig)
|
151 |
-
]),
|
152 |
-
html.Div([
|
153 |
-
dcc.Graph(id='scatter-plot_db6-3', figure={}, className='four columns',config=config_fig)
|
154 |
-
]),
|
155 |
-
html.Div([
|
156 |
-
dcc.Graph(id='scatter-plot_db6-4', figure={}, className='four columns',config=config_fig)
|
157 |
-
]),
|
158 |
-
])
|
159 |
-
|
160 |
-
# Create the second tab content with scatter-plot_db6-5 and scatter-plot_db6-6
|
161 |
tab2_content = html.Div([
|
162 |
html.Div([
|
163 |
html.Label("S-cycle genes"),
|
164 |
dcc.Dropdown(id='dpdn3', value="MCM5", multi=False,
|
165 |
-
options=[
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
"FEN1",
|
170 |
-
"MCM2",
|
171 |
-
"MCM4",
|
172 |
-
"RRM1",
|
173 |
-
"UNG",
|
174 |
-
"GINS2",
|
175 |
-
"MCM6",
|
176 |
-
"CDCA7",
|
177 |
-
"DTL",
|
178 |
-
"PRIM1",
|
179 |
-
"UHRF1",
|
180 |
-
"MLF1IP",
|
181 |
-
"HELLS",
|
182 |
-
"RFC2",
|
183 |
-
"RPA2",
|
184 |
-
"NASP",
|
185 |
-
"RAD51AP1",
|
186 |
-
"GMNN",
|
187 |
-
"WDR76",
|
188 |
-
"SLBP",
|
189 |
-
"CCNE2",
|
190 |
-
"UBR7",
|
191 |
-
"POLD3",
|
192 |
-
"MSH2",
|
193 |
-
"ATAD2",
|
194 |
-
"RAD51",
|
195 |
-
"RRM2",
|
196 |
-
"CDC45",
|
197 |
-
"CDC6",
|
198 |
-
"EXO1",
|
199 |
-
"TIPIN",
|
200 |
-
"DSCC1",
|
201 |
-
"BLM",
|
202 |
-
"CASP8AP2",
|
203 |
-
"USP1",
|
204 |
-
"CLSPN",
|
205 |
-
"POLA1",
|
206 |
-
"CHAF1B",
|
207 |
-
"BRIP1",
|
208 |
-
"E2F8"
|
209 |
-
]),
|
210 |
html.Label("G2M-cycle genes"),
|
211 |
dcc.Dropdown(id='dpdn4', value="TOP2A", multi=False,
|
212 |
-
options=[
|
213 |
-
|
214 |
-
|
215 |
-
|
|
|
216 |
]),
|
217 |
html.Div([
|
218 |
-
dcc.Graph(id='scatter-
|
219 |
]),
|
220 |
html.Div([
|
221 |
-
dcc.Graph(id='scatter-
|
222 |
]),
|
223 |
html.Div([
|
224 |
-
dcc.Graph(id='scatter-
|
225 |
]),
|
226 |
html.Div([
|
227 |
-
dcc.Graph(id='scatter-
|
228 |
]),
|
229 |
])
|
230 |
|
231 |
-
# Create the second tab content with scatter-
|
232 |
tab3_content = html.Div([
|
233 |
html.Div([
|
234 |
html.Label("UMAP condition 1"),
|
235 |
-
dcc.Dropdown(id='dpdn5', value="
|
236 |
options=df.columns),
|
237 |
html.Label("UMAP condition 2"),
|
238 |
-
dcc.Dropdown(id='dpdn6', value="
|
239 |
options=df.columns),
|
240 |
html.Div([
|
241 |
-
dcc.Graph(id='scatter-
|
242 |
]),
|
243 |
html.Div([
|
244 |
-
dcc.Graph(id='scatter-
|
245 |
]),
|
246 |
html.Div([
|
247 |
-
dcc.Graph(id='scatter-
|
248 |
]),
|
249 |
html.Div([
|
250 |
-
dcc.Graph(id='my-
|
251 |
className='four columns',config=config_fig
|
252 |
)
|
253 |
]),
|
254 |
]),
|
255 |
])
|
256 |
-
# html.Div([
|
257 |
-
# dcc.Graph(id='scatter-plot_db6-12', figure={}, className='four columns',config=config_fig)
|
258 |
-
# ]),
|
259 |
-
|
260 |
|
261 |
tab4_content = html.Div([
|
|
|
|
|
|
|
262 |
html.Div([
|
263 |
html.Label("Multi gene"),
|
264 |
dcc.Dropdown(id='dpdn7', value=['PAX6', 'TP63', 'OTX2', 'SIX3', 'LHX2', 'SIX6', 'SOX2', 'PMEL',
|
@@ -268,7 +124,7 @@ tab4_content = html.Div([
|
|
268 |
options=df.columns),
|
269 |
]),
|
270 |
html.Div([
|
271 |
-
dcc.Graph(id='scatter-
|
272 |
]),
|
273 |
])
|
274 |
|
@@ -279,107 +135,42 @@ layout = html.Div([
|
|
279 |
'font-size': '100%',
|
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='
|
284 |
-
dcc.Tab(label='Custom', value='tab3', children=tab3_content),
|
285 |
dcc.Tab(label='Multi dot', value='tab4', children=tab4_content),
|
|
|
286 |
]),
|
287 |
])
|
288 |
|
289 |
-
# Define the circular callback
|
290 |
@callback(
|
291 |
-
Output(
|
292 |
-
Output(
|
293 |
-
Output(
|
294 |
-
Output(
|
295 |
-
Output(
|
296 |
-
Output(
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
Input("max-slider_db6-2", "value"),
|
301 |
-
Input("min-slider_db6-3", "value"),
|
302 |
-
Input("max-slider_db6-3", "value"),
|
303 |
-
|
304 |
-
)
|
305 |
-
def circular_callback(min_1, max_1, min_2, max_2, min_3, max_3):
|
306 |
-
return min_1, max_1, min_2, max_2, min_3, max_3
|
307 |
-
|
308 |
-
@callback(
|
309 |
-
Output('range-slider_db6-1', 'value'),
|
310 |
-
Output('range-slider_db6-2', 'value'),
|
311 |
-
Output('range-slider_db6-3', 'value'),
|
312 |
-
Input('min-slider_db6-1', 'value'),
|
313 |
-
Input('max-slider_db6-1', 'value'),
|
314 |
-
Input('min-slider_db6-2', 'value'),
|
315 |
-
Input('max-slider_db6-2', 'value'),
|
316 |
-
Input('min-slider_db6-3', 'value'),
|
317 |
-
Input('max-slider_db6-3', 'value'),
|
318 |
-
|
319 |
-
)
|
320 |
-
def update_slider_values(min_1, max_1, min_2, max_2, min_3, max_3):
|
321 |
-
return [min_1, max_1], [min_2, max_2], [min_3, max_3]
|
322 |
-
|
323 |
-
@callback(
|
324 |
-
Output(component_id='my-graph_db6', component_property='figure'),
|
325 |
-
Output(component_id='pie-graph_db6', component_property='figure'),
|
326 |
-
Output(component_id='scatter-plot_db6', component_property='figure'),
|
327 |
-
Output(component_id='scatter-plot_db6-2', component_property='figure'),
|
328 |
-
Output(component_id='scatter-plot_db6-3', component_property='figure'),
|
329 |
-
Output(component_id='scatter-plot_db6-4', component_property='figure'), # Add this new scatter plot
|
330 |
-
Output(component_id='scatter-plot_db6-5', component_property='figure'),
|
331 |
-
Output(component_id='scatter-plot_db6-6', component_property='figure'),
|
332 |
-
Output(component_id='scatter-plot_db6-7', component_property='figure'),
|
333 |
-
Output(component_id='scatter-plot_db6-8', component_property='figure'),
|
334 |
-
Output(component_id='scatter-plot_db6-9', component_property='figure'),
|
335 |
-
Output(component_id='scatter-plot_db6-10', component_property='figure'),
|
336 |
-
Output(component_id='scatter-plot_db6-11', component_property='figure'),
|
337 |
-
Output(component_id='scatter-plot_db6-12', component_property='figure'),
|
338 |
-
Output(component_id='my-graph_db62', component_property='figure'),
|
339 |
Input(component_id='dpdn2', component_property='value'),
|
340 |
Input(component_id='dpdn3', component_property='value'),
|
341 |
Input(component_id='dpdn4', component_property='value'),
|
342 |
Input(component_id='dpdn5', component_property='value'),
|
343 |
Input(component_id='dpdn6', component_property='value'),
|
344 |
Input(component_id='dpdn7', component_property='value'),
|
345 |
-
Input(component_id='range-slider_db6-1', component_property='value'),
|
346 |
-
Input(component_id='range-slider_db6-2', component_property='value'),
|
347 |
-
Input(component_id='range-slider_db6-3', component_property='value'),
|
348 |
|
349 |
)
|
350 |
|
351 |
-
def update_graph_and_pie_chart(col_chosen, s_chosen, g2m_chosen, condition1_chosen, condition2_chosen, condition3_chosen
|
352 |
batch_chosen = df[col_chosen].unique().to_list()
|
353 |
dff = df.filter(
|
354 |
-
(pl.col(col_chosen).cast(str).is_in(batch_chosen))
|
355 |
-
(pl.col(col_features) >= range_value_1[0]) &
|
356 |
-
(pl.col(col_features) <= range_value_1[1]) &
|
357 |
-
(pl.col(col_counts) >= range_value_2[0]) &
|
358 |
-
(pl.col(col_counts) <= range_value_2[1]) &
|
359 |
-
(pl.col(col_mt) >= range_value_3[0]) &
|
360 |
-
(pl.col(col_mt) <= range_value_3[1])
|
361 |
)
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
# Plot figures
|
369 |
-
fig_violin_db6 = px.violin(data_frame=dff, x=col_chosen, y=col_features, box=True, points="all",
|
370 |
-
color=col_chosen, hover_name=col_chosen,template="seaborn")
|
371 |
-
|
372 |
-
# Cache commonly used subexpressions
|
373 |
-
total_count = pl.lit(len(dff))
|
374 |
-
category_counts = dff.group_by(col_chosen).agg(pl.col(col_chosen).count().alias("count"))
|
375 |
-
category_counts = category_counts.with_columns(((pl.col("count") / total_count * 100).round(decimals=2)).alias("normalized_count"))
|
376 |
-
|
377 |
-
# Sort the dataframe
|
378 |
-
#category_counts = category_counts.sort(col_chosen) does not work check if the names are different ...
|
379 |
-
|
380 |
-
# Display the result
|
381 |
-
total_cells = total_count # Calculate total number of cells
|
382 |
-
pie_title = f'Percentage of Total Cells: {total_cells}' # Include total cells in the title
|
383 |
|
384 |
# Calculate the mean expression
|
385 |
|
@@ -391,9 +182,9 @@ def update_graph_and_pie_chart(col_chosen, s_chosen, g2m_chosen, condition1_chos
|
|
391 |
|
392 |
# Melt wide format DataFrame into long format
|
393 |
dff_long = dff_pre.melt(id_vars=col_chosen, variable_name="Gene", value_name="Mean expression")
|
394 |
-
|
395 |
# Calculate the mean expression levels for each gene in each region
|
396 |
-
expression_means = dff_long.lazy().group_by([col_chosen, "Gene"]).agg(pl.mean("Mean expression")).collect()
|
397 |
|
398 |
# Calculate the percentage total expressed
|
399 |
dff_long1 = dff_pre.melt(id_vars=col_chosen, variable_name="Gene")#.group_by(pl.all()).agg(pl.len())
|
@@ -412,82 +203,57 @@ def update_graph_and_pie_chart(col_chosen, s_chosen, g2m_chosen, condition1_chos
|
|
412 |
dff_5 = dff_5.select(pl.col(col_chosen,"Gene","percentage"))
|
413 |
|
414 |
# Final part to join the percentage expressed and mean expression levels
|
415 |
-
# TO DO
|
416 |
expression_means = expression_means.join(dff_5, on=[col_chosen,"Gene"], how="inner")
|
417 |
-
|
418 |
-
# Order the dataframe on ascending categories
|
419 |
-
expression_means = expression_means.sort(col_chosen, descending=True)
|
420 |
-
|
421 |
-
#expression_means = expression_means.select(["batch", "Gene", "Expression"] + condition3_chosen)
|
422 |
-
category_counts = category_counts.sort(col_chosen)
|
423 |
-
|
424 |
-
fig_pie_db6 = px.pie(category_counts, values="normalized_count", names=col_chosen, labels=col_chosen, hole=.3, title=pie_title, template="seaborn")
|
425 |
-
|
426 |
-
#labels = category_counts[col_chosen].to_list()
|
427 |
-
#values = category_counts["normalized_count"].to_list()
|
428 |
-
|
429 |
-
# Create the scatter plots
|
430 |
-
fig_scatter_db6 = px.scatter(data_frame=dff, x='X_umap-0', y='X_umap-1', color=col_chosen,
|
431 |
-
labels={'X_umap-0': 'umap1' , 'X_umap-1': 'umap2'},
|
432 |
-
hover_name='batch',template="seaborn")
|
433 |
-
|
434 |
-
fig_scatter_db6_2 = px.scatter(data_frame=dff, x='X_umap-0', y='X_umap-1', color=col_mt,
|
435 |
-
labels={'X_umap-0': 'umap1' , 'X_umap-1': 'umap2'},
|
436 |
-
hover_name='batch',template="seaborn")
|
437 |
-
|
438 |
-
fig_scatter_db6_3 = px.scatter(data_frame=dff, x='X_umap-0', y='X_umap-1', color=col_features,
|
439 |
-
labels={'X_umap-0': 'umap1' , 'X_umap-1': 'umap2'},
|
440 |
-
hover_name='batch',template="seaborn")
|
441 |
-
|
442 |
-
|
443 |
-
fig_scatter_db6_4 = px.scatter(data_frame=dff, x='X_umap-0', y='X_umap-1', color=col_counts,
|
444 |
-
labels={'X_umap-0': 'umap1' , 'X_umap-1': 'umap2'},
|
445 |
-
hover_name='batch',template="seaborn")
|
446 |
|
447 |
-
|
448 |
labels={'X_umap-0': 'umap1' , 'X_umap-1': 'umap2'},
|
449 |
-
hover_name=
|
450 |
|
451 |
-
|
452 |
labels={'X_umap-0': 'umap1' , 'X_umap-1': 'umap2'},
|
453 |
-
hover_name='
|
454 |
|
455 |
-
|
456 |
labels={'X_umap-0': 'umap1' , 'X_umap-1': 'umap2'},
|
457 |
-
hover_name='
|
458 |
|
459 |
-
|
460 |
labels={'X_umap-0': 'umap1' , 'X_umap-1': 'umap2'},
|
461 |
-
hover_name='
|
462 |
|
463 |
# Sort values of custom in-between
|
464 |
dff = dff.sort(condition1_chosen)
|
465 |
|
466 |
-
|
467 |
labels={'X_umap-0': 'umap1' , 'X_umap-1': 'umap2'},
|
468 |
-
hover_name=
|
|
|
|
|
469 |
|
470 |
-
|
471 |
labels={'X_umap-0': 'umap1' , 'X_umap-1': 'umap2'},
|
472 |
-
hover_name='
|
473 |
|
474 |
-
|
475 |
#labels={'X_umap-0': 'umap1' , 'X_umap-1': 'umap2'},
|
476 |
-
hover_name='
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
477 |
|
478 |
-
|
479 |
-
|
480 |
-
#labels={'X_umap-0': 'umap1' , 'X_umap-1': 'umap2'},
|
481 |
-
hover_name=col_chosen,template="seaborn")
|
482 |
-
|
483 |
-
fig_violin_db62 = px.violin(data_frame=dff, x=condition1_chosen, y=condition2_chosen, box=True, points="all",
|
484 |
-
color=condition1_chosen, hover_name=condition1_chosen,template="seaborn")
|
485 |
-
|
486 |
|
487 |
-
return fig_violin_db6, fig_pie_db6, fig_scatter_db6, fig_scatter_db6_2, fig_scatter_db6_3, fig_scatter_db6_4, fig_scatter_db6_5, fig_scatter_db6_6, fig_scatter_db6_7, fig_scatter_db6_8, fig_scatter_db6_9, fig_scatter_db6_10, fig_scatter_db6_11, fig_scatter_db6_12, fig_violin_db62
|
488 |
|
489 |
-
#
|
490 |
-
# Now create your regular FASTAPI application
|
491 |
|
492 |
-
#
|
493 |
-
# app.run_server(debug=False, use_reloader=False, host='0.0.0.0', port=5000) #
|
|
|
13 |
|
14 |
dash.register_page(__name__, location="sidebar")
|
15 |
|
16 |
+
dataset = "data10xflex/corg/all_polars"
|
17 |
|
18 |
# Set custom resolution for plots:
|
19 |
config_fig = {
|
|
|
48 |
|
49 |
#filepath = f"az://{path_parquet}"
|
50 |
|
51 |
+
storage_options={'account_name': AZURE_STORAGE_ACCOUNT, 'account_key': AZURE_STORAGE_ACCESS_KEY} #,'anon': False
|
52 |
#azfs = AzureBlobFileSystem(**storage_options )
|
53 |
|
54 |
# Load in multiple dataframes
|
55 |
df = pl.read_parquet(f"az://{dataset}.parquet", storage_options=storage_options)
|
56 |
|
57 |
+
# Create the second tab content with scatter-plot_db2-5 and scatter-plot_db2-6
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
58 |
tab2_content = html.Div([
|
59 |
html.Div([
|
60 |
html.Label("S-cycle genes"),
|
61 |
dcc.Dropdown(id='dpdn3', value="MCM5", multi=False,
|
62 |
+
options=["MCM5","PCNA","TYMS","FEN1","MCM2","MCM4","RRM1","UNG","GINS2","MCM6","CDCA7","DTL",
|
63 |
+
"PRIM1","UHRF1","HELLS","RFC2","RPA2","NASP","RAD51AP1","GMNN","WDR76","SLBP","CCNE2","UBR7",
|
64 |
+
"POLD3","MSH2","ATAD2","RAD51","RRM2","CDC45","CDC6","EXO1","TIPIN","DSCC1","BLM","CASP8AP2",
|
65 |
+
"USP1","CLSPN","POLA1","CHAF1B","BRIP1","E2F8"]),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
66 |
html.Label("G2M-cycle genes"),
|
67 |
dcc.Dropdown(id='dpdn4', value="TOP2A", multi=False,
|
68 |
+
options=["HMGB2","CDK1","NUSAP1","UBE2C","BIRC5","TPX2","TOP2A","NDC80","CKS2","NUF2","CKS1B","MKI67",
|
69 |
+
"TMPO","CENPF","TACC3","SMC4","CCNB2","CKAP2L","CKAP2","AURKB","BUB1","KIF11","ANP32E","TUBB4B",
|
70 |
+
"GTSE1","KIF20B","HJURP","CDCA3","CDC20","TTK","CDC25C","KIF2C","RANGAP1","NCAPD2","DLGAP5","CDCA2",
|
71 |
+
"CDCA8","ECT2","KIF23","HMMR","AURKA","PSRC1","ANLN","LBR","CKAP5","CENPE","CTCF","NEK2","G2E3",
|
72 |
+
"GAS2L3","CBX5","CENPA"]),
|
73 |
]),
|
74 |
html.Div([
|
75 |
+
dcc.Graph(id='scatter-plot_db2-5', figure={}, className='three columns',config=config_fig)
|
76 |
]),
|
77 |
html.Div([
|
78 |
+
dcc.Graph(id='scatter-plot_db2-6', figure={}, className='three columns',config=config_fig)
|
79 |
]),
|
80 |
html.Div([
|
81 |
+
dcc.Graph(id='scatter-plot_db2-7', figure={}, className='three columns',config=config_fig)
|
82 |
]),
|
83 |
html.Div([
|
84 |
+
dcc.Graph(id='scatter-plot_db2-8', figure={}, className='three columns',config=config_fig)
|
85 |
]),
|
86 |
])
|
87 |
|
88 |
+
# Create the second tab content with scatter-plot_db2-5 and scatter-plot_db2-6
|
89 |
tab3_content = html.Div([
|
90 |
html.Div([
|
91 |
html.Label("UMAP condition 1"),
|
92 |
+
dcc.Dropdown(id='dpdn5', value="sample", multi=False,
|
93 |
options=df.columns),
|
94 |
html.Label("UMAP condition 2"),
|
95 |
+
dcc.Dropdown(id='dpdn6', value="PAX6", multi=False,
|
96 |
options=df.columns),
|
97 |
html.Div([
|
98 |
+
dcc.Graph(id='scatter-plot_db2-9', figure={}, className='four columns', hoverData=None ,config=config_fig)
|
99 |
]),
|
100 |
html.Div([
|
101 |
+
dcc.Graph(id='scatter-plot_db2-10', figure={}, className='four columns', hoverData=None, config=config_fig)
|
102 |
]),
|
103 |
html.Div([
|
104 |
+
dcc.Graph(id='scatter-plot_db2-11', figure={}, className='four columns',config=config_fig)
|
105 |
]),
|
106 |
html.Div([
|
107 |
+
dcc.Graph(id='my-graph_db22', figure={}, clickData=None, hoverData=None,
|
108 |
className='four columns',config=config_fig
|
109 |
)
|
110 |
]),
|
111 |
]),
|
112 |
])
|
|
|
|
|
|
|
|
|
113 |
|
114 |
tab4_content = html.Div([
|
115 |
+
html.Label("Column chosen"),
|
116 |
+
dcc.Dropdown(id='dpdn2', value="leiden_res_1.35", multi=False,
|
117 |
+
options=df.columns),
|
118 |
html.Div([
|
119 |
html.Label("Multi gene"),
|
120 |
dcc.Dropdown(id='dpdn7', value=['PAX6', 'TP63', 'OTX2', 'SIX3', 'LHX2', 'SIX6', 'SOX2', 'PMEL',
|
|
|
124 |
options=df.columns),
|
125 |
]),
|
126 |
html.Div([
|
127 |
+
dcc.Graph(id='scatter-plot_db2-12', figure={}, className='row',style={'width': '100vh', 'height': '90vh'})
|
128 |
]),
|
129 |
])
|
130 |
|
|
|
135 |
'font-size': '100%',
|
136 |
'height': 50}, value='tab1',children=[
|
137 |
#dcc.Tab(label='Dataset', value='tab0', children=tab0_content),
|
138 |
+
#dcc.Tab(label='QC', value='tab1', children=tab1_content),
|
139 |
+
dcc.Tab(label='UMAP visualisation', value='tab3', children=tab3_content),
|
|
|
140 |
dcc.Tab(label='Multi dot', value='tab4', children=tab4_content),
|
141 |
+
dcc.Tab(label='Cell cycle', value='tab2', children=tab2_content),
|
142 |
]),
|
143 |
])
|
144 |
|
|
|
145 |
@callback(
|
146 |
+
Output(component_id='scatter-plot_db2-5', component_property='figure'),
|
147 |
+
Output(component_id='scatter-plot_db2-6', component_property='figure'),
|
148 |
+
Output(component_id='scatter-plot_db2-7', component_property='figure'),
|
149 |
+
Output(component_id='scatter-plot_db2-8', component_property='figure'),
|
150 |
+
Output(component_id='scatter-plot_db2-9', component_property='figure'),
|
151 |
+
Output(component_id='scatter-plot_db2-10', component_property='figure'),
|
152 |
+
Output(component_id='scatter-plot_db2-11', component_property='figure'),
|
153 |
+
Output(component_id='scatter-plot_db2-12', component_property='figure'),
|
154 |
+
Output(component_id='my-graph_db22', component_property='figure'),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
155 |
Input(component_id='dpdn2', component_property='value'),
|
156 |
Input(component_id='dpdn3', component_property='value'),
|
157 |
Input(component_id='dpdn4', component_property='value'),
|
158 |
Input(component_id='dpdn5', component_property='value'),
|
159 |
Input(component_id='dpdn6', component_property='value'),
|
160 |
Input(component_id='dpdn7', component_property='value'),
|
|
|
|
|
|
|
161 |
|
162 |
)
|
163 |
|
164 |
+
def update_graph_and_pie_chart(col_chosen, s_chosen, g2m_chosen, condition1_chosen, condition2_chosen, condition3_chosen): #, range_value_1, range_value_2, range_value_3 batch_chosen,
|
165 |
batch_chosen = df[col_chosen].unique().to_list()
|
166 |
dff = df.filter(
|
167 |
+
(pl.col(col_chosen).cast(str).is_in(batch_chosen)) #&
|
|
|
|
|
|
|
|
|
|
|
|
|
168 |
)
|
169 |
+
# Select ordering of plots
|
170 |
+
if condition1_chosen == "integrated_cell_states":
|
171 |
+
cat_ord= {condition1_chosen: natsorted(dff[condition1_chosen].unique())}
|
172 |
+
else:
|
173 |
+
cat_ord= {condition1_chosen: natsorted(dff[condition1_chosen].unique())}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
174 |
|
175 |
# Calculate the mean expression
|
176 |
|
|
|
182 |
|
183 |
# Melt wide format DataFrame into long format
|
184 |
dff_long = dff_pre.melt(id_vars=col_chosen, variable_name="Gene", value_name="Mean expression")
|
185 |
+
|
186 |
# Calculate the mean expression levels for each gene in each region
|
187 |
+
expression_means = dff_long.lazy().group_by([col_chosen, "Gene"]).agg(pl.mean("Mean expression")).collect() #
|
188 |
|
189 |
# Calculate the percentage total expressed
|
190 |
dff_long1 = dff_pre.melt(id_vars=col_chosen, variable_name="Gene")#.group_by(pl.all()).agg(pl.len())
|
|
|
203 |
dff_5 = dff_5.select(pl.col(col_chosen,"Gene","percentage"))
|
204 |
|
205 |
# Final part to join the percentage expressed and mean expression levels
|
|
|
206 |
expression_means = expression_means.join(dff_5, on=[col_chosen,"Gene"], how="inner")
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
207 |
|
208 |
+
fig_scatter_db2_5 = px.scatter(data_frame=dff, x='X_umap-0', y='X_umap-1', color=s_chosen,
|
209 |
labels={'X_umap-0': 'umap1' , 'X_umap-1': 'umap2'},
|
210 |
+
hover_name=None, title="S-cycle gene:",template="seaborn")
|
211 |
|
212 |
+
fig_scatter_db2_6 = px.scatter(data_frame=dff, x='X_umap-0', y='X_umap-1', color=g2m_chosen,
|
213 |
labels={'X_umap-0': 'umap1' , 'X_umap-1': 'umap2'},
|
214 |
+
hover_name='sample', title="G2M-cycle gene:",template="seaborn")
|
215 |
|
216 |
+
fig_scatter_db2_7 = px.scatter(data_frame=dff, x='X_umap-0', y='X_umap-1', color="S_score",
|
217 |
labels={'X_umap-0': 'umap1' , 'X_umap-1': 'umap2'},
|
218 |
+
hover_name='sample', title="S score:",template="seaborn")
|
219 |
|
220 |
+
fig_scatter_db2_8 = px.scatter(data_frame=dff, x='X_umap-0', y='X_umap-1', color="G2M_score",
|
221 |
labels={'X_umap-0': 'umap1' , 'X_umap-1': 'umap2'},
|
222 |
+
hover_name='sample', title="G2M score:",template="seaborn")
|
223 |
|
224 |
# Sort values of custom in-between
|
225 |
dff = dff.sort(condition1_chosen)
|
226 |
|
227 |
+
fig_scatter_db2_9 = px.scatter(data_frame=dff, x='X_umap-0', y='X_umap-1', color=condition1_chosen,
|
228 |
labels={'X_umap-0': 'umap1' , 'X_umap-1': 'umap2'},
|
229 |
+
hover_name=None,hover_data = None, template="seaborn",category_orders=cat_ord)
|
230 |
+
fig_scatter_db2_9.update_traces(hoverinfo='none', hovertemplate=None)
|
231 |
+
fig_scatter_db2_9.update_layout(hovermode=False)
|
232 |
|
233 |
+
fig_scatter_db2_10 = px.scatter(data_frame=dff, x='X_umap-0', y='X_umap-1', color=condition2_chosen,
|
234 |
labels={'X_umap-0': 'umap1' , 'X_umap-1': 'umap2'},
|
235 |
+
hover_name='sample',template="seaborn")
|
236 |
|
237 |
+
fig_scatter_db2_11 = px.scatter(data_frame=dff, x=condition1_chosen, y=condition2_chosen, color=condition1_chosen,
|
238 |
#labels={'X_umap-0': 'umap1' , 'X_umap-1': 'umap2'},
|
239 |
+
hover_name='sample',template="seaborn",category_orders=cat_ord)
|
240 |
+
|
241 |
+
# Reorder categories on natural sorting or on the integrated cell state order of the paper
|
242 |
+
if col_chosen == "integrated_cell_states":
|
243 |
+
fig_scatter_db2_12 = px.scatter(data_frame=expression_means, x="Gene", y=col_chosen, color="Mean expression",
|
244 |
+
size="percentage", size_max = 20,
|
245 |
+
#labels={'X_umap-0': 'umap1' , 'X_umap-1': 'umap2'},
|
246 |
+
hover_name=col_chosen,template="seaborn",category_orders={col_chosen: natsorted(expression_means[col_chosen].unique()),"Gene": condition3_chosen})
|
247 |
+
else:
|
248 |
+
fig_scatter_db2_12 = px.scatter(data_frame=expression_means, x="Gene", y=col_chosen, color="Mean expression",
|
249 |
+
size="percentage", size_max = 20,
|
250 |
+
#labels={'X_umap-0': 'umap1' , 'X_umap-1': 'umap2'},
|
251 |
+
hover_name=col_chosen,template="seaborn",category_orders={col_chosen: natsorted(expression_means[col_chosen].unique()),"Gene": condition3_chosen})
|
252 |
|
253 |
+
fig_violin_db22 = px.violin(data_frame=dff, x=condition1_chosen, y=condition2_chosen, box=True, points="all",
|
254 |
+
color=condition1_chosen, hover_name=condition1_chosen,template="seaborn",category_orders=cat_ord)
|
|
|
|
|
|
|
|
|
|
|
|
|
255 |
|
|
|
256 |
|
257 |
+
return fig_scatter_db2_5, fig_scatter_db2_6, fig_scatter_db2_7, fig_scatter_db2_8, fig_scatter_db2_9, fig_scatter_db2_10, fig_scatter_db2_11, fig_scatter_db2_12, fig_violin_db22 #fig_violin_db2, fig_pie_db2, fig_scatter_db2, fig_scatter_db2_2, fig_scatter_db2_3, fig_scatter_db2_4,
|
|
|
258 |
|
259 |
+
# Set http://localhost:5000/ in web browser
|
|