File tree Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Expand file tree Collapse file tree 1 file changed +18
-0
lines changed Original file line number Diff line number Diff line change @@ -572,6 +572,24 @@ def init_bold_wf(
572
572
(bold_anat_wf , goodvoxels_bold_mask_wf , [
573
573
('outputnode.bold_file' , 'inputnode.bold_file' ),
574
574
]),
575
+ ]) # fmt:skip
576
+
577
+ ds_goodvoxels_mask = pe .Node (
578
+ DerivativesDataSink (
579
+ base_directory = fmriprep_dir ,
580
+ dismiss_entities = dismiss_echo (),
581
+ space = 'T1w' ,
582
+ desc = 'goodvoxels' ,
583
+ suffix = 'mask' ,
584
+ ),
585
+ name = 'ds_goodvoxels_mask' ,
586
+ run_without_submitting = True ,
587
+ )
588
+ ds_goodvoxels_mask .inputs .source_file = bold_file
589
+ workflow .connect ([
590
+ (goodvoxels_bold_mask_wf , ds_goodvoxels_mask , [
591
+ ('outputnode.goodvoxels_mask' , 'in_file' ),
592
+ ]),
575
593
(goodvoxels_bold_mask_wf , bold_fsLR_resampling_wf , [
576
594
('outputnode.goodvoxels_mask' , 'inputnode.volume_roi' ),
577
595
]),
You can’t perform that action at this time.
0 commit comments