Skip to content

Latest commit

 

History

History
27 lines (25 loc) · 1.05 KB

README.md

File metadata and controls

27 lines (25 loc) · 1.05 KB

SIMBA🦁 QC

This repository contains the source code of the python shiny app which is recommended to be used for the quality control of the SIMBA🦁 pipeline. The app is available at https://exbio.wzw.tum.de/cost/qc/.

Offline Usage

Docker

The app can be run using the docker image bigdatainbiomedicine/simba-qc. The image can be pulled from the docker hub using the following command:

docker run -p <port>:8080 bigdatainbiomedicine/simba-qc

Assuming that the port 1234 is used, the app can be accessed at http://localhost:1234.

Local

The app can also be run locally. The following steps are required to run the app locally:

  1. Clone the repository:
git clone https://github.com/Mye-InfoBank/SIMBA-QC.git
  1. Install the required packages:
pip install -r requirements.txt
  1. Run the app:
cd src
uvicorn app:app --host 0.0.0.0 --port <port>

Assuming that the port 1234 is used, the app can be accessed at http://localhost:1234.