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 the corneal cell state meta atlas'),
html.Div('Please select the dataset above.'),
html.Div('Note that lowly expressed genes have been filtered out, leaving ~17.000 expressed genes to analyse interactively.'),
html.Div('Genes can be visualised in a dotplot or in the "custom" tab on the UMAPs.'),
html.Div('TF influence scores can also be visualised in these graphs'),
])