-
Notifications
You must be signed in to change notification settings - Fork 161
New issue
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
[SCHEMA] Reorganize schema #609
Conversation
entities.yaml specifies order, while actual definitions get their own files.
Some fields will probably be general, while others will be specific to the item class.
@satra @yarikoptic I'd especially like to get your thoughts on this structure. |
src/schema/items/T1w.yaml
Outdated
- .nii.gz | ||
- .nii | ||
- .json | ||
entities: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think this is the main thing that @yarikoptic will object to with this structure. If we have a single file for each suffix, for example, we will have a very large number of files to update any time we change the specification's supported entities.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is especially true for anatomical MRI scans, in which many suffixes have the same rules.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
On the other hand, I think there's a lot of benefit in having suffix-specific definitions at least. Perhaps we could start with the unfortunate duplication, and then try an inheritance-like procedure as discussed in #588. For example, there could be "parent" YAML files with entities and extensions specified that the "child" YAMLs (like T1w.yaml
) could inherit from. These parent files would correspond to the subgroups we currently have in our datatype YAML files. Does that make sense?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
But why to bring in entities
and extensions
in here?
- It is not per se "item"'s property, in particular whenever it might be both a
suffix
and adatatype
(ref: Separate schema item definitions from layout rules #603 (comment)) - I think records in
items/
should have no "class-specific" attributes and be of a uniform schema (which attributes they could have etc). I think if those are introduced, establishing later a schema (and a validator) for our schema would be trickier - What if we keep them ("extensions", "entities") where/as they are (i.e.
datatypes/anat.yaml
for T1w). Then files initems/
could just provide a file for every "name" (well -- "altname") mentioned in thedatatypes/*yaml
file in any section, thus just centralizing their description etc:- Even extensions could get their class (i.e. "extension") and we could have a bunch of (hidden ;)) files (like
.nii.gz.yaml
) which would provide description etc
- Even extensions could get their class (i.e. "extension") and we could have a bunch of (hidden ;)) files (like
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
was your comment a reply to mine? github seems placed it above mine -- just want to make sure
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#609 (comment) was before #609 (comment).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am inclined to think that the entities and extensions are properties of the items. It's just that we need to treat instances where one term refers to two difference classes (e.g., meg
as a datatype
and suffix
) as separate items. There should be a datatype-meg
and a suffix-meg
, for example. While that is my preference, though, I'm willing to defer to folks with more experience in this area.
I think records in items/ should have no "class-specific" attributes and be of a uniform schema (which attributes they could have etc). I think if those are introduced, establishing later a schema (and a validator) for our schema would be trickier
I don't think that's entirely possible. For example, entities are going to have features that are distinct from other classes, such as whether they take an index
or a label
, as well as their "entity-key". Metadata fields, at minimum, need "units". I think those are features of the actual items, rather than how they interact with other classes.
What if we keep them ("extensions", "entities") where/as they are (i.e. datatypes/anat.yaml for T1w). Then files in items/ could just provide a file for every "name" (well -- "altname") mentioned in the datatypes/*yaml file in any section, thus just centralizing their description etc:
Well, on the bright side we can always change things later, so I'm willing to give it a try. I can start with the filename, the description, and a "display-name" (per @effigies suggestion) for each of the suffixes. If we want to ultimately add the entities, extensions, and possibly metadata fields later on, that should be easy enough.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
eh the call ended while I was staring at this PR and thought to may be chat about it further (sorry for being slow with replies on github): I think if we make this items/
folder into terms/
it could be pretty much what BIDS_Terms folder is (just nicer yamls, from which jsonlds would be generated) with just with descriptions tuned up to not provide any "BIDS formatting" specifics, and rather describing the actual generic concept (subject, session, MR enhancement contrast agent, etc). Then it would be for schema "upstairs" (in entities/
etc) to use the terms provided under terms/
, so any "word" used in the schema has clear mapping to a term.
It would be ok for the same term to be used in different contexts (datatype/
folder vs a filename _suffix
). If there is a need to provide a "concept" of a composite term + context where it is used, I think we (or whoever needs them) could automatically "mint" them, at the level of composition they need. So there could be a concept of sub-*/[ses-*/]<datatype-term>/
corresponding to a "BIDS folder with data for a single acquisition session of a single subject", thus reflecting layout limitation of BIDS (i.e. we cannot have a folder with eeg data for all subjects).
I think it also boils down to "contexts" to provide mapping if there is no 1-to-1 mapping. E.g. (hypothetical since no concrete case comes to mind ATM; and may be not good here since IMHO the example term is a composition of modality + concept): If there was an _nchan-<number>
entity to signal number of channels in the file, then it would correspond to either ECGChannelCount or EEGChannelCount etc depending on the context -- datatype for which it is listed. So we would then need to be able somehow to say that entity points to different terms based on some other level (datatype ATM). For that we could provision that any entity listing does not only list its "use" (optional vs required; may be there is a better name) but also a "term". E.g. datatypes/eeg.yaml
could have
...
entities:
sub: required
ses: optional
task: required
acq: optional
run: optional
nchan:
use: optional
term: EEGChannelCount
and allow similar gimmick for any place where term could be used and we need to remap depending on the context.
To me, it is not yet totally clear on where we would need such "composite" terms. Since even in the case of EEGChannelCount, it is sameAs a generic "http://purl.org/nidash/nidm#NumberOfChannels", so I think overall it might be a utopia to fight combinatorics at the level of terms ;), and we should get away from it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Initial feedback
src/schema/items/recording.yaml
Outdated
More than one continuous recording file can be included (with different | ||
sampling frequencies). | ||
In such case use different labels. | ||
For example: `_recording-contrast`, `_recording-saturation`. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
unrelated to this PR, I wonder if we should just reserve examples:
key in the records to contain a list of possible examples? That would de-mix description from examples, and allow to harmonize rendering (ATM it could be "For example:", "e.g.", etc)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'd like to avoid incorporating examples into the schema files since a lot of the examples used throughout the specification for different entities are section-specific. For example, acq
has different examples for anatomical MRI and functional MRI in the text.
I think you're right, though, that the examples should be removed from the entity definitions. We should clean up those definitions.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I wrote a response nodding in agreement but then realized -- we are talking about the super dooper machine readable filenaming standard! If we have ANY examples we would anyways need to parse and validate them to be legit or specify them as records ({'datatype': 'anat', 'subject': '01', 'acq': 'blah', 'suffix: 'T1w', 'extension': '.nii.gz'}
) to start with and render when presented (as sub-{subject}/{datatype}/...
) since we know entities order etc. Then any section of the bids specification "manual" could just limit examples to a specific filter (datatype: anat
), and provide only matching examples. But then I also see a benefit from documentation providing examples across different datatypes for a given entity in data type agnostic section ;)
but anyways -- it is indeed a separate topic for some future work and indeed they just need to be removed from descriptions.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The filename format rendering will be generated in the specification text in #610. The examples I'm referring to are more text-based, like "acq may refer to something like different resolutions of T1w scans" in the Anatomical MRI section, while in the MEG _photos
section it might say that acq is good for distinguishing "acquisition of different photos of the same face". Those kinds of examples are highly section-specific and (IMHO) shouldn't be in the schema.
src/schema/items/T1w.yaml
Outdated
- .nii.gz | ||
- .nii | ||
- .json | ||
entities: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
But why to bring in entities
and extensions
in here?
- It is not per se "item"'s property, in particular whenever it might be both a
suffix
and adatatype
(ref: Separate schema item definitions from layout rules #603 (comment)) - I think records in
items/
should have no "class-specific" attributes and be of a uniform schema (which attributes they could have etc). I think if those are introduced, establishing later a schema (and a validator) for our schema would be trickier - What if we keep them ("extensions", "entities") where/as they are (i.e.
datatypes/anat.yaml
for T1w). Then files initems/
could just provide a file for every "name" (well -- "altname") mentioned in thedatatypes/*yaml
file in any section, thus just centralizing their description etc:- Even extensions could get their class (i.e. "extension") and we could have a bunch of (hidden ;)) files (like
.nii.gz.yaml
) which would provide description etc
- Even extensions could get their class (i.e. "extension") and we could have a bunch of (hidden ;)) files (like
src/schema/items/acq.yaml
Outdated
@@ -0,0 +1,21 @@ | |||
--- | |||
name: Acquisition |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
am I catching it right that filename pretty much specifies the altname
(#588)?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If @effigies' idea is accepted then yes I would rename these files to use the altnames instead.
Also make markers and headshape into auxmodalities.
Related to bids-standard#593.
src/schema/items/echo.yaml
Outdated
name: Echo | ||
class: entity | ||
description: | | ||
Multi-echo data MUST be split into one file per echo. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh, that is a good example where we have not just a description of a term (EchoTime which could be relevant for both entity AND sidecar file), but the description incorporating BIDS specific that it is REQUIRED (as an entity) in cases of multi-echo recording. So now I wonder if indeed descriptions in terms should have some reflection of being BIDS-Terms ;) or we just provide descriptions like this at the level of entity etc definitions (which would also describe format
etc) to compliment generic description of the term/concept ("The echo time (TE) for the acquisition, specified in seconds").
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeap yeap -- the latter: term description should be generic. entity
etc description would compliment with additional BIDS specific information for that "level" (term vs datatype vs suffix)! LD people then could get a proper list of "composite" terms (e.g. entity-EchoTime and sidecar-EchoTime, although that one would unlikely have any custom description) with "composite" descriptions thus not conflicting or duplicating anything!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh wonderful - and validators then could validate that various instances of the term (e.g. in sidecar and filename entity) correspond since they do come from the same term, thus not hardcoding any kind of association!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The one I'm stuck on right now is "modality". Under Common Principles, modality has a very nice new definition:
Modality: the category of brain data recorded by a file. For MRI data, different pulse sequences are considered distinct modalities, such as T1w, bold or dwi. For passive recording techniques, such as EEG, MEG or iEEG, the technique is sufficiently uniform to define the modalities eeg, meg and ieeg. When applicable, the modality is indicated in the suffix. The modality may overlap with, but should not be confused with the data type.
On the other hand, the modality entity (mod-<label>
) has its own definition, where it refers to the corresponding modality for the file. The Common Principles definition really doesn't work for the entity, but I don't like the idea of making the principle definition less informative.
I don't think there's a good way of making one definition for both. WDYT?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why do you think it doesn't work for the entity, because of When applicable, the modality is indicated in the suffix
?
Note: The only use of _mod-
ATM is actually to absorb the suffix in MRI data whenever suffix becomes _defacemask
, so if it works for suffix (e.g. T1w
), it works for the entity IMHO.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The full definition of "modality" just doesn't seem relevant to the corresponding entity. At least it provides too much information that might confuse people. I don't want to cut it down though. I think the level of detail is necessary to understand the main concept defined in Common principles.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm just going to drop Common principles from the schema for now. Since the focus on this PR is separating context from description and adding the BIDS terms, I think we can just circle around to it later.
src/schema/items/task.yaml
Outdated
Each task has a unique label that MUST only consist of letters and/or | ||
numbers (other characters, including spaces and underscores, are not | ||
allowed). | ||
Those labels MUST be consistent across subjects and sessions. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Similarly to -echo
entity above, this description is not description of the "task" term, but again for the restriction bids imposes, and specifically to the "entity's label". So there could be a term "Task" describing what the heck task as a term in general is about. Then entity-task
(composite) is currently what TaskName is currently. but IMHO the one which is a composition of a task as a BIDS entity which imposes additional restrictions. And I do not see ATM any "relationship" to be established between TaskName and TaskDescription -- that they aren't completely independent one from another. Most likely there should be 3 terms (Task, TaskName, TaskDescription) where the latter two are properties of a Task.
Auxiliary data types/modalities are proving to be very difficult to manage in #610, so I'm leaning toward adopting a purely top-down organization with this PR. I think we can adjust as needed after. EDIT: To clarify, this means removing the |
This shifts to a pure top-down approach for the moment.
I used the jsonld version. Thanks to @nqueder.
…ification into ref/schema-reorg
This is way out of date and combines too many changes. I've opened #762, which may be a better way to add the metadata files at least. We can discuss reorganizing the schema itself in another issue/PR. |
Closes #603. This does not currently include updates to the schema-related code, but we can use it to discuss the changes to the schema itself.