From 58a214a4a9be5fb219a798b62cdbf43d72280c74 Mon Sep 17 00:00:00 2001 From: Frederick Muriuki Muriithi Date: Fri, 5 Jan 2024 13:08:38 +0300 Subject: Initialise R/qtl2 bundle upload path Initialise the upload path for R/qtl2 bundles. This commit adds UI that allows the user to select from existing species, before proceeding to the next stage. --- qc_app/upload/__init__.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 qc_app/upload/__init__.py (limited to 'qc_app/upload/__init__.py') diff --git a/qc_app/upload/__init__.py b/qc_app/upload/__init__.py new file mode 100644 index 0000000..5f120d4 --- /dev/null +++ b/qc_app/upload/__init__.py @@ -0,0 +1,7 @@ +"""Package handling upload of files.""" +from flask import Blueprint + +from .rqtl2 import rqtl2 + +upload = Blueprint("upload", __name__) +upload.register_blueprint(rqtl2, url_prefix="/rqtl2") -- cgit v1.2.3