@@ -605,15 +605,13 @@ def init_bold_fsLR_resampling_wf(
605
605
)
606
606
607
607
joinnode = pe .JoinNode (
608
- niu .IdentityInterface (fields = ['bold_fsLR' , 'weights_text' ]),
608
+ niu .IdentityInterface (fields = ['bold_fsLR' ]),
609
609
name = 'joinnode' ,
610
610
joinsource = 'itersource' ,
611
611
)
612
612
613
613
outputnode = pe .Node (
614
- niu .IdentityInterface (
615
- fields = ['bold_fsLR' , 'goodvoxels_mask' , 'weights_text' ],
616
- ),
614
+ niu .IdentityInterface (fields = ['bold_fsLR' , 'goodvoxels_mask' ]),
617
615
name = 'outputnode' ,
618
616
)
619
617
@@ -667,10 +665,7 @@ def init_bold_fsLR_resampling_wf(
667
665
# RibbonVolumeToSurfaceMapping.sh
668
666
# Line 85 thru ...
669
667
volume_to_surface = pe .Node (
670
- VolumeToSurfaceMapping (
671
- method = "ribbon-constrained" ,
672
- output_weights_text = "output_weights.txt" ,
673
- ),
668
+ VolumeToSurfaceMapping (method = "ribbon-constrained" ),
674
669
name = "volume_to_surface" ,
675
670
mem_gb = mem_gb * 3 ,
676
671
n_procs = omp_nthreads ,
@@ -738,8 +733,6 @@ def init_bold_fsLR_resampling_wf(
738
733
# Output
739
734
(mask_fsLR , joinnode , [('out_file' , 'bold_fsLR' )]),
740
735
(joinnode , outputnode , [('bold_fsLR' , 'bold_fsLR' )]),
741
- (volume_to_surface , joinnode , [('weights_text_file' , 'weights_text' )]),
742
- (joinnode , outputnode , [('weights_text' , 'weights_text' )]),
743
736
]) # fmt:skip
744
737
745
738
if estimate_goodvoxels :
0 commit comments