aboutsummaryrefslogtreecommitdiff
path: root/uploader/expression_data/__init__.py
blob: 206a76427e4af41af502c8edd86cd1bfb1e55e0b (plain)
1
2
3
4
5
6
7
8
9
10
11
"""Package handling upload of files."""
from flask import Blueprint

from .rqtl2 import rqtl2
from .index import indexbp
from .parse import parsebp

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")