Skip to content

Commit bbb8894

Browse files
committed
Changes to organization of 'Setting Up A Pipeline' page
1 parent 609412c commit bbb8894

File tree

7 files changed

+122
-73
lines changed

7 files changed

+122
-73
lines changed

docs/user/_images/deriv_gui.png

82.5 KB
Loading

docs/user/_images/output_gui.png

111 KB
Loading
110 KB
Loading
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
Derivatives Settings
2+
---------------------
3+
4+
.. figure:: /_images/deriv_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+
| runZScoring | Determines format of outputs. 0 will produce non-z-scored outputs, 1 will produce z-scores of outputs. | A list where '1' represents 'yes' and '0' represents 'no' (e.g., '[1]'). |
15+
+-------------------------------+------------------------------------------------------------------------------------------------------------------------------+------------------------------------------------------------------------------------+
16+
17+
The box below contains an example of what these parameters might look like when defined in the YAML::
18+
19+
runZScoring : [1]
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
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

Comments
 (0)