https://github.com/inab/vre_dorothea_executor
DoRothEA tool job executor for iPC VRE
https://github.com/inab/vre_dorothea_executor
dorothea ipc ipc-project tool vre wrapper
Last synced: 8 days ago
JSON representation
DoRothEA tool job executor for iPC VRE
- Host: GitHub
- URL: https://github.com/inab/vre_dorothea_executor
- Owner: inab
- License: apache-2.0
- Created: 2020-06-08T11:04:51.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2022-08-30T10:19:44.000Z (almost 4 years ago)
- Last Synced: 2025-02-24T06:34:12.474Z (over 1 year ago)
- Topics: dorothea, ipc, ipc-project, tool, vre, wrapper
- Language: Python
- Homepage: https://vre.ipc-project.bsc.es/
- Size: 525 KB
- Stars: 0
- Watchers: 9
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# VRE DoRothEA Tool Executor
## Requirements
- Python 3.6 or later
- R 4.0.2 or later
- [git](https://git-scm.com/downloads)
```bash
sudo apt update
sudo apt install python3
sudo apt install r-base
sudo apt install git
```
In order to install the Python dependencies you need `pip` and `venv` modules.
```bash
sudo apt install python3-pip python3-venv
```
## Installation
Directly from GitHub:
```bash
cd $HOME
git clone https://github.com/inab/vre_dorothea_executor.git
cd vre_dorothea_executor
```
Create the Python environment:
```bash
python3 -m venv venv
source venv/bin/activate
pip install --upgrade pip wheel
pip install -r requirements.txt
```
## Run the Wrapper
```bash
./VRE_RUNNER --config tests/basic/config.json --in_metadata tests/basic/in_metadata.json --out_metadata out_metadata.json --log_file VRE_RUNNER.log
```
## License
* © 2020-2022 Barcelona Supercomputing Center (BSC), ES
* © 2020-2022 Heidelberg University Hospital (UKL-HD), DE
Licensed under the Apache License [Version 2.0](https://www.apache.org/licenses/LICENSE-2.0), see the file `LICENSE` for details.