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

Add --ignore fmap-jacobian option #385

Merged
merged 2 commits into from
Jan 16, 2024
Merged
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
2 changes: 1 addition & 1 deletion aslprep/cli/parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ def _bids_filter(value):
action="store",
nargs="+",
default=[],
choices=["fieldmaps", "sbref", "t2w", "flair"],
choices=["fieldmaps", "sbref", "t2w", "flair", "fmap-jacobian"],
help=(
"ignore selected aspects of the input dataset to disable corresponding "
"parts of the workflow (a space delimited list)"
Expand Down
1 change: 1 addition & 0 deletions aslprep/workflows/asl/apply.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,7 @@ def init_asl_cifti_resample_wf(
fieldmap_id=fieldmap_id,
omp_nthreads=omp_nthreads,
mem_gb=mem_gb,
jacobian="fmap-jacobian" not in config.workflow.ignore,
name="asl_MNI6_wf",
)

Expand Down
2 changes: 2 additions & 0 deletions aslprep/workflows/asl/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -563,6 +563,7 @@ def init_asl_wf(
fieldmap_id=fieldmap_id,
omp_nthreads=omp_nthreads,
mem_gb=mem_gb,
jacobian="fmap-jacobian" not in config.workflow.ignore,
name="asl_anat_wf",
)
asl_anat_wf.inputs.inputnode.resolution = "native"
Expand Down Expand Up @@ -626,6 +627,7 @@ def init_asl_wf(
fieldmap_id=fieldmap_id,
omp_nthreads=omp_nthreads,
mem_gb=mem_gb,
jacobian="fmap-jacobian" not in config.workflow.ignore,
name="asl_std_wf",
)
ds_asl_std_wf = init_ds_volumes_wf(
Expand Down
8 changes: 6 additions & 2 deletions aslprep/workflows/asl/fit.py
Original file line number Diff line number Diff line change
Expand Up @@ -817,7 +817,7 @@ def init_asl_native_wf(

# Resample ASL to aslref
aslref_asl = pe.Node(
ResampleSeries(),
ResampleSeries(jacobian="fmap-jacobian" not in config.workflow.ignore),
name="aslref_asl",
n_procs=omp_nthreads,
mem_gb=mem_gb["resampled"],
Expand Down Expand Up @@ -862,7 +862,11 @@ def init_asl_native_wf(
# No HMC
identity_xfm = nw_data.load("itkIdentityTransform.txt")
aslref_m0scan = pe.Node(
ResampleSeries(transforms=[identity_xfm], in_file=m0scan),
ResampleSeries(
jacobian="fmap-jacobian" not in config.workflow.ignore,
transforms=[identity_xfm],
in_file=m0scan,
),
name="aslref_m0scan",
n_procs=omp_nthreads,
)
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ license = {file = "LICENSE.md"}
requires-python = ">=3.10"
dependencies = [
'importlib_resources; python_version < "3.11"',
"fmriprep ~= 23.2.0a2",
"fmriprep ~= 23.2.0",
"indexed_gzip >= 0.8.8",
"looseversion",
"networkx ~= 3.2.1", # nipype needs networkx, but 3+ isn"t compatible with nipype 1.8.5
Expand All @@ -32,7 +32,7 @@ dependencies = [
"psutil >= 5.4",
"pybids ~= 0.16.4",
"requests",
"sdcflows ~= 2.7.0",
"sdcflows ~= 2.8.0",
"sentry-sdk >= 0.6.9",
"smriprep ~= 0.13.1",
"templateflow >= 23.0.0",
Expand Down