https://github.com/MDverse/mdde
Tip revision: 52604906f80f96b27fd61209a78a93cd36be9a45 authored by Pierre Poulain on 23 April 2023, 12:49:24 UTC
Add data DOI
Add data DOI
Tip revision: 5260490
README.md
# MDverse data explorer
Live app available at <https://mdverse.streamlit.app/>
## Setup your environment
Clone the repository:
```bash
git clone https://github.com/MDverse/mdde.git
```
Move to the new directory:
```bash
cd mdde
```
Install [miniconda](https://docs.conda.io/en/latest/miniconda.html).
Install [mamba](https://github.com/mamba-org/mamba):
```bash
conda install mamba -n base -c conda-forge
```
Create the `mdde` conda environment:
```
mamba env create -f binder/environment.yml
```
Load the `mdde` conda environment:
```
conda activate mdde
```
Note: you can also update the conda environment with:
```bash
mamba env update -f binder/environment.yml
```
To deactivate an active environment, use
```
conda deactivate
```
## Get data
Data files are directly downloaded from [Zenodo](https://doi.org/10.5281/zenodo.7856523).
## Run the web application
```bash
streamlit run MDverse_data_explorer.py
```