You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* sibling mask files are matched using `-mask_rel 's/preproc_bold.nii.gz/brain_mask.nii.gz/'`
87
-
1. searches each input file for `preproc_bold.nii.gz`
88
-
2. and replaces that with `brain_maks.nii.gz`
89
-
* to match censor files across directories, `censor_regex` uses `s/.*func\/(.*)-preproc_bold.nii.gz/censor_files\/\1\/preproc_censor-fd0.3.1D/`). Also see https://regex101.com/r/bM6p7X/1
90
-
1. searches each input file for `.*func\/(.*)-preproc_bold.nii.gz`, where
91
-
*`\/` "escapes" the directory slash, escape to distinguish it from the search-replace deliminator in `s///`
92
-
* where `(.*)` captures the matching part to reuse as `\\1` in
93
-
3. the replacement like `censor_files\/\1\/preproc_censor-fd0.3.1D`
86
+
* sibling mask files are matched using `-mask_rel 's/desc-preproc_bold.nii.gz/brain_mask.nii.gz/'`
1. searches each input file for `desc-preproc_bold.nii.gz`
92
+
2. and replaces that with `brain_maks.nii.gz`
93
+
* to match censor files across directories, `censor_regex` uses `s/.*func\/(.*)_desc-preproc_bold.nii.gz/censor_files\/\1\/preproc_censor-fd0.3.1D/`). Also see https://regex101.com/r/bM6p7X/1
0 commit comments