Skip to content
Snippets Groups Projects
Commit 13109b40 authored by Loraine Gueguen's avatar Loraine Gueguen
Browse files

Fix code

parent 3767f3fd
No related branches found
No related tags found
1 merge request!1Release 1.0
This commit is part of merge request !1. Comments created here will be created in the context of that merge request.
...@@ -84,25 +84,33 @@ in the `examples` folder. ...@@ -84,25 +84,33 @@ in the `examples` folder.
- Deploy stacks part: - Deploy stacks part:
```$ python3 /path/to/repo/gga_init.py your_input_file.yml -c/--config your_config_file [-v/--verbose] [OPTIONS] ```bash
$ python3 /path/to/repo/gga_init.py your_input_file.yml -c/--config your_config_file [-v/--verbose] [OPTIONS]
--main-directory $PATH (Path where to create/update stacks; default=current directory) --main-directory $PATH (Path where to create/update stacks; default=current directory)
--force-traefik (If specified, will overwrite traefik and authelia files; default=False)``` --force-traefik (If specified, will overwrite traefik and authelia files; default=False)
```
- Copy source data file: - Copy source data file:
```$ python3 /path/to/repo/gga_get_data.py your_input_file.yml [-v/--verbose] [OPTIONS] ```bash
--main-directory $PATH (Path where to access stacks; default=current directory)``` $ python3 /path/to/repo/gga_get_data.py your_input_file.yml [-v/--verbose] [OPTIONS]
--main-directory $PATH (Path where to access stacks; default=current directory)
```
- Load data in Galaxy library and prepare Galaxy instance: - Load data in Galaxy library and prepare Galaxy instance:
```$ python3 /path/to/repo/gga_load_data.py your_input_file.yml -c/--config your_config_file [-v/--verbose] ```bash
--main-directory $PATH (Path where to access stacks; default=current directory)``` $ python3 /path/to/repo/gga_load_data.py your_input_file.yml -c/--config your_config_file [-v/--verbose]
--main-directory $PATH (Path where to access stacks; default=current directory)
```
- Run a workflow in galaxy: - Run a workflow in galaxy:
```$ python3 /path/to/repo/gga_load_data.py your_input_file.yml -c/--config your_config_file --workflow /path/to/workflow.ga [-v/--verbose] [OPTIONS] ```bash
$ python3 /path/to/repo/gga_load_data.py your_input_file.yml -c/--config your_config_file --workflow /path/to/workflow.ga [-v/--verbose] [OPTIONS]
--workflow $WORKFLOW (Path to the workflow to run in galaxy. A couple of preset workflows are available in the "workflows" folder of the repository) --workflow $WORKFLOW (Path to the workflow to run in galaxy. A couple of preset workflows are available in the "workflows" folder of the repository)
--main-directory $PATH (Path where to access stacks; default=current directory)``` --main-directory $PATH (Path where to access stacks; default=current directory)
```
**The input file and config file have to be the same for all scripts!** **The input file and config file have to be the same for all scripts!**
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment