Skip to content

Commit

Permalink
Using estimate as jobtype
Browse files Browse the repository at this point in the history
  • Loading branch information
bclenet committed Apr 3, 2024
1 parent cf9fad9 commit 80100c9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions narps_open/pipelines/team_0ED6.py
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,7 @@ def get_preprocessing(self):
# COREGISTER - Coregister sbref to realigned and unwarped mean image of func
coregister_sbref_to_func = Node(Coregister(), name = 'coregister_sbref_to_func')
coregister_sbref_to_func.inputs.cost_function = 'nmi'
coregister_sbref_to_func.inputs.jobtype = 'estimate'
preprocessing.connect(
split_realign_unwarp_means, 'out2', # mean func
coregister_sbref_to_func, 'target')
Expand Down Expand Up @@ -178,6 +179,7 @@ def get_preprocessing(self):
# COREGISTER - Coregister sbref to anat
coregister_sbref_to_anat = Node(Coregister(), name = 'coregister_sbref_to_anat')
coregister_sbref_to_anat.inputs.cost_function = 'nmi'
coregister_sbref_to_func.inputs.jobtype = 'estimate'
preprocessing.connect(
segmentation_anat, 'native_gm_image', coregister_sbref_to_anat, 'target')
preprocessing.connect(
Expand Down

0 comments on commit 80100c9

Please sign in to comment.