Spaces:
Sleeping
Sleeping
Update pages/integratedsuture.py
Browse files
pages/integratedsuture.py
CHANGED
@@ -316,7 +316,7 @@ tab4_content = html.Div([
|
|
316 |
options=df.columns),
|
317 |
]),
|
318 |
html.Div([
|
319 |
-
dcc.Graph(id='scatter-plot-12', figure={}, className='
|
320 |
]),
|
321 |
])
|
322 |
|
@@ -330,7 +330,9 @@ layout = html.Div([
|
|
330 |
dcc.Tab(label='QC', value='tab1', children=tab1_content),
|
331 |
dcc.Tab(label='Cell cycle', value='tab2', children=tab2_content),
|
332 |
dcc.Tab(label='Custom', value='tab3', children=tab3_content),
|
333 |
-
dcc.Tab(label='Multi dot', value='tab4', children=tab4_content
|
|
|
|
|
334 |
]),
|
335 |
])
|
336 |
|
@@ -524,11 +526,7 @@ def update_graph_and_pie_chart(col_chosen, s_chosen, g2m_chosen, condition1_chos
|
|
524 |
fig_scatter_12 = px.scatter(data_frame=expression_means, x="Gene", y=col_chosen, color="Mean expression",
|
525 |
size="percentage", size_max = 20,
|
526 |
#labels={'X_umap-0': 'umap1' , 'X_umap-1': 'umap2'},
|
527 |
-
hover_name=col_chosen,template="seaborn"
|
528 |
-
t: 5, //top margin
|
529 |
-
l: 5, //left margin
|
530 |
-
r: 5, //right margin
|
531 |
-
b: 5 //bottom margin)
|
532 |
|
533 |
fig_violin2 = px.violin(data_frame=dff, x=condition1_chosen, y=condition2_chosen, box=True, points="all",
|
534 |
color=condition1_chosen, hover_name=condition1_chosen,template="seaborn")
|
|
|
316 |
options=df.columns),
|
317 |
]),
|
318 |
html.Div([
|
319 |
+
dcc.Graph(id='scatter-plot-12', figure={}, className='row',config=config_fig)
|
320 |
]),
|
321 |
])
|
322 |
|
|
|
330 |
dcc.Tab(label='QC', value='tab1', children=tab1_content),
|
331 |
dcc.Tab(label='Cell cycle', value='tab2', children=tab2_content),
|
332 |
dcc.Tab(label='Custom', value='tab3', children=tab3_content),
|
333 |
+
dcc.Tab(label='Multi dot', value='tab4', children=tab4_content , style= {'width': 600,
|
334 |
+
'font-size': '100%',
|
335 |
+
'height': 400}),
|
336 |
]),
|
337 |
])
|
338 |
|
|
|
526 |
fig_scatter_12 = px.scatter(data_frame=expression_means, x="Gene", y=col_chosen, color="Mean expression",
|
527 |
size="percentage", size_max = 20,
|
528 |
#labels={'X_umap-0': 'umap1' , 'X_umap-1': 'umap2'},
|
529 |
+
hover_name=col_chosen,template="seaborn")
|
|
|
|
|
|
|
|
|
530 |
|
531 |
fig_violin2 = px.violin(data_frame=dff, x=condition1_chosen, y=condition2_chosen, box=True, points="all",
|
532 |
color=condition1_chosen, hover_name=condition1_chosen,template="seaborn")
|