Skip to content

Commit cfb045e

Browse files
author
openMINDS pipeline
committed
Build triggered by workflow dispatch
1 parent 8620950 commit cfb045e

2 files changed

Lines changed: 10 additions & 1 deletion

File tree

code/types/latest/+openminds/+neuroimaging/+device/MRIScannerUsage.m

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,9 @@
1212
% accelerationFactor : (1,1) int64
1313
% Enter the acceleration factor (R), defined as the ratio of fully sampled to reduced k-space acquisition, with R ≥ 1 and R = 1 indicating no acceleration. This value is specified in the sequence protocol and can be retrieved from the DICOM header.
1414
%
15+
% device : (1,1) <a href="matlab:help openminds.neuroimaging.device.MRIScanner" style="font-weight:bold">MRIScanner</a>
16+
% Add the MRI Scanner used.
17+
%
1518
% diffusionEncodingParameters : (1,:) <a href="matlab:help openminds.core.data.File" style="font-weight:bold">File</a>
1619
% Add two diffusion encoding files: a b-value file specifying the diffusion weighting for each acquired volume and a b-vector file specifying the corresponding three-dimensional diffusion gradient directions. Ensure that both files are correctly ordered, that b-vectors are normalized, and that they are aligned with the image volumes.
1720
%
@@ -117,6 +120,10 @@
117120
accelerationFactor (1,:) int64 ...
118121
{mustBeScalarOrEmpty(accelerationFactor), mustBeInteger(accelerationFactor), mustBeGreaterThanOrEqual(accelerationFactor, 1)}
119122

123+
% Add the MRI Scanner used.
124+
device (1,:) openminds.neuroimaging.device.MRIScanner ...
125+
{mustBeScalarOrEmpty(device)}
126+
120127
% Add two diffusion encoding files: a b-value file specifying the diffusion weighting for each acquired volume and a b-vector file specifying the corresponding three-dimensional diffusion gradient directions. Ensure that both files are correctly ordered, that b-vectors are normalized, and that they are aligned with the image volumes.
121128
diffusionEncodingParameters (1,:) openminds.core.data.File ...
122129
{mustBeMinLength(diffusionEncodingParameters, 2), mustBeMaxLength(diffusionEncodingParameters, 2)}
@@ -238,7 +245,7 @@
238245
end
239246

240247
properties (Access = protected)
241-
Required = ["echoTime", "repetitionTime", "sliceTiming"]
248+
Required = ["device", "echoTime", "repetitionTime", "sliceTiming"]
242249
end
243250

244251
properties (Constant, Hidden)
@@ -249,6 +256,7 @@
249256
LINKED_PROPERTIES = struct(...
250257
'MRIWeighting', "openminds.controlledterms.MRIWeighting", ...
251258
'MTPulseShape', "openminds.controlledterms.PulseShape", ...
259+
'device', "openminds.neuroimaging.device.MRIScanner", ...
252260
'diffusionEncodingParameters', "openminds.core.data.File", ...
253261
'fatSuppressionTechnique', "openminds.controlledterms.MRIFatSuppressionTechnique", ...
254262
'fieldOfView', [], ...

code/types/v3.0/+openminds/+controlledterms/UBERONParcellation.m

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2549,6 +2549,7 @@
25492549
"trigeminalGanglion", ...
25502550
"trigeminalNerve", ...
25512551
"trigeminalNerveFibers", ...
2552+
"trigeminalNerveRoot", ...
25522553
"trigeminalNuclearComplex", ...
25532554
"trigeminalNucleus", ...
25542555
"trigeminalSensoryNucleus", ...

0 commit comments

Comments
 (0)