From d13071900de2ba73b829f52b96a1593da600118a Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Thu, 26 Sep 2024 14:18:45 -0500 Subject: Initialise the phenotypes section. --- uploader/population/views.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'uploader/population') diff --git a/uploader/population/views.py b/uploader/population/views.py index 631f0be..23bf242 100644 --- a/uploader/population/views.py +++ b/uploader/population/views.py @@ -18,6 +18,7 @@ from uploader.oauth2.client import oauth2_post from uploader.ui import make_template_renderer from uploader.authorisation import require_login from uploader.genotypes.views import genotypesbp +from uploader.phenotypes.views import phenotypesbp from uploader.expression_data.views import exprdatabp from uploader.db_utils import database_connection from uploader.datautils import enumerate_sequence @@ -35,6 +36,7 @@ __active_link__ = "populations" popbp = Blueprint("populations", __name__) popbp.register_blueprint(samplesbp, url_prefix="/") popbp.register_blueprint(genotypesbp, url_prefix="/") +popbp.register_blueprint(phenotypesbp, url_prefix="/") popbp.register_blueprint(exprdatabp, url_prefix="/") render_template = make_template_renderer("populations") -- cgit v1.2.3