We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I think that are differences between the code and the schema we might want to "clarify" or realign before moving on.
mri modality contains :
mri
See the whole listing here:
{ "mri": { "name": "Magnetic Resonance Imaging", "datatypes": [ "anat", "dwi", "fmap", "func", "perf" ] }, "eeg": { "name": "Electroencephalography", "datatypes": [ "eeg" ] }, "ieeg": { "name": "Intracranial Electroencephalography", "datatypes": [ "ieeg" ] }, "meg": { "name": "Magnetoencephalography", "datatypes": [ "meg" ] }, "beh": { "name": "Behavioral experiments", "datatypes": [ "beh" ] }
An example of one of those "groups" for that anat datatype.
anat
{ "suffixes": [ "T1w", "T2w", "PDw", "T2starw", "FLAIR", "inplaneT1", "inplaneT2", "PDT2", "angio" ], "extensions": [ ".nii.gz", ".nii", ".json" ], "entities": { "sub": "required", "ses": "optional", "run": "optional", "acq": "optional", "ce": "optional", "rec": "optional", "part": "optional" } },
Especially bids.query has a slightly different meaning for some of those words.
bids.query
Modality will mean one of the following:
There is no datatype in the code but we a type that usually refers to the suffix of a given file (bold, T1w...).
datatype
type
bold
T1w
I am tempted to realign our terminology on the schema and that of the BIDS specs.
It should not be too complicated to do but it would change how the calls to bids.query.
PS: will put that on the agenda of the next meeting.
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
I think that are differences between the code and the schema we might want to "clarify" or realign before moving on.
BIDS-schema
Modalities contain datatypes.
mri
modality contains :See the whole listing here:
Dataypes contain several "groups" with several possible suffixes for each group.
An example of one of those "groups" for that
anat
datatype.BIDS-matlab code
Especially
bids.query
has a slightly different meaning for some of those words.Modality will mean one of the following:
There is no
datatype
in the code but we atype
that usually refers to the suffix of a given file (bold
,T1w
...).I am tempted to realign our terminology on the schema and that of the BIDS specs.
It should not be too complicated to do but it would change how the calls to
bids.query
.PS: will put that on the agenda of the next meeting.
The text was updated successfully, but these errors were encountered: