A Python Flask server that converts Excel files into SBOL and uploads it into SBH and FJ
May have to edit dockerfile line 2 to clarify the platform on which you are running. (--platform=...)
Currently in a template-based design.
Go to main directory:
cd SynBioSuite_ServerBuild the image:
docker build -t sbs_server .Run the image:
docker run -p 5003:5003 sbs_serverThe server will be running on localhost:5003
This package requires Python 3.9.20 (other version create dependency issues). Use the package manager pip to install excel2sbol, excel2flapjack, flask, and flask-cors.
pip install excel2sbolpip install excel2flapjackpip install flaskpip install flask-corsIn your command line, you can start up the server using the following command
flask --app views.py run