Skip to content

Commit

Permalink
Big update, UFL projext.
Browse files Browse the repository at this point in the history
- Analyze files
- Charts
  • Loading branch information
LucaCilibrasi committed May 23, 2021
1 parent 71f507e commit 704b2b9
Show file tree
Hide file tree
Showing 34 changed files with 3,085 additions and 1,185 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,4 @@
# Project exclude paths
/frontend/node_modules/
/frontend/node_modules/
.idea
venv
10 changes: 6 additions & 4 deletions backend/apis/__init__.py
Original file line number Diff line number Diff line change
@@ -1,18 +1,20 @@
from flask import Blueprint
from flask_restplus import Api

from .epitope import api as epitope_api
from .ufl import api as ufl
from .analyze_file import api as analyze_file

enable_doc = True

api_blueprint = Blueprint('api', __name__)

if enable_doc:
api = Api(title='ViruSurf API', version='1.0', description='TODO', )
api = Api(title='UFL API', version='1.0', description='TODO', )
else:
api = Api(title='ViruSurf API', version='1.0', description='TODO', doc=False)
api = Api(title='UFL API', version='1.0', description='TODO', doc=False)


api.init_app(api_blueprint, add_specs=enable_doc)

api.add_namespace(epitope_api)
api.add_namespace(ufl)
api.add_namespace(analyze_file)
467 changes: 467 additions & 0 deletions backend/apis/analyze_file.py

Large diffs are not rendered by default.

108 changes: 0 additions & 108 deletions backend/apis/epitope.py

This file was deleted.

Loading

0 comments on commit 704b2b9

Please sign in to comment.