Skip to content

Commit 212e6f4

Browse files
author
openMINDS pipeline
committed
Build triggered by workflow dispatch
1 parent 7c6f972 commit 212e6f4

18 files changed

Lines changed: 304 additions & 250 deletions

File tree

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
classdef DataLocation < openminds.internal.abstract.MixedTypeSet
2+
properties (Constant, Hidden)
3+
ALLOWED_TYPES = [ ...
4+
"openminds.core.data.File", ...
5+
"openminds.core.miscellaneous.WebResource" ...
6+
]
7+
IS_SCALAR = false
8+
end
9+
end
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
classdef DigitalIdentifier < openminds.internal.abstract.MixedTypeSet
2+
properties (Constant, Hidden)
3+
ALLOWED_TYPES = [ ...
4+
"openminds.core.digitalidentifier.DOI", ...
5+
"openminds.core.digitalidentifier.ISBN", ...
6+
"openminds.core.digitalidentifier.RRID" ...
7+
]
8+
IS_SCALAR = true
9+
end
10+
end
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
classdef DataLocation < openminds.internal.abstract.MixedTypeSet
2+
properties (Constant, Hidden)
3+
ALLOWED_TYPES = [ ...
4+
"openminds.core.data.File", ...
5+
"openminds.core.miscellaneous.WebResource" ...
6+
]
7+
IS_SCALAR = false
8+
end
9+
end
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
classdef DigitalIdentifier < openminds.internal.abstract.MixedTypeSet
2+
properties (Constant, Hidden)
3+
ALLOWED_TYPES = [ ...
4+
"openminds.core.digitalidentifier.DOI", ...
5+
"openminds.core.digitalidentifier.ISBN", ...
6+
"openminds.core.digitalidentifier.RRID" ...
7+
]
8+
IS_SCALAR = true
9+
end
10+
end

code/types/latest/+openminds/+computation/ValidationTest.m

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@
1818
% fullName : (1,1) string
1919
% Enter a descriptive full name (or title) for this research product. Note that this should be a suitable full name for all attached research product versions.
2020
%
21-
% hasVersion : (1,:) <a href="matlab:help openminds.computation.ValidationTestVersion" style="font-weight:bold">ValidationTestVersion</a>
22-
% Add all versions of this validation test.
23-
%
2421
% homepage : (1,1) string
2522
% Enter the internationalized resource identifier (IRI) to the homepage of this research product.
2623
%
@@ -63,10 +60,6 @@
6360
% Enter a descriptive full name (or title) for this research product. Note that this should be a suitable full name for all attached research product versions.
6461
fullName (1,1) string
6562

66-
% Add all versions of this validation test.
67-
hasVersion (1,:) openminds.computation.ValidationTestVersion ...
68-
{mustBeListOfUniqueItems(hasVersion)}
69-
7063
% Enter the internationalized resource identifier (IRI) to the homepage of this research product.
7164
homepage (1,1) string
7265

@@ -106,7 +99,6 @@
10699
'custodian', ["openminds.core.actors.Consortium", "openminds.core.actors.Organization", "openminds.core.actors.Person"], ...
107100
'developer', ["openminds.core.actors.Consortium", "openminds.core.actors.Organization", "openminds.core.actors.Person"], ...
108101
'digitalIdentifier', "openminds.core.digitalidentifier.DOI", ...
109-
'hasVersion', "openminds.computation.ValidationTestVersion", ...
110102
'referenceDataAcquisition', "openminds.controlledterms.Technique", ...
111103
'scope', "openminds.controlledterms.ModelScope", ...
112104
'scoreType', "openminds.controlledterms.DifferenceMeasure", ...

code/types/latest/+openminds/+computation/ValidationTestVersion.m

Lines changed: 70 additions & 62 deletions
Large diffs are not rendered by default.

code/types/latest/+openminds/+computation/WorkflowRecipe.m

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@
1818
% fullName : (1,1) string
1919
% Enter a descriptive full name (or title) for this research product. Note that this should be a suitable full name for all attached research product versions.
2020
%
21-
% hasVersion : (1,:) <a href="matlab:help openminds.computation.WorkflowRecipeVersion" style="font-weight:bold">WorkflowRecipeVersion</a>
22-
% Add all versions of this workflow recipe.
23-
%
2421
% homepage : (1,1) string
2522
% Enter the internationalized resource identifier (IRI) to the homepage of this research product.
2623
%
@@ -51,10 +48,6 @@
5148
% Enter a descriptive full name (or title) for this research product. Note that this should be a suitable full name for all attached research product versions.
5249
fullName (1,1) string
5350

54-
% Add all versions of this workflow recipe.
55-
hasVersion (1,:) openminds.computation.WorkflowRecipeVersion ...
56-
{mustBeListOfUniqueItems(hasVersion)}
57-
5851
% Enter the internationalized resource identifier (IRI) to the homepage of this research product.
5952
homepage (1,1) string
6053

@@ -77,8 +70,7 @@
7770
LINKED_PROPERTIES = struct(...
7871
'custodian', ["openminds.core.actors.Consortium", "openminds.core.actors.Organization", "openminds.core.actors.Person"], ...
7972
'developer', ["openminds.core.actors.Consortium", "openminds.core.actors.Organization", "openminds.core.actors.Person"], ...
80-
'digitalIdentifier', "openminds.core.digitalidentifier.DOI", ...
81-
'hasVersion', "openminds.computation.WorkflowRecipeVersion" ...
73+
'digitalIdentifier', "openminds.core.digitalidentifier.DOI" ...
8274
)
8375
EMBEDDED_PROPERTIES = struct(...
8476
)

code/types/latest/+openminds/+computation/WorkflowRecipeVersion.m

Lines changed: 66 additions & 58 deletions
Large diffs are not rendered by default.

code/types/latest/+openminds/+publications/LivePaper.m

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,6 @@
1818
% fullName : (1,1) string
1919
% Enter a descriptive full name (or title) for this research product. Note that this should be a suitable full name for all attached research product versions.
2020
%
21-
% hasVersion : (1,:) <a href="matlab:help openminds.publications.LivePaperVersion" style="font-weight:bold">LivePaperVersion</a>
22-
% Add all versions of this live paper.
23-
%
2421
% homepage : (1,1) string
2522
% Enter the internationalized resource identifier (IRI) to the homepage of this research product.
2623
%
@@ -51,10 +48,6 @@
5148
% Enter a descriptive full name (or title) for this research product. Note that this should be a suitable full name for all attached research product versions.
5249
fullName (1,1) string
5350

54-
% Add all versions of this live paper.
55-
hasVersion (1,:) openminds.publications.LivePaperVersion ...
56-
{mustBeListOfUniqueItems(hasVersion)}
57-
5851
% Enter the internationalized resource identifier (IRI) to the homepage of this research product.
5952
homepage (1,1) string
6053

@@ -77,8 +70,7 @@
7770
LINKED_PROPERTIES = struct(...
7871
'author', ["openminds.core.actors.Consortium", "openminds.core.actors.Organization", "openminds.core.actors.Person"], ...
7972
'custodian', ["openminds.core.actors.Consortium", "openminds.core.actors.Organization", "openminds.core.actors.Person"], ...
80-
'digitalIdentifier', "openminds.core.digitalidentifier.DOI", ...
81-
'hasVersion', "openminds.publications.LivePaperVersion" ...
73+
'digitalIdentifier', "openminds.core.digitalidentifier.DOI" ...
8274
)
8375
EMBEDDED_PROPERTIES = struct(...
8476
)

code/types/latest/+openminds/+publications/LivePaperVersion.m

Lines changed: 66 additions & 58 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)