|
|
|
This repository follows the fixed layout (non static files and folders were left out):
|
|
|
|
|
|
|
|
```shell
|
|
|
|
├── LICENSE
|
|
|
|
├── Makefile
|
|
|
|
├── README.md
|
|
|
|
├── clean_data
|
|
|
|
│ ├── Bioinformatik
|
|
|
|
│ ├── Informatik
|
|
|
|
│ ├── Mathematik
|
|
|
|
│ └── participation
|
|
|
|
├── outputs
|
|
|
|
│ └── pdfs
|
|
|
|
├── raw_data
|
|
|
|
│ ├── Bioinformatik
|
|
|
|
│ ├── Informatik
|
|
|
|
│ ├── Mathematik
|
|
|
|
│ └── participation
|
|
|
|
├── requirements.txt
|
|
|
|
└── src
|
|
|
|
├── assets
|
|
|
|
│ └── table_template.html
|
|
|
|
├── cleanup.ipynb
|
|
|
|
├── dashboard
|
|
|
|
│ └── dashboard.py
|
|
|
|
├── db
|
|
|
|
│ ├── Dockerfile
|
|
|
|
│ ├── api
|
|
|
|
│ │ ├── Dockerfile
|
|
|
|
│ │ ├── api-v1
|
|
|
|
│ │ │ ├── api-doc.js
|
|
|
|
│ │ │ ├── open-api-types.js
|
|
|
|
│ │ │ ├── paths
|
|
|
|
│ │ │ └── services
|
|
|
|
│ │ ├── index.js
|
|
|
|
│ │ ├── package-lock.json
|
|
|
|
│ │ ├── package.json
|
|
|
|
│ │ └── postgres.js
|
|
|
|
│ ├── docker-compose.yaml
|
|
|
|
│ ├── questions.json
|
|
|
|
│ └── schema.sql
|
|
|
|
├── lib
|
|
|
|
│ ├── api.py
|
|
|
|
│ └── constants.py
|
|
|
|
├── old-report.ipynb
|
|
|
|
└── pipeline.ipynb
|
|
|
|
```
|
|
|
|
|
|
|
|
If you want to take a closer look into parts of this structure, follow these links:
|
|
|
|
|
|
|
|
- [Jupyter Notebooks (.ipynb)](en/code/Jupyter-Notebooks)
|
|
|
|
- [Docker (Dockerfile, docker-compose)](en/code/Docker)
|
|
|
|
- data (raw_data, clean_data, outputs)
|
|
|
|
- [lib](en/code/Lib)
|
|
|
|
- api
|
|
|
|
- dashboard |