Skip to content
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

[ENH] add hemi entity to schema #917

Merged
merged 6 commits into from
Nov 9, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 16 additions & 6 deletions src/schema/objects/entities.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,16 @@ flip:
value which needs to be stored in the field `FlipAngle` of the separate JSON file.
type: string
format: index
hemisphere:
name: Hemisphere
entity: hemi
description: |
The hemi entity is used for storing information about a structure that is restricted to a hemibrain.
Remi-Gau marked this conversation as resolved.
Show resolved Hide resolved
type: string
format: label
enum:
- "L"
- "R"
inversion:
name: Inversion Time
entity: inv
Expand Down Expand Up @@ -135,8 +145,8 @@ mtransfer:
respectively.
type: string
enum:
- 'on'
- 'off'
- "on"
Remi-Gau marked this conversation as resolved.
Show resolved Hide resolved
- "off"
part:
name: Part
entity: part
Expand All @@ -157,10 +167,10 @@ part:
omitted.
type: string
enum:
- mag
- phase
- real
- imag
- mag
- phase
- real
- imag
processing:
name: Processed (on device)
entity: proc
Expand Down
1 change: 1 addition & 0 deletions src/schema/rules/entities.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
- part
- recording
- processing
- hemi
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

From my reading of the specs this is the correct place for this one.

- space
- split
- resolution
Expand Down