-
Notifications
You must be signed in to change notification settings - Fork 4
/
default_pipeline.yml
72 lines (52 loc) · 2.2 KB
/
default_pipeline.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
---
# how many participants to run per workflow
num_subjects_per_bundle: 1
num_processors: 1
memory_allocated: 2
pipeline_name: QAP_bids_app_default
# which resource manager being used, if any
resource_manager: None
# where to place output files
output_directory: /output
# where to place Nipype workflow working files
working_directory: /scratch
# path to skull template
# only required if you have anatomical scans
template_skull_for_anat: /qap_resources/qap_templates/MNI152_T1_2mm.nii.gz
# exclude zero-value voxels from the background of the anatomical scan
# this is meant for images that have been manually altered (ex. ears removed
# for privacy considerations), where the artificial inclusion of zeros into
# the image would skew the QAP metric results
# (optional) will default to False if not included in this config file
exclude_zeros: false
# for functional timeseries, do not include timepoints before this
# (optional) will default to 0 if not included in this config file
start_idx: 0
# for functional timeseries, only include timepoints up to this
# "End" means it will include all of the timepoints up until the scan's end
# (optional) will default to "End" if not included in this config file
stop_idx: End
# produce PDF reports visualizing the results of the QAP metrics
# (optional) will default to False if not included in this config file
write_report: false
# produce workflow dependency graphs
# (optional) will default to False if not included in this config file
write_graph: false
# whether or not to keep all output files, or only the QAP numbers CSVs
# (optional) will default to False if not included in this config file
write_all_outputs: false
# AWS Cloud Settings
####################
# all optional
# whether or not to upload output files to S3 bucket
upload_to_s3: false
# bucket prefix (where to pull data from in S3, if applicable)
bucket_prefix: bucket/prefix/path
# bucket output prefix (where to push output files to S3, if applicable)
bucket_out_prefix: bucket/prefix/output/destination
# where to download input files to, locally, from S3
local_prefix: /path/to/local/dir
# name of your S3 bucket
bucket_name: bucket_name
# local path to your AWS credentials
creds_path: /path/to/AWS/creds.csv