|
| 1 | +Output Settings |
| 2 | +---------------- |
| 3 | + |
| 4 | +.. figure:: /_images/output_gui.png |
| 5 | + |
| 6 | +Configuration Without the GUI |
| 7 | +"""""""""""""""""""""""""""""" |
| 8 | + |
| 9 | +The following key/value pairs must be defined in your :doc:`pipeline configuration YAML </pipeline_config>` for C-PAC to run: |
| 10 | + |
| 11 | + +-------------------------------+------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------+ |
| 12 | + | Key | Description | Potential Values | |
| 13 | + +===============================+==============================================================================================================================+====================================================================================+ |
| 14 | + | pipelineName | A name that you would like to give to this pipeline. | A string. | |
| 15 | + +-------------------------------+------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------+ |
| 16 | + | workingDirectory | The working directory to be used by the pipeline during the run. | A path (e.g.,'/data/my_analysis/working'). | |
| 17 | + +-------------------------------+------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------+ |
| 18 | + | crashLogDirectory | The directory where C-PAC will store crash logs. | A path (e.g.,'/data/my_analysis/crash'). | |
| 19 | + +-------------------------------+------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------+ |
| 20 | + | outputDirectory | The output directory for the pipeline. | A path (e.g.,'/data/my_analysis/output'). | |
| 21 | + +-------------------------------+------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------+ |
| 22 | + | runSymbolicLinks | Create a user-friendly, well-organized version of the output directory. | A list where '1' represents 'yes' and '0' represents 'no' (e.g., '[1]'). | |
| 23 | + +-------------------------------+------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------+ |
| 24 | + | generateQualityControlImages | Generate quality control pages containing preprocessing and derivative outputs. | A list where '1' represents 'yes' and '0' represents 'no' (e.g., '[1]'). | |
| 25 | + +-------------------------------+------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------+ |
| 26 | + | removeWorkingDir | Deletes the contents of the Working Directory after running. Saves disk space, but steps will need to be re-run. | True,False | |
| 27 | + +-------------------------------+------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------+ |
| 28 | + | reGenerateOutputs | Uses the contents of the Working Directory to regenerate all outputs and their symbolic links. | True,False | |
| 29 | + +-------------------------------+------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------+ |
| 30 | + |
| 31 | +The box below contains an example of what these parameters might look like when defined in the YAML:: |
| 32 | + |
| 33 | + pipelineName : gelastic_epilepsy_pipeline |
| 34 | + workingDirectory : /data/working |
| 35 | + crashLogDirectory : /data/crash |
| 36 | + outputDirectory : /data/output |
| 37 | + runSymbolicLinks : [1] |
| 38 | + generateQualityControlImages : [1] |
| 39 | + removeWorkingDir : False |
| 40 | + reGenerateOutputs : False |
0 commit comments