|
|
|
|
|
|
|
|
|
import dash |
|
from dash import dcc, html, Output, Input, callback |
|
import plotly.express as px |
|
import dash_callback_chain |
|
import yaml |
|
import polars as pl |
|
import os |
|
pl.enable_string_cache(False) |
|
|
|
dash.register_page(__name__, location="sidebar") |
|
|
|
dataset = "datasingleron/keratinocytes/singleron_keratinocytes_ikcs_umap_clusres" |
|
|
|
|
|
config_fig = { |
|
'toImageButtonOptions': { |
|
'format': 'svg', |
|
'filename': 'custom_image', |
|
'height': 600, |
|
'width': 700, |
|
'scale': 1, |
|
} |
|
} |
|
from adlfs import AzureBlobFileSystem |
|
mountpount=os.environ['AZURE_MOUNT_POINT'], |
|
AZURE_STORAGE_ACCESS_KEY=os.getenv('AZURE_STORAGE_ACCESS_KEY') |
|
AZURE_STORAGE_ACCOUNT=os.getenv('AZURE_STORAGE_ACCOUNT') |
|
|
|
|
|
config_path = "./data/config.yaml" |
|
|
|
|
|
def read_config(filename): |
|
with open(filename, 'r') as yaml_file: |
|
config = yaml.safe_load(yaml_file) |
|
return config |
|
|
|
config = read_config(config_path) |
|
path_parquet = config.get("path_parquet") |
|
col_batch = config.get("col_batch") |
|
col_features = config.get("col_features") |
|
col_counts = config.get("col_counts") |
|
col_mt = config.get("col_mt") |
|
|
|
|
|
|
|
storage_options={'account_name': AZURE_STORAGE_ACCOUNT, 'account_key': AZURE_STORAGE_ACCESS_KEY,'anon': False} |
|
|
|
|
|
|
|
df = pl.read_parquet(f"az://{dataset}.parquet", storage_options=storage_options) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
min_value = df[col_features].min() |
|
max_value = df[col_features].max() |
|
|
|
min_value_2 = df[col_counts].min() |
|
min_value_2 = round(min_value_2) |
|
max_value_2 = df[col_counts].max() |
|
max_value_2 = round(max_value_2) |
|
|
|
min_value_3 = df[col_mt].min() |
|
min_value_3 = round(min_value_3, 1) |
|
max_value_3 = df[col_mt].max() |
|
max_value_3 = round(max_value_3, 1) |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
tab1_content = html.Div([ |
|
html.Label("Column chosen"), |
|
dcc.Dropdown(id='dpdn2', value="batch", multi=False, |
|
options=df.columns), |
|
html.Label("N Genes by Counts"), |
|
dcc.RangeSlider( |
|
id='range-slider_db3-1', |
|
step=250, |
|
value=[min_value, max_value], |
|
marks={i: str(i) for i in range(min_value, max_value + 1, 250)}, |
|
), |
|
dcc.Input(id='min-slider_db3-1', type='number', value=min_value, debounce=True), |
|
dcc.Input(id='max-slider_db3-1', type='number', value=max_value, debounce=True), |
|
html.Label("Total Counts"), |
|
dcc.RangeSlider( |
|
id='range-slider_db3-2', |
|
step=7500, |
|
value=[min_value_2, max_value_2], |
|
marks={i: str(i) for i in range(min_value_2, max_value_2 + 1, 7500)}, |
|
), |
|
dcc.Input(id='min-slider_db3-2', type='number', value=min_value_2, debounce=True), |
|
dcc.Input(id='max-slider_db3-2', type='number', value=max_value_2, debounce=True), |
|
html.Label("Percent Mitochondrial Genes"), |
|
dcc.RangeSlider( |
|
id='range-slider_db3-3', |
|
step=5, |
|
min=0, |
|
max=100, |
|
value=[min_value_3, max_value_3], |
|
), |
|
dcc.Input(id='min-slider_db3-3', type='number', value=min_value_3, debounce=True), |
|
dcc.Input(id='max-slider_db3-3', type='number', value=max_value_3, debounce=True), |
|
html.Div([ |
|
dcc.Graph(id='pie-graph_db3', figure={}, className='four columns',config=config_fig), |
|
dcc.Graph(id='my-graph_db3', figure={}, clickData=None, hoverData=None, |
|
className='four columns',config=config_fig |
|
), |
|
dcc.Graph(id='scatter-plot_db3', figure={}, className='four columns',config=config_fig) |
|
]), |
|
html.Div([ |
|
dcc.Graph(id='scatter-plot_db3-2', figure={}, className='four columns',config=config_fig) |
|
]), |
|
html.Div([ |
|
dcc.Graph(id='scatter-plot_db3-3', figure={}, className='four columns',config=config_fig) |
|
]), |
|
html.Div([ |
|
dcc.Graph(id='scatter-plot_db3-4', figure={}, className='four columns',config=config_fig) |
|
]), |
|
]) |
|
|
|
|
|
tab2_content = html.Div([ |
|
html.Div([ |
|
html.Label("S-cycle genes"), |
|
dcc.Dropdown(id='dpdn3', value="MCM5", multi=False, |
|
options=[ |
|
"MCM5", |
|
"PCNA", |
|
"TYMS", |
|
"FEN1", |
|
"MCM2", |
|
"MCM4", |
|
"RRM1", |
|
"UNG", |
|
"GINS2", |
|
"MCM6", |
|
"CDCA7", |
|
"DTL", |
|
"PRIM1", |
|
"UHRF1", |
|
"MLF1IP", |
|
"HELLS", |
|
"RFC2", |
|
"RPA2", |
|
"NASP", |
|
"RAD51AP1", |
|
"GMNN", |
|
"WDR76", |
|
"SLBP", |
|
"CCNE2", |
|
"UBR7", |
|
"POLD3", |
|
"MSH2", |
|
"ATAD2", |
|
"RAD51", |
|
"RRM2", |
|
"CDC45", |
|
"CDC6", |
|
"EXO1", |
|
"TIPIN", |
|
"DSCC1", |
|
"BLM", |
|
"CASP8AP2", |
|
"USP1", |
|
"CLSPN", |
|
"POLA1", |
|
"CHAF1B", |
|
"BRIP1", |
|
"E2F8" |
|
]), |
|
html.Label("G2M-cycle genes"), |
|
dcc.Dropdown(id='dpdn4', value="TOP2A", multi=False, |
|
options=[ |
|
'HMGB2', 'CDK1', 'NUSAP1', 'UBE2C', 'BIRC5', 'TPX2', 'TOP2A', 'NDC80', 'CKS2', 'NUF2', 'CKS1B', 'MKI67', 'TMPO', 'CENPF', 'TACC3', 'FAM64A', 'SMC4', 'CCNB2', 'CKAP2L', 'CKAP2', 'AURKB', 'BUB1', 'KIF11', 'ANP32E', 'TUBB4B', 'GTSE1', 'KIF20B', 'HJURP', 'CDCA3', 'HN1', 'CDC20', 'TTK', 'CDC25C', 'KIF2C', 'RANGAP1', 'NCAPD2', 'DLGAP5', 'CDCA2', 'CDCA8', 'ECT2', 'KIF23', 'HMMR', 'AURKA', 'PSRC1', 'ANLN', 'LBR', 'CKAP5', |
|
'CENPE', 'CTCF', 'NEK2', 'G2E3', 'GAS2L3', 'CBX5', 'CENPA' |
|
]), |
|
]), |
|
html.Div([ |
|
dcc.Graph(id='scatter-plot_db3-5', figure={}, className='three columns',config=config_fig) |
|
]), |
|
html.Div([ |
|
dcc.Graph(id='scatter-plot_db3-6', figure={}, className='three columns',config=config_fig) |
|
]), |
|
html.Div([ |
|
dcc.Graph(id='scatter-plot_db3-7', figure={}, className='three columns',config=config_fig) |
|
]), |
|
html.Div([ |
|
dcc.Graph(id='scatter-plot_db3-8', figure={}, className='three columns',config=config_fig) |
|
]), |
|
]) |
|
|
|
|
|
tab3_content = html.Div([ |
|
html.Div([ |
|
html.Label("UMAP condition 1"), |
|
dcc.Dropdown(id='dpdn5', value="batch", multi=False, |
|
options=df.columns), |
|
html.Label("UMAP condition 2"), |
|
dcc.Dropdown(id='dpdn6', value="n_genes_by_counts", multi=False, |
|
options=df.columns), |
|
html.Div([ |
|
dcc.Graph(id='scatter-plot_db3-9', figure={}, className='four columns',config=config_fig) |
|
]), |
|
html.Div([ |
|
dcc.Graph(id='scatter-plot_db3-10', figure={}, className='four columns',config=config_fig) |
|
]), |
|
html.Div([ |
|
dcc.Graph(id='scatter-plot_db3-11', figure={}, className='four columns',config=config_fig) |
|
]), |
|
html.Div([ |
|
dcc.Graph(id='my-graph_db32', figure={}, clickData=None, hoverData=None, |
|
className='four columns',config=config_fig |
|
) |
|
]), |
|
]), |
|
]) |
|
|
|
|
|
|
|
|
|
|
|
tab4_content = html.Div([ |
|
html.Div([ |
|
html.Label("Multi gene"), |
|
dcc.Dropdown(id='dpdn7', value=["PAX6","TP63","S100A9","KRT5","KRT14","KRT10"], multi=True, |
|
options=df.columns), |
|
]), |
|
html.Div([ |
|
dcc.Graph(id='scatter-plot_db3-12', figure={}, className='row',style={'width': '100vh', 'height': '90vh'}) |
|
]), |
|
]) |
|
|
|
|
|
layout = html.Div([ |
|
html.H1(f'Dataset analysis dashboard: {dataset}'), |
|
dcc.Tabs(id='tabs', style= {'width': 600, |
|
'font-size': '100%', |
|
'height': 50}, value='tab1',children=[ |
|
|
|
dcc.Tab(label='QC', value='tab1', children=tab1_content), |
|
dcc.Tab(label='Cell cycle', value='tab2', children=tab2_content), |
|
dcc.Tab(label='Custom', value='tab3', children=tab3_content), |
|
dcc.Tab(label='Multi dot', value='tab4', children=tab4_content), |
|
]), |
|
]) |
|
|
|
|
|
@callback( |
|
Output("min-slider_db3-1", "value"), |
|
Output("max-slider_db3-1", "value"), |
|
Output("min-slider_db3-2", "value"), |
|
Output("max-slider_db3-2", "value"), |
|
Output("min-slider_db3-3", "value"), |
|
Output("max-slider_db3-3", "value"), |
|
Input("min-slider_db3-1", "value"), |
|
Input("max-slider_db3-1", "value"), |
|
Input("min-slider_db3-2", "value"), |
|
Input("max-slider_db3-2", "value"), |
|
Input("min-slider_db3-3", "value"), |
|
Input("max-slider_db3-3", "value"), |
|
|
|
) |
|
def circular_callback(min_1, max_1, min_2, max_2, min_3, max_3): |
|
return min_1, max_1, min_2, max_2, min_3, max_3 |
|
|
|
@callback( |
|
Output('range-slider_db3-1', 'value'), |
|
Output('range-slider_db3-2', 'value'), |
|
Output('range-slider_db3-3', 'value'), |
|
Input('min-slider_db3-1', 'value'), |
|
Input('max-slider_db3-1', 'value'), |
|
Input('min-slider_db3-2', 'value'), |
|
Input('max-slider_db3-2', 'value'), |
|
Input('min-slider_db3-3', 'value'), |
|
Input('max-slider_db3-3', 'value'), |
|
|
|
) |
|
def update_slider_values(min_1, max_1, min_2, max_2, min_3, max_3): |
|
return [min_1, max_1], [min_2, max_2], [min_3, max_3] |
|
|
|
@callback( |
|
Output(component_id='my-graph_db3', component_property='figure'), |
|
Output(component_id='pie-graph_db3', component_property='figure'), |
|
Output(component_id='scatter-plot_db3', component_property='figure'), |
|
Output(component_id='scatter-plot_db3-2', component_property='figure'), |
|
Output(component_id='scatter-plot_db3-3', component_property='figure'), |
|
Output(component_id='scatter-plot_db3-4', component_property='figure'), |
|
Output(component_id='scatter-plot_db3-5', component_property='figure'), |
|
Output(component_id='scatter-plot_db3-6', component_property='figure'), |
|
Output(component_id='scatter-plot_db3-7', component_property='figure'), |
|
Output(component_id='scatter-plot_db3-8', component_property='figure'), |
|
Output(component_id='scatter-plot_db3-9', component_property='figure'), |
|
Output(component_id='scatter-plot_db3-10', component_property='figure'), |
|
Output(component_id='scatter-plot_db3-11', component_property='figure'), |
|
Output(component_id='scatter-plot_db3-12', component_property='figure'), |
|
Output(component_id='my-graph_db32', component_property='figure'), |
|
Input(component_id='dpdn2', component_property='value'), |
|
Input(component_id='dpdn3', component_property='value'), |
|
Input(component_id='dpdn4', component_property='value'), |
|
Input(component_id='dpdn5', component_property='value'), |
|
Input(component_id='dpdn6', component_property='value'), |
|
Input(component_id='dpdn7', component_property='value'), |
|
Input(component_id='range-slider_db3-1', component_property='value'), |
|
Input(component_id='range-slider_db3-2', component_property='value'), |
|
Input(component_id='range-slider_db3-3', component_property='value'), |
|
|
|
) |
|
|
|
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 = df[col_chosen].unique().to_list() |
|
dff = df.filter( |
|
(pl.col(col_chosen).cast(str).is_in(batch_chosen)) & |
|
(pl.col(col_features) >= range_value_1[0]) & |
|
(pl.col(col_features) <= range_value_1[1]) & |
|
(pl.col(col_counts) >= range_value_2[0]) & |
|
(pl.col(col_counts) <= range_value_2[1]) & |
|
(pl.col(col_mt) >= range_value_3[0]) & |
|
(pl.col(col_mt) <= range_value_3[1]) |
|
) |
|
|
|
|
|
dff = dff.with_columns(dff[col_chosen].cast(pl.Categorical)) |
|
|
|
dff = dff.sort(col_chosen) |
|
|
|
|
|
fig_violin_db3 = px.violin(data_frame=dff, x=col_chosen, y=col_features, box=True, points="all", |
|
color=col_chosen, hover_name=col_chosen,template="seaborn") |
|
|
|
|
|
total_count = pl.lit(len(dff)) |
|
category_counts = dff.group_by(col_chosen).agg(pl.col(col_chosen).count().alias("count")) |
|
category_counts = category_counts.with_columns(((pl.col("count") / total_count * 100).round(decimals=2)).alias("normalized_count")) |
|
|
|
|
|
|
|
|
|
|
|
total_cells = total_count |
|
pie_title = f'Percentage of Total Cells: {total_cells}' |
|
|
|
|
|
|
|
|
|
|
|
list_conds = condition3_chosen |
|
list_conds += [col_chosen] |
|
dff_pre = dff.select(list_conds) |
|
|
|
|
|
dff_long = dff_pre.melt(id_vars=col_chosen, variable_name="Gene", value_name="Mean expression") |
|
|
|
|
|
expression_means = dff_long.lazy().group_by([col_chosen, "Gene"]).agg(pl.mean("Mean expression")).collect() |
|
|
|
|
|
dff_long1 = dff_pre.melt(id_vars=col_chosen, variable_name="Gene") |
|
count = 1 |
|
dff_long2 = dff_long1.with_columns(pl.lit(count).alias("len")) |
|
dff_long3 = dff_long2.filter(pl.col("value") > 0).group_by([col_chosen, "Gene"]).agg(pl.sum("len").alias("len")) |
|
dff_long4 = dff_long2.group_by([col_chosen, "Gene"]).agg(pl.sum("len").alias("total")) |
|
dff_5 = dff_long4.join(dff_long3, on=[col_chosen,"Gene"], how="outer") |
|
result = dff_5.select([ |
|
pl.when((pl.col('len').is_not_null()) & (pl.col('total').is_not_null())) |
|
.then(pl.col('len') / pl.col('total')*100) |
|
.otherwise(None).alias("%"), |
|
]) |
|
result = result.with_columns(pl.col("%").fill_null(0)) |
|
dff_5[["percentage"]] = result[["%"]] |
|
dff_5 = dff_5.select(pl.col(col_chosen,"Gene","percentage")) |
|
|
|
|
|
|
|
expression_means = expression_means.join(dff_5, on=[col_chosen,"Gene"], how="inner") |
|
|
|
|
|
expression_means = expression_means.sort(col_chosen, descending=True) |
|
|
|
|
|
category_counts = category_counts.sort(col_chosen) |
|
|
|
fig_pie_db3 = px.pie(category_counts, values="normalized_count", names=col_chosen, labels=col_chosen, hole=.3, title=pie_title, template="seaborn") |
|
|
|
|
|
|
|
|
|
|
|
fig_scatter_db3 = px.scatter(data_frame=dff, x='X_umap-0', y='X_umap-1', color=col_chosen, |
|
labels={'X_umap-0': 'umap1' , 'X_umap-1': 'umap2'}, |
|
hover_name='batch',template="seaborn") |
|
|
|
fig_scatter_db3_2 = px.scatter(data_frame=dff, x='X_umap-0', y='X_umap-1', color=col_mt, |
|
labels={'X_umap-0': 'umap1' , 'X_umap-1': 'umap2'}, |
|
hover_name='batch',template="seaborn") |
|
|
|
fig_scatter_db3_3 = px.scatter(data_frame=dff, x='X_umap-0', y='X_umap-1', color=col_features, |
|
labels={'X_umap-0': 'umap1' , 'X_umap-1': 'umap2'}, |
|
hover_name='batch',template="seaborn") |
|
|
|
|
|
fig_scatter_db3_4 = px.scatter(data_frame=dff, x='X_umap-0', y='X_umap-1', color=col_counts, |
|
labels={'X_umap-0': 'umap1' , 'X_umap-1': 'umap2'}, |
|
hover_name='batch',template="seaborn") |
|
|
|
fig_scatter_db3_5 = px.scatter(data_frame=dff, x='X_umap-0', y='X_umap-1', color=s_chosen, |
|
labels={'X_umap-0': 'umap1' , 'X_umap-1': 'umap2'}, |
|
hover_name='batch', title="S-cycle gene:",template="seaborn") |
|
|
|
fig_scatter_db3_6 = px.scatter(data_frame=dff, x='X_umap-0', y='X_umap-1', color=g2m_chosen, |
|
labels={'X_umap-0': 'umap1' , 'X_umap-1': 'umap2'}, |
|
hover_name='batch', title="G2M-cycle gene:",template="seaborn") |
|
|
|
fig_scatter_db3_7 = px.scatter(data_frame=dff, x='X_umap-0', y='X_umap-1', color="S_score", |
|
labels={'X_umap-0': 'umap1' , 'X_umap-1': 'umap2'}, |
|
hover_name='batch', title="S score:",template="seaborn") |
|
|
|
fig_scatter_db3_8 = px.scatter(data_frame=dff, x='X_umap-0', y='X_umap-1', color="G2M_score", |
|
labels={'X_umap-0': 'umap1' , 'X_umap-1': 'umap2'}, |
|
hover_name='batch', title="G2M score:",template="seaborn") |
|
|
|
|
|
dff = dff.sort(condition1_chosen) |
|
|
|
fig_scatter_db3_9 = px.scatter(data_frame=dff, x='X_umap-0', y='X_umap-1', color=condition1_chosen, |
|
labels={'X_umap-0': 'umap1' , 'X_umap-1': 'umap2'}, |
|
hover_name='batch',template="seaborn") |
|
|
|
fig_scatter_db3_10 = px.scatter(data_frame=dff, x='X_umap-0', y='X_umap-1', color=condition2_chosen, |
|
labels={'X_umap-0': 'umap1' , 'X_umap-1': 'umap2'}, |
|
hover_name='batch',template="seaborn") |
|
|
|
fig_scatter_db3_11 = px.scatter(data_frame=dff, x=condition1_chosen, y=condition2_chosen, color=condition1_chosen, |
|
|
|
hover_name='batch',template="seaborn") |
|
|
|
fig_scatter_db3_12 = px.scatter(data_frame=expression_means, x="Gene", y=col_chosen, color="Mean expression", |
|
size="percentage", size_max = 20, |
|
|
|
hover_name=col_chosen,template="seaborn") |
|
|
|
fig_violin_db32 = px.violin(data_frame=dff, x=condition1_chosen, y=condition2_chosen, box=True, points="all", |
|
color=condition1_chosen, hover_name=condition1_chosen,template="seaborn") |
|
|
|
|
|
return fig_violin_db3, fig_pie_db3, fig_scatter_db3, fig_scatter_db3_2, fig_scatter_db3_3, fig_scatter_db3_4, fig_scatter_db3_5, fig_scatter_db3_6, fig_scatter_db3_7, fig_scatter_db3_8, fig_scatter_db3_9, fig_scatter_db3_10, fig_scatter_db3_11, fig_scatter_db3_12, fig_violin_db32 |
|
|
|
|
|
|
|
|
|
|
|
|