Skip to content

Commit

Permalink
Update.
Browse files Browse the repository at this point in the history
  • Loading branch information
tsalo committed Oct 8, 2023
1 parent 2c9ae31 commit 3d9df11
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion xcp_d/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ class workflow(_Config):
# Head radius used to calculate framewise displacement, in mm.
fd_thresh = 0.3
# Framewise displacement threshold for censoring.
warp_surfaces_native2std = False
process_surfaces = False
# If used, a workflow will be run to warp native-space (fsnative) reconstructed cortical
# surfaces (surf.gii files) produced by Freesurfer into standard (fsLR) space.
dcan_qc = False
Expand Down
2 changes: 1 addition & 1 deletion xcp_d/workflows/anatomical.py
Original file line number Diff line number Diff line change
Expand Up @@ -374,7 +374,7 @@ def init_postprocess_surfaces_wf(
myelin_smoothed
"""
dcan_qc = config.workflow.dcan_qc
process_surfaces = config.workflow.warp_surfaces_native2std
process_surfaces = config.workflow.process_surfaces

workflow = Workflow(name=name)

Expand Down
2 changes: 1 addition & 1 deletion xcp_d/workflows/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ def init_subject_wf(subject_id):
task_id = config.execution.task_id
bids_filters = config.execution.bids_filters
layout = config.execution.layout
process_surfaces = config.workflow.warp_surfaces_native2std
process_surfaces = config.workflow.process_surfaces
combineruns = config.workflow.combineruns
dcan_qc = config.workflow.dcan_qc
output_dir = config.execution.output_dir
Expand Down

0 comments on commit 3d9df11

Please sign in to comment.