Update dash_plotly_QC_scRNA.py
Browse files- dash_plotly_QC_scRNA.py +4 -0
dash_plotly_QC_scRNA.py
CHANGED
@@ -257,6 +257,9 @@ tab3_content = html.Div([
|
|
257 |
html.Label("UMAP condition 2"),
|
258 |
dcc.Dropdown(id='dpdn6', value="n_genes_by_counts", multi=False,
|
259 |
options=df.columns),
|
|
|
|
|
|
|
260 |
]),
|
261 |
html.Div([
|
262 |
dcc.Graph(id='scatter-plot-9', figure={}, className='four columns',config=config_fig)
|
@@ -341,6 +344,7 @@ def update_slider_values(min_1, max_1, min_2, max_2, min_3, max_3):
|
|
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='range-slider-1', component_property='value'),
|
345 |
Input(component_id='range-slider-2', component_property='value'),
|
346 |
Input(component_id='range-slider-3', component_property='value')
|
|
|
257 |
html.Label("UMAP condition 2"),
|
258 |
dcc.Dropdown(id='dpdn6', value="n_genes_by_counts", multi=False,
|
259 |
options=df.columns),
|
260 |
+
html.Label("Multi gene"),
|
261 |
+
dcc.Dropdown(id='dpdn7', value=["Cdc45","Uhrf1"], multi=True,
|
262 |
+
options=df.columns),
|
263 |
]),
|
264 |
html.Div([
|
265 |
dcc.Graph(id='scatter-plot-9', figure={}, className='four columns',config=config_fig)
|
|
|
344 |
Input(component_id='dpdn4', component_property='value'),
|
345 |
Input(component_id='dpdn5', component_property='value'),
|
346 |
Input(component_id='dpdn6', component_property='value'),
|
347 |
+
Input(component_id='dpdn7', component_property='value'),
|
348 |
Input(component_id='range-slider-1', component_property='value'),
|
349 |
Input(component_id='range-slider-2', component_property='value'),
|
350 |
Input(component_id='range-slider-3', component_property='value')
|