-
Notifications
You must be signed in to change notification settings - Fork 1
/
post_fmriprep.yaml
40 lines (33 loc) · 995 Bytes
/
post_fmriprep.yaml
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
tr: 1.0
#log_file: "post_fmriprep.log"
log_file: "{proc_files$prefix}_post_fmriprep.log"
overwrite: FALSE
keep_intermediates: FALSE
spatial_smooth:
prefix: "s"
fwhm_mm: 6
apply_aroma:
prefix: "a"
temporal_filter:
prefix: "f"
low_pass_hz: 0
high_pass_hz: 0.008333333 # 1/120
intensity_normalize:
prefix: "n"
global_median: 10000
confound_regression:
prefix: "r"
columns: [ "csf", "csf_derivative1", "white_matter", "white_matter_derivative1" ]
noproc_columns: [ ]
output_file: "{proc_files$prefix}_confound_regressors.txt"
confound_calculate:
compute: TRUE # will extract these confounds and filter to match fMRI data if TRUE
columns: [ "csf", "csf_derivative1", "white_matter", "white_matter_derivative1" ]
noproc_columns: [ "framewise_displacement" ] # no AROMA or filter, just copy
output_file: "{proc_files$prefix}_postprocessed_confounds.txt"
processing_sequence: [
"spatial_smooth",
"apply_aroma",
"temporal_filter",
"intensity_normalize"
]