-
Notifications
You must be signed in to change notification settings - Fork 4
Updated version of MRIAcquisition for v5 #43
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
Merged
lzehl
merged 24 commits into
openMetadataInitiative:dev
from
Alixbonard:dev-MRIAquisition
Feb 20, 2026
Merged
Changes from all commits
Commits
Show all changes
24 commits
Select commit
Hold shift + click to select a range
bbfcff7
Update webhook to only trigger the dev pipeline
apdavison c58facd
Fix JSON sent by curl in openMINDS_upstream.yml
apdavison a0956c5
Merge branch 'openMetadataInitiative:v1' into dev-MRIAquisition
Alixbonard e61234c
Add core:FIle to input in MRIAcquisition
61c88f6
Add output to MRIAcquisition
352d719
Update required with input, device, speciementOrientation and output …
74a77c2
Update schemas/activity/MRIAcquisition.schema.tpl.json
Alixbonard 19fe330
Move required fields in MRIAcquisition schema
Alixbonard f8f62fd
Reorder specimenOrientation and output fields in MRIAcquisition schema
Alixbonard 05b2f4e
Remove file from input
a208b13
Add distortionCorrection, motionCorrection, registrationData
4d0062b
Rename MRIAcquisition by staticMRIAcquisition
c529478
Apply suggestion from @lzehl
Alixbonard e6e0892
Apply suggestion from @lzehl
Alixbonard 3898a70
Apply suggestion from @lzehl
Alixbonard dce2b03
Apply suggestion from @lzehl
Alixbonard 6ea8691
Apply suggestion from @lzehl
Alixbonard 77ea5ce
Apply suggestion from @lzehl
Alixbonard 8e7ede4
Apply suggestion from @lzehl
Alixbonard 2713736
Apply suggestion from @lzehl
Alixbonard debc490
Add "type": "array" to contrastAgent, distortionCorrection, motionCo…
76098b5
Add targetAnatomy property
963742d
fix typo
53963c7
Rename MRIAcquisition instead of staticMRIAcquisition
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
|
Alixbonard marked this conversation as resolved.
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,33 +1,82 @@ | ||
| { | ||
| "_extends": "/core/schemas/research/experimentalActivity.schema.tpl.json", | ||
| "required": [ | ||
| "device", | ||
| "input", | ||
| "output", | ||
| "specimenOrientation" | ||
| ], | ||
| "properties": { | ||
| "contrastAgent": { | ||
| "_instruction": "Add the contrast agent used for this scan.", | ||
| "_instruction": "Add the contrast agent(s) administered for this acquisition, including for each the agent identity and administered amount; if no contrast agent was used, leave this field null. Include all agents given prior to or during the scan.", | ||
| "_linkedTypes": [ | ||
| "chemicals:AmountOfChemical" | ||
| ] | ||
| ], | ||
| "minItems": 1, | ||
| "type": "array", | ||
| "uniqueItems": true | ||
| }, | ||
| "device": { | ||
| "_instruction": "Add the MRI machine setting used for this scan.", | ||
| "_instruction": "Add the magnetic resonance imaging (MRI) scanner used for this acquisition. This reference should identify the specific device configuration under which the scan was performed.", | ||
| "_linkedTypes": [ | ||
| "neuroimaging:MRIScannerUsage" | ||
| ] | ||
| }, | ||
| "distortionCorrection": { | ||
| "_instruction": "Add the distortion correction data used for this acquisition, linking to the calibration files applied during image reconstruction or post-processing. If no distortion correction was performed, leave this field null.", | ||
| "_linkedTypes": [ | ||
| "core:File" | ||
| ], | ||
| "minItems": 1, | ||
| "type": "array", | ||
| "uniqueItems": true | ||
| }, | ||
| "input": { | ||
| "_instruction": "Add the state of the subject or tissue sample before this session.", | ||
| "_instruction": "Add the specimen (subject or tissue sample) in the physical and biological state in which it was scanned, referencing the corresponding specimen record at the time of imaging.", | ||
| "_linkedTypes": [ | ||
| "core:SubjectState", | ||
| "core:TissueSampleState" | ||
| ] | ||
| }, | ||
| "motionCorrection": { | ||
| "_instruction": "Add the motion correction data used for this acquisition, linking to the calibration files or reference images applied during image reconstruction or post-processing. If no motion correction was performed, leave this field null.", | ||
| "_linkedTypes": [ | ||
| "core:File" | ||
| ], | ||
| "minItems": 1, | ||
| "type": "array", | ||
| "uniqueItems": true | ||
| }, | ||
| "output":{ | ||
| "_instruction": "Add the output data generated by this acquisition by linking to one or more files containing the primary imaging outputs and/or, if applicable, any secondary reconstructed or corrected outputs produced during post-processing.", | ||
| "_linkedTypes": [ | ||
| "core:File" | ||
| ], | ||
| "minItems": 1, | ||
| "type": "array", | ||
| "uniqueItems": true | ||
| }, | ||
| "registrationData": { | ||
| "_instruction": "Add the registration data used for this acquisition, linking to the transformation and/or reference files applied during image alignment in post-processing. If no registration was performed, leave this field null.", | ||
| "_linkedTypes": [ | ||
| "core:File" | ||
| ], | ||
| "minItems": 1, | ||
| "type": "array", | ||
| "uniqueItems": true | ||
|
|
||
| }, | ||
| "specimenOrientation": { | ||
| "_instruction": "Add the anatomical orientation of the specimen in the scanner.", | ||
| "_instruction": "Add the specimen orientation as the anatomical directions corresponding to the scanner X, Y, and Z axes, describing the alignment of the specimen's anatomy with the scanner coordinate system. Note that this orientation may differ from the prescribed slice orientation, especially in nonstandard specimen positioning.", | ||
| "_linkedTypes": [ | ||
| "controlledTerms:AnatomicalAxesOrientation" | ||
| ] | ||
| }, | ||
| "targetAnatomy": { | ||
| "_instruction": "Add the target anatomy, indicating the primary anatomical structure or region intended to be imaged in this acquisition. This field describes the imaging objective (for example, organ, tissue, or structure) and may be derived from the acquisition protocol description.", | ||
| "_linkedCategories": [ | ||
| "anatomicalLocation" | ||
| ] | ||
| } | ||
| }, | ||
| "required": [ | ||
| "device" | ||
| ] | ||
| } | ||
| } |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.