aboutsummaryrefslogtreecommitdiff
path: root/uploader/population
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2024-09-26 14:18:45 -0500
committerFrederick Muriuki Muriithi2024-09-26 14:18:45 -0500
commitd13071900de2ba73b829f52b96a1593da600118a (patch)
tree656b674a3b34bbb6650ca6a07b54f8e23660c697 /uploader/population
parentc542cecda4c7c21bde7668f19a1b3e20f9a2b7b9 (diff)
downloadgn-uploader-d13071900de2ba73b829f52b96a1593da600118a.tar.gz
Initialise the phenotypes section.
Diffstat (limited to 'uploader/population')
-rw-r--r--uploader/population/views.py2
1 files changed, 2 insertions, 0 deletions
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")