|
a |
|
b/openomics_web/layouts/app_layout.py |
|
|
1 |
import dash_core_components as dcc |
|
|
2 |
import dash_html_components as html |
|
|
3 |
|
|
|
4 |
from openomics_web.layouts.control_tabs import control_tabs |
|
|
5 |
|
|
|
6 |
|
|
|
7 |
def app_main(): |
|
|
8 |
return html.Div(id='circos-body', className='app-body', children=[ |
|
|
9 |
loading(), |
|
|
10 |
control_tabs(), |
|
|
11 |
html.Div(id="output-data-upload", className="circos-size"), |
|
|
12 |
html.Div(id="output-clinical-upload", className="circos-size"), |
|
|
13 |
]) |
|
|
14 |
|
|
|
15 |
|
|
|
16 |
|
|
|
17 |
def loading(): |
|
|
18 |
return html.Div(id='loading', children=[ |
|
|
19 |
dcc.Loading(className='loading', children=html.Div( |
|
|
20 |
id="circos-hold", |
|
|
21 |
# children=[empty] |
|
|
22 |
)) |
|
|
23 |
]) |