File size: 1,509 Bytes
f09ad6c
 
 
2d13546
f09ad6c
 
af9930e
65f34ce
 
 
e786072
6997f61
e786072
f09ad6c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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'),
    html.Div(html.P(['TF influence scores can also be visualised in these graphs\n', html.Br(), 'Names of cell states: LSC-1 = Limbal stem cells 1; LSC-2 = Limbal stem cells 2; LE = Limbal epithelium; CE = Central epithelium; Cj = Conjunctiva; qSK =Quiescent stromal keratocytes; SK = Stromal keratocytes; TSK = Transitioning stromal keratocytes; CF = Corneal fibroblasts; EC = Endothelial cells; Ves = Vessels; Mel = Melanocytes; IC = Immune cells; nm-cSC = non-myelinating corneal Schwann cells; MC = Mural cells.']))
    #html.Div('Names of cell states: LSC-1 = Limbal stem cells 1; LSC-2 = Limbal stem cells 2; LE = Limbal epithelium; CE = Central epithelium; Cj = Conjunctiva; qSK =Quiescent stromal keratocytes; SK = Stromal keratocytes; TSK = Transitioning stromal keratocytes; CF = Corneal fibroblasts; EC = Endothelial cells; Ves = Vessels; Mel = Melanocytes; IC = Immune cells; nm-cSC = non-myelinating corneal Schwann cells; MC = Mural cells.'),
])