https://github.com/scai-bio/zetomap
An AOP network visualizer and prediction tool for the ZET-O-MAP project.
https://github.com/scai-bio/zetomap
Last synced: about 2 months ago
JSON representation
An AOP network visualizer and prediction tool for the ZET-O-MAP project.
- Host: GitHub
- URL: https://github.com/scai-bio/zetomap
- Owner: SCAI-BIO
- Created: 2023-09-20T08:27:24.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-09-20T08:55:22.000Z (over 1 year ago)
- Last Synced: 2024-05-14T00:19:15.226Z (about 1 year ago)
- Language: TypeScript
- Homepage: https://db.zet-o-map.scaiview.com/
- Size: 39.9 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ZET-O-MAP
An AOP network visualizer and prediction tool for the ZET-O-MAP project. The live version can be found at https://db.zet-o-map.scaiview.com/## Deployment
Two Docker containers can be built and deployed using the `docker-compose.yml` located in this root directory and executing `docker-compose up -d`. The GUI will be available at http://localhost:8080.## Components
### API
The API used by the frontend was built using Python and FastAPI and compiles a backend SQLlite database by querying the zetomap knowledge graph available at https:/graphstore.scai.fraunhofer.de.After installing the API package, you can build the database using
```bash
zetomap build
```and then run the API using
```bash
zetomap serve
```
The API will then be available at http://localhost:5000/docs### Frontend
The GUI was built using React and Nodejs 16. Install the node modules using
```bash
npm install --legacy-peer-deps
```and then start the frontend using
```bash
npm run serve
```