Spaces:
Running
Running
import dash | |
from dash import html | |
dash.register_page(__name__, path='/', location="sidebar") | |
layout = html.Div([ | |
html.H1('This is the home page for analyzing: no suture, sutured and duloxetine treated mouse corneas.'), | |
html.Div('Please click on the dataset above and click on a tab of interest.'), | |
html.Div('For an explanation of the tabs, see categories below.'), | |
html.H1('First tab: UMAP visualisation'), | |
html.Div('This tab contains two selectable conditions that can be used in combination for visualisation.'), | |
html.Div('For example if expression of Pax6 across experimental conditions needs to be visualised, condition 1 "condition" and condition 2 "Pax6" can be selected.'), | |
html.Div('For condition 1 clusters, cell states and (experimental) conditions can be selected.'), | |
html.Div('For condition 2 individual genes or quality control parameters (e.g. n_genes_by_counts) can be visualised.'), | |
html.H1('Second tab: Multigene dotplot'), | |
html.Div('This tab contains visualisation of selected genes in all cell states. Multiple genes be added or removed.'), | |
html.Div('For web app stability, removing only one gene at the time is recommended.'), | |
]) |