Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Included distortion correction pipeline config keys in the pipeline Y… #33

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
35 changes: 35 additions & 0 deletions default_pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,41 @@ slice_timing_correction : [1]
slice_timing_pattern : ['Use NIFTI Header']


# Perform fieldmap correction using FSL FUGUE, with a single phase difference image, a subtraction of the two phase images from each echo.
# Default scanner for this method is SIEMENS.
runEPI_DistCorr : [0]


# Since the quality of the distortion heavily relies on the skull-stripping,
# step, we provide a choice of method (AFNI 3dSkullStrip or FSL BET).
# Options: ["BET", "3dSkullStrip"]
fmap_distcorr_skullstrip: ["BET"]


# Set the threshold value for the skull-stripping of the magnitude file.
# Depending on the data, a tighter extraction may be necessary in order to
# prevent noisy voxels from interfering with preparing the field map.
# The default value is 0.5.
fmap_distcorr_frac: [0.5]


# Set the Delta-TE value, used for preparing the field map, the time delay between the first and second echo images.
fmap_distcorr_deltaTE : 2.46


# Set the Dwell time for FSL FUGUE. This is the time between scans.
# The default value is commonly 0.00231s.
fmap_distcorr_dwell_time : [0.0005]


# Set the asymmetric ratio input value for FSL FUGUE.
fmap_distcorr_dwell_asym_ratio : [0.93902439]


# Set the phase-encoding direction. The options are: x, y, z, -x, -y, -z.
fmap_distcorr_pedir: -y


# Run Functional to Anatomical Registration
runRegisterFuncToAnat : [1]

Expand Down
40 changes: 40 additions & 0 deletions test_pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -192,18 +192,58 @@ stopIdx : None
# Default is None (TR information is read from image file header)
TR : None


# Interpolate voxel time courses so they are sampled at the same time points.
slice_timing_correction : [1]


# Acquisition strategy for acquiring image slices.
slice_timing_pattern : ['Use NIFTI Header']


# Perform fieldmap correction using FSL FUGUE, with a single phase difference image, a subtraction of the two phase images from each echo.
# Default scanner for this method is SIEMENS.
runEPI_DistCorr : [0]


# Since the quality of the distortion heavily relies on the skull-stripping,
# step, we provide a choice of method (AFNI 3dSkullStrip or FSL BET).
# Options: ["BET", "3dSkullStrip"]
fmap_distcorr_skullstrip: ["BET"]


# Set the threshold value for the skull-stripping of the magnitude file.
# Depending on the data, a tighter extraction may be necessary in order to
# prevent noisy voxels from interfering with preparing the field map.
# The default value is 0.5.
fmap_distcorr_frac: [0.5]


# Set the Delta-TE value, used for preparing the field map, the time delay between the first and second echo images.
fmap_distcorr_deltaTE : 2.46


# Set the Dwell time for FSL FUGUE. This is the time between scans.
# The default value is commonly 0.00231s.
fmap_distcorr_dwell_time : [0.0005]


# Set the asymmetric ratio input value for FSL FUGUE.
fmap_distcorr_dwell_asym_ratio : [0.93902439]


# Set the phase-encoding direction. The options are: x, y, z, -x, -y, -z.
fmap_distcorr_pedir: -y


# Run Functional to Anatomical Registration
runRegisterFuncToAnat : [1]


# Run Functional to Anatomical Registration with BB Register
runBBReg : [1]


# Standard FSL 5.0 Scheduler used for Boundary Based Registration.
# It is not necessary to change this path unless you intend to use non-standard MNI registration.
boundaryBasedRegistrationSchedule : /usr/share/fsl/5.0/etc/flirtsch/bbr.sch
Expand Down