Spaces:
Running
Running
Update pages/integratedsuture.py
Browse files
pages/integratedsuture.py
CHANGED
@@ -14,7 +14,7 @@ from natsort import natsorted
|
|
14 |
|
15 |
dash.register_page(__name__, location="sidebar")
|
16 |
|
17 |
-
dataset = "datasuture/integrated/
|
18 |
|
19 |
# Set custom resolution for plots:
|
20 |
config_fig = {
|
@@ -181,7 +181,7 @@ tab2_content = html.Div([
|
|
181 |
tab3_content = html.Div([
|
182 |
html.Div([
|
183 |
html.Label("UMAP condition 1"),
|
184 |
-
dcc.Dropdown(id='dpdn5', value="
|
185 |
options=df.columns),
|
186 |
html.Label("UMAP condition 2"),
|
187 |
dcc.Dropdown(id='dpdn6', value="Pax6", multi=False,
|
@@ -205,11 +205,15 @@ tab3_content = html.Div([
|
|
205 |
|
206 |
tab4_content = html.Div([
|
207 |
html.Label("Column chosen"),
|
208 |
-
dcc.Dropdown(id='dpdn2', value="
|
209 |
options=df.columns),
|
210 |
html.Div([
|
211 |
html.Label("Multi gene"),
|
212 |
-
dcc.Dropdown(id='dpdn7', value=["Pax6","
|
|
|
|
|
|
|
|
|
213 |
options=df.columns),
|
214 |
]),
|
215 |
html.Div([
|
|
|
14 |
|
15 |
dash.register_page(__name__, location="sidebar")
|
16 |
|
17 |
+
dataset = "datasuture/integrated/Experiment_combined_suture_polars"
|
18 |
|
19 |
# Set custom resolution for plots:
|
20 |
config_fig = {
|
|
|
181 |
tab3_content = html.Div([
|
182 |
html.Div([
|
183 |
html.Label("UMAP condition 1"),
|
184 |
+
dcc.Dropdown(id='dpdn5', value="condition", multi=False,
|
185 |
options=df.columns),
|
186 |
html.Label("UMAP condition 2"),
|
187 |
dcc.Dropdown(id='dpdn6', value="Pax6", multi=False,
|
|
|
205 |
|
206 |
tab4_content = html.Div([
|
207 |
html.Label("Column chosen"),
|
208 |
+
dcc.Dropdown(id='dpdn2', value="cell states", multi=False,
|
209 |
options=df.columns),
|
210 |
html.Div([
|
211 |
html.Label("Multi gene"),
|
212 |
+
dcc.Dropdown(id='dpdn7', value=["Pax6","Sox9","Cdk8","Il31ra","Gpha2",
|
213 |
+
"Areg","Krt13","Krt19","Psca","Muc20",
|
214 |
+
"S100a9","Lama3","Itgb4","Itga6","Thy1","Dcn","Scn7a",
|
215 |
+
"Cdh19","Mpz","Ptprc","Cd52","Cd69","Cd86","Rgs5","Des","Myh11","Cd93","Pecam1",
|
216 |
+
"Abcg2","Lyve1","Mki67"], multi=True,
|
217 |
options=df.columns),
|
218 |
]),
|
219 |
html.Div([
|