You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In an effort to unify the disparate ways of encoding within-dataset paths and remove ambiguity, BIDS-URIs were introduced. You can now end up with IntendedFor = ['bids::sub-01/func/sub-01_task-rest_bold.nii.gz'] where previously you would have had IntendedFor = ['func/sub-01_task-rest_bold.nii.gz'].
As a roadmap:
Handle within-dataset URIs (bids::*) for IntendedFor and any other field where we may support linking files
Parse the DatasetLinks field from dataset description; if x exists in DatasetLinks and is in a loaded dataset (e.g., a derivative), then bids:x:* URIs should resolve to existing files.
The text was updated successfully, but these errors were encountered:
In an effort to unify the disparate ways of encoding within-dataset paths and remove ambiguity, BIDS-URIs were introduced. You can now end up with
IntendedFor = ['bids::sub-01/func/sub-01_task-rest_bold.nii.gz']
where previously you would have hadIntendedFor = ['func/sub-01_task-rest_bold.nii.gz']
.As a roadmap:
bids::*
) forIntendedFor
and any other field where we may support linking filesDatasetLinks
field from dataset description; ifx
exists inDatasetLinks
and is in a loaded dataset (e.g., a derivative), thenbids:x:*
URIs should resolve to existing files.The text was updated successfully, but these errors were encountered: