helpers.py
Helper functions for the commands.
get_p_run_name(name, return_folder=False)
¶
Determines the name of the pipeline run. Can also return the output folder if selected.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
name | str | The user entered name of the pipeline run. | required |
return_folder | bool | When | False |
Returns:
Type | Description |
---|---|
str | The name of the pipeline run (always returned). |
str | The run directory (if |
Source code in vast_pipeline/management/helpers.py
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
|