-
Notifications
You must be signed in to change notification settings - Fork 308
Description
I want to only run files in session ses-LOC with task-retinotopy.
I wrote my Filter.json as:
{
"t1w": {
"datatype": "anat",
"session": "ImageNet02",
"acquisition": null,
"suffix": "T1w"
},
"bold": {
"datatype": "func",
"session": "LOC",
"task": "retinotopy",
"suffix": "bold"
}
}
Becasue the doc on this method is sort of ambiguous to me, I am not sure about my usage.
And my cml follows:
fmriprep-docker $bids_fold $out_dir participant \ --skip-bids-validation --participant-label core02 \ --bids-filter-file $home/Filter.json \ --fs-license-file $license_file \ --output-spaces anat MNI152NLin6Asym:res-2 fsLR \ --cifti-output 91k -w $work_dir
But it didn't work well, fmriprep actually loading all the existed files in all session folds with all task labels, it really bothers me a lot.
BTW few more questions on fmriprep:
when --use-aroma is set on, the fmriprep cifti output will generated by which of the volume datas? (i.e. The denosied one ~desc-smoothAROMAnonaggr_bold.nii.gz or the couterpart ~desc-preproc_bold.nii.gz?)