-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
26 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# 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/simba-qc/](https://exbio.wzw.tum.de/simba-qc/). | ||
|
||
## Offline Usage | ||
### Docker | ||
The app can be run using the docker image `exbio/simba-qc`. The image can be pulled from the docker hub using the following command: | ||
```bash | ||
docker run -p <port>:8080 bigdatainbiomedicine/simba-qc | ||
``` | ||
The app will be available at [http://localhost:<port>](http://localhost:<port>). | ||
|
||
### Local | ||
The app can also be run locally. The following steps are required to run the app locally: | ||
1. Clone the repository: | ||
```bash | ||
git clone https://github.com/Mye-InfoBank/SIMBA-QC.git | ||
``` | ||
2. Install the required packages: | ||
```bash | ||
pip install -r requirements.txt | ||
``` | ||
3. Run the app: | ||
```bash | ||
cd src | ||
uvicorn app:app --host 0.0.0.0 --port <port> | ||
``` |