diff options
author | Frederick Muriuki Muriithi | 2024-09-23 14:28:49 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-09-23 16:35:38 -0500 |
commit | 0b37b9b3fa4fead86787a705713645fa14530a54 (patch) | |
tree | 83bba12d52f340ec39e16cae9547f325a01743a2 /uploader/population | |
parent | 3bec3b312a1e235247f1431d4351db5efe7a785d (diff) | |
download | gn-uploader-0b37b9b3fa4fead86787a705713645fa14530a54.tar.gz |
Initialise the "Expression Data" section.
Diffstat (limited to 'uploader/population')
-rw-r--r-- | uploader/population/views.py | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/uploader/population/views.py b/uploader/population/views.py index 39a5762..631f0be 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.expression_data.views import exprdatabp from uploader.db_utils import database_connection from uploader.datautils import enumerate_sequence from uploader.species.models import (all_species, @@ -34,6 +35,7 @@ __active_link__ = "populations" popbp = Blueprint("populations", __name__) popbp.register_blueprint(samplesbp, url_prefix="/") popbp.register_blueprint(genotypesbp, url_prefix="/") +popbp.register_blueprint(exprdatabp, url_prefix="/") render_template = make_template_renderer("populations") |