Skip to content

Commit 73ecb86

Browse files
authored
FIX: Remove bad metadata input from ds_goodvoxels_mask (#3037)
Currently we're creating the following `.json` file for `goodvoxels_mask`: ```json { "keys": [ "fsaverage5", "fsnative" ] } ``` This is not serving any useful purpose and needs to be deleted. Looking up masks, we can put in some recommended metadata, such as the type of mask it is. I don't want to figure out sources right now. Closes #3035.
2 parents aee865d + 1d7eaca commit 73ecb86

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

fmriprep/workflows/bold/outputs.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -752,6 +752,7 @@ def init_func_derivatives_wf(
752752
space='T1w',
753753
desc='goodvoxels',
754754
suffix='mask',
755+
Type='ROI', # Metadata
755756
compress=True,
756757
dismiss_entities=("echo",),
757758
),
@@ -764,7 +765,7 @@ def init_func_derivatives_wf(
764765
(inputnode, ds_goodvoxels_mask, [
765766
('source_file', 'source_file'),
766767
('goodvoxels_mask', 'in_file'),
767-
('surf_refs', 'keys')]),
768+
]),
768769
])
769770
# fmt:on
770771

0 commit comments

Comments
 (0)