diff options
author | Frederick Muriuki Muriithi | 2024-09-09 14:06:31 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-09-09 16:41:46 -0500 |
commit | 9cd33ddac3d6848c5443962d66494635feadef51 (patch) | |
tree | 385a559380f4d6a961fefb38ad410ad9ca27b052 /uploader/expression_data/__init__.py | |
parent | 707c715d1e336ee45bdcced031881ed603b9297a (diff) | |
download | gn-uploader-9cd33ddac3d6848c5443962d66494635feadef51.tar.gz |
Initialise samples uploads
* Move existing code to new module
* Rework the UI: create new templates
* Rework the routes: Select species and populations before attempting
an upload.
Diffstat (limited to 'uploader/expression_data/__init__.py')
-rw-r--r-- | uploader/expression_data/__init__.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/uploader/expression_data/__init__.py b/uploader/expression_data/__init__.py index b773bce..206a764 100644 --- a/uploader/expression_data/__init__.py +++ b/uploader/expression_data/__init__.py @@ -4,10 +4,8 @@ from flask import Blueprint from .rqtl2 import rqtl2 from .index import indexbp from .parse import parsebp -from .samples import samples exprdatabp = Blueprint("expression-data", __name__) exprdatabp.register_blueprint(indexbp, url_prefix="/") exprdatabp.register_blueprint(rqtl2, url_prefix="/rqtl2") exprdatabp.register_blueprint(parsebp, url_prefix="/parse") -exprdatabp.register_blueprint(samples, url_prefix="/sample") |