diff options
author | Alexander Kabui | 2021-09-16 09:45:16 +0300 |
---|---|---|
committer | Alexander Kabui | 2021-09-16 09:45:16 +0300 |
commit | 6f9fd1a1866e292ec4b84c214efd61ccb9f5bb58 (patch) | |
tree | 407f088c425e1ef8290db0801bd25694fe70f0e9 | |
parent | 8854e3070f32bed95cb489eb36e7f258c02ec46e (diff) | |
download | genenetwork3-6f9fd1a1866e292ec4b84c214efd61ccb9f5bb58.tar.gz |
register wgcna blueprint
-rw-r--r-- | gn3/app.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -9,6 +9,7 @@ from gn3.api.rqtl import rqtl from gn3.api.general import general from gn3.api.correlation import correlation from gn3.api.data_entry import data_entry +from gn3.api.wgcna import wgcna def create_app(config: Union[Dict, str, None] = None) -> Flask: @@ -32,4 +33,5 @@ def create_app(config: Union[Dict, str, None] = None) -> Flask: app.register_blueprint(rqtl, url_prefix="/api/rqtl") app.register_blueprint(correlation, url_prefix="/api/correlation") app.register_blueprint(data_entry, url_prefix="/api/dataentry") + app.register_blueprint(wgcna, url_prefix="/api/wgcna") return app |