Spaces:
Running
Running
Arts-of-coding
commited on
Update dash_plotly_QC_scRNA.py
Browse files- dash_plotly_QC_scRNA.py +8 -0
dash_plotly_QC_scRNA.py
CHANGED
@@ -224,7 +224,14 @@ tab3_content = html.Div([
|
|
224 |
className='four columns',config=config_fig
|
225 |
)
|
226 |
]),
|
|
|
|
|
|
|
|
|
|
|
|
|
227 |
html.Div([
|
|
|
228 |
dcc.Graph(id='scatter-plot-12', figure={}, className='four columns',config=config_fig)
|
229 |
]),
|
230 |
])
|
@@ -237,6 +244,7 @@ app.layout = html.Div([
|
|
237 |
dcc.Tab(label='QC', value='tab1', children=tab1_content),
|
238 |
dcc.Tab(label='Cell cycle', value='tab2', children=tab2_content),
|
239 |
dcc.Tab(label='Custom', value='tab3', children=tab3_content),
|
|
|
240 |
]),
|
241 |
])
|
242 |
|
|
|
224 |
className='four columns',config=config_fig
|
225 |
)
|
226 |
]),
|
227 |
+
# html.Div([
|
228 |
+
# dcc.Graph(id='scatter-plot-12', figure={}, className='four columns',config=config_fig)
|
229 |
+
# ]),
|
230 |
+
])
|
231 |
+
|
232 |
+
tab4_content = html.Div([
|
233 |
html.Div([
|
234 |
+
html.Label("Multigene dotplot based on Col chosen tab 1")
|
235 |
dcc.Graph(id='scatter-plot-12', figure={}, className='four columns',config=config_fig)
|
236 |
]),
|
237 |
])
|
|
|
244 |
dcc.Tab(label='QC', value='tab1', children=tab1_content),
|
245 |
dcc.Tab(label='Cell cycle', value='tab2', children=tab2_content),
|
246 |
dcc.Tab(label='Custom', value='tab3', children=tab3_content),
|
247 |
+
dcc.Tab(label='Multi dot', value='tab4', children=tab4_content),
|
248 |
]),
|
249 |
])
|
250 |
|