Skip to content

Commit 8ebf0a7

Browse files
authored
Merge pull request #1788 from FCP-INDI/rbc-update
🔧 Base `rbc-options` on `fmriprep-options`' preproc
2 parents fd91a42 + 0182f98 commit 8ebf0a7

File tree

2 files changed

+9
-26
lines changed

2 files changed

+9
-26
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
3030
- Moved default pipeline config into directory with other preconfigs
3131
- Added crash messages from during and before graph building to logs
3232
- Added data-config-specific hash string to C-PAC-generated config files
33+
- Updated `rbc-options` preconfig to use `fmriprep-options` preprocessing
3334

3435
### Fixed
3536
- Replaces ``DwellTime`` with ``EffectiveEchoSpacing`` for FSL usage of the term

CPAC/resources/configs/pipeline_config_rbc-options.yml

Lines changed: 8 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
#
88
# Tip: This file can be edited manually with a text editor for quick modifications.
99

10-
FROM: fx-options
10+
FROM: fmriprep-options
1111

1212
pipeline_setup:
1313
# Name for this pipeline configuration - useful for identification.
@@ -33,24 +33,12 @@ pipeline_setup:
3333
# This saves disk space, but any additional preprocessing or analysis will have to be completely re-run.
3434
remove_working_dir: On
3535

36-
anatomical_preproc:
37-
# N4 bias field correction via ANTs
38-
n4_bias_field_correction:
39-
# this is a fork option
40-
run:
41-
- On
42-
4336
registration_workflows:
4437
anatomical_registration:
45-
T1w_brain_template: /usr/share/fsl/5.0/data/standard/MNI152_T1_${resolution_for_anat}_brain.nii.gz
46-
T1w_brain_template_mask: /usr/share/fsl/5.0/data/standard/MNI152_T1_${resolution_for_anat}_brain_mask.nii.gz
47-
T1w_template: /usr/share/fsl/5.0/data/standard/MNI152_T1_${resolution_for_anat}.nii.gz
48-
38+
T1w_brain_template: $FSLDIR/data/standard/MNI152_T1_${resolution_for_anat}_brain.nii.gz
39+
T1w_brain_template_mask: $FSLDIR/data/standard/MNI152_T1_${resolution_for_anat}_brain_mask.nii.gz
40+
T1w_template: $FSLDIR/data/standard/MNI152_T1_${resolution_for_anat}.nii.gz
4941
functional_registration:
50-
coregistration:
51-
func_input_prep:
52-
input: [fmriprep_reference]
53-
5442
func_registration_to_template:
5543
# these options modify the application (to the functional data), not the calculation, of the
5644
# T1-to-template and EPI-to-template transforms calculated earlier during registration
@@ -73,11 +61,10 @@ registration_workflows:
7361

7462
target_template:
7563
T1_template:
76-
T1w_brain_template_funcreg: /usr/share/fsl/5.0/data/standard/MNI152_T1_${func_resolution}_brain.nii.gz
77-
T1w_brain_template_mask_funcreg: /usr/share/fsl/5.0/data/standard/MNI152_T1_${func_resolution}_brain_mask.nii.gz
78-
T1w_template_for_resample:
79-
T1w_template_funcreg: /usr/share/fsl/5.0/data/standard/MNI152_T1_${func_resolution}.nii.gz
80-
64+
T1w_brain_template_funcreg: $FSLDIR/data/standard/MNI152_T1_${func_resolution}_brain.nii.gz
65+
T1w_brain_template_mask_funcreg: $FSLDIR/data/standard/MNI152_T1_${func_resolution}_brain_mask.nii.gz
66+
T1w_template_for_resample: $FSLDIR/data/standard/MNI152_T1_${func_resolution}_brain.nii.gz
67+
T1w_template_funcreg: $FSLDIR/data/standard/MNI152_T1_${func_resolution}.nii.gz
8168

8269
functional_preproc:
8370
truncation:
@@ -94,10 +81,6 @@ functional_preproc:
9481
run:
9582
- On
9683

97-
motion_estimates_and_correction:
98-
motion_correction:
99-
using: [3dvolreg]
100-
10184
distortion_correction:
10285
using:
10386
- PhaseDiff
@@ -186,7 +169,6 @@ nuisance_corrections:
186169
# CSF erosion default is using millimeter erosion method when use erosion for CSF.
187170
csf_mask_erosion_mm:
188171

189-
190172
timeseries_extraction:
191173
run: On
192174
connectivity_matrix:

0 commit comments

Comments
 (0)