#!python
from dash import Dash, html, dcc
from dash.dependencies import Input, Output, State, MATCH, ALL
from dash.exceptions import PreventUpdate
import plotly.express as px
import dash_bootstrap_components as dbc
import json
import pandas as pd
import fastsubtrees
import os
import genomes_attributes_viewer.first_run as gav_fr

scriptdir = os.path.dirname(os.path.realpath(__file__))
import genomes_attributes_viewer
genomes_attributes_viewer.workdir = scriptdir

if __name__ == '__main__':
  gav_fr.prepare_first_run(scriptdir)
  import genomes_attributes_viewer.app as gav_app
  gav_app.app.run_server(debug=True, host='0.0.0.0')
