forked from incf-nidash/ni-o
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nidm-results.owl
1256 lines (532 loc) · 41.1 KB
/
nidm-results.owl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@prefix : <http://www.semanticweb.org/owl/owlapi/turtle#> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix nidm: <http://www.incf.org/ns/nidash/nidm#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@base <http://www.incf.org/ns/nidash/nidm#> .
<http://www.incf.org/ns/nidash/nidm#> rdf:type owl:Ontology ;
dct:title "NIDM Results Vocabulary"^^xsd:string ;
dct:description "A vocabulary that provides terms for the Neuroimaging Data Model (NIDM) Results Component" ;
dct:creator "Nolan Nichols <http://orcid.org/0000-0003-1099-3328>" .
#################################################################
#
# Annotation properties
#
#################################################################
### http://purl.org/dc/terms/contributor
dct:contributor rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/creator
dct:creator rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/date
dct:date rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/description
dct:description rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/publisher
dct:publisher rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/rights
dct:rights rdf:type owl:AnnotationProperty .
### http://purl.org/dc/terms/title
dct:title rdf:type owl:AnnotationProperty .
### http://www.w3.org/ns/prov#definition
prov:definition rdf:type owl:AnnotationProperty .
#################################################################
#
# Object Properties
#
#################################################################
### http://www.incf.org/ns/nidash/nidm#atCoordinateSpace
nidm:atCoordinateSpace rdf:type owl:ObjectProperty ;
prov:definition "Attribute between a SpatialImage entity and a CoordinateSpace entity that is used to associate spatial metadata with a physical file." ;
rdfs:range nidm:CoordinateSpace ;
rdfs:domain nidm:Map .
### http://www.incf.org/ns/nidash/nidm#coordinateSystem
nidm:coordinateSystem rdf:type owl:ObjectProperty ;
prov:definition "Type of coordinate system." ;
rdfs:domain nidm:CoordinateSpace ;
rdfs:range nidm:MniCoordinateSystem .
#################################################################
#
# Data properties
#
#################################################################
### http://www.incf.org/ns/nidash/nidm#atCoordinateSpace
nidm:atCoordinateSpace rdf:type owl:DatatypeProperty ;
prov:definition "Attribute between a SpatialImage entity and a CoordinateSpace entity that is used to associate spatial metadata with a physical file." .
### http://www.incf.org/ns/nidash/nidm#clusterLabelId
nidm:clusterLabelId rdf:type owl:DatatypeProperty ;
prov:definition "Integer associated with a particular cluster as specified in the clusterLabelsMap." ;
rdfs:domain nidm:ClusterStatistic ;
rdfs:range xsd:integer .
### http://www.incf.org/ns/nidash/nidm#clusterLabelsMap
nidm:clusterLabelsMap rdf:type owl:DatatypeProperty ;
prov:definition "A map whose value at each location denotes cluster membership. Each cluster is denoted by a different integer." ;
rdfs:domain nidm:ExcursionSet ;
rdfs:range xsd:anyURI .
### http://www.incf.org/ns/nidash/nidm#clusterSizeInResels
nidm:clusterSizeInResels rdf:type owl:DatatypeProperty ;
prov:definition "Number of resels that make up a cluster." .
### http://www.incf.org/ns/nidash/nidm#clusterSizeInVertices
nidm:clusterSizeInVertices rdf:type owl:DatatypeProperty ;
prov:definition "Number of vertices that make up the cluster." ;
rdfs:domain nidm:ClusterStatistic ,
nidm:ExtentThreshold ;
rdfs:range xsd:positiveInteger .
### http://www.incf.org/ns/nidash/nidm#clusterSizeInVoxels
nidm:clusterSizeInVoxels rdf:type owl:DatatypeProperty ;
prov:definition "Number of voxels that make up the cluster." ;
rdfs:domain nidm:ClusterStatistic ,
nidm:ExtentThreshold ;
rdfs:range xsd:positiveInteger .
### http://www.incf.org/ns/nidash/nidm#contrastName
nidm:contrastName rdf:type owl:DatatypeProperty ;
prov:definition "Name of the contrast." ;
rdfs:domain nidm:ContrastMap ,
nidm:ContrastWeights ,
nidm:StatisticalMap ;
rdfs:range xsd:string .
### http://www.incf.org/ns/nidash/nidm#coordinate1
nidm:coordinate1 rdf:type owl:DatatypeProperty ;
prov:definition "Coordinate along the first dimension in voxels." ;
rdfs:domain nidm:Coordinate ;
rdfs:range xsd:integer .
### http://www.incf.org/ns/nidash/nidm#coordinate1InUnits
nidm:coordinate1InUnits rdf:type owl:DatatypeProperty ;
prov:definition "Coordinate along the first dimension in voxel units." ;
rdfs:domain nidm:Coordinate ;
rdfs:range xsd:float .
### http://www.incf.org/ns/nidash/nidm#coordinate2
nidm:coordinate2 rdf:type owl:DatatypeProperty ;
prov:definition "Coordinate along the second dimension in voxels." ;
rdfs:domain nidm:Coordinate ;
rdfs:range xsd:integer .
### http://www.incf.org/ns/nidash/nidm#coordinate2InUnits
nidm:coordinate2InUnits rdf:type owl:DatatypeProperty ;
prov:definition "Coordinate along the second dimension in voxel units." ;
rdfs:domain nidm:Coordinate ;
rdfs:range xsd:float .
### http://www.incf.org/ns/nidash/nidm#coordinate3
nidm:coordinate3 rdf:type owl:DatatypeProperty ;
prov:definition "Coordinate along the third dimension in voxels." ;
rdfs:domain nidm:Coordinate ;
rdfs:range xsd:integer .
### http://www.incf.org/ns/nidash/nidm#coordinate3InUnits
nidm:coordinate3InUnits rdf:type owl:DatatypeProperty ;
prov:definition "Coordinate along the third dimension in voxel units" ;
rdfs:domain nidm:Coordinate ;
rdfs:range xsd:float .
### http://www.incf.org/ns/nidash/nidm#dimensions
nidm:dimensions rdf:type owl:DatatypeProperty ;
prov:definition "Dimensions of some N-dimensional data." ;
rdfs:domain nidm:CoordinateSpace ;
rdfs:range xsd:string .
### http://www.incf.org/ns/nidash/nidm#effectDegreesOfFreedom
nidm:effectDegreesOfFreedom rdf:type owl:DatatypeProperty ;
prov:definition "Degrees of freedom of the effect." ;
rdfs:domain nidm:TStatisticMap ;
rdfs:range xsd:float .
### http://www.incf.org/ns/nidash/nidm#equivalentZStatistic
nidm:equivalentZStatistic rdf:type owl:DatatypeProperty ;
prov:definition "Statistic value transformed into Z units; the output of a process which takes a non-normal statistic and transforms it to an equivalent z score." ;
rdfs:domain nidm:PeakStatistic ;
rdfs:range xsd:float .
### http://www.incf.org/ns/nidash/nidm#errorDegreesOfFreedom
nidm:errorDegreesOfFreedom rdf:type owl:DatatypeProperty ;
prov:definition "Degrees of freedom of the error." ;
rdfs:domain nidm:TStatisticMap ;
rdfs:range xsd:float .
### http://www.incf.org/ns/nidash/nidm#expectedNumberOfClusters
nidm:expectedNumberOfClusters rdf:type owl:DatatypeProperty ;
prov:definition "Expected number of clusters in an excursion set." ;
rdfs:domain nidm:StatisticImageProperties ;
rdfs:range xsd:float .
### http://www.incf.org/ns/nidash/nidm#expectedNumberOfVerticesPerCluster
nidm:expectedNumberOfVerticesPerCluster rdf:type owl:DatatypeProperty ;
prov:definition "Expected number of vertices in a cluster." ;
rdfs:domain nidm:StatisticImageProperties ;
rdfs:range xsd:float .
### http://www.incf.org/ns/nidash/nidm#expectedNumberOfVoxelsPerCluster
nidm:expectedNumberOfVoxelsPerCluster rdf:type owl:DatatypeProperty ;
prov:definition "Expected number of voxels in a cluster." ;
rdfs:domain nidm:StatisticImageProperties ;
rdfs:range xsd:float .
### http://www.incf.org/ns/nidash/nidm#f-statistic
nidm:f-statistic rdf:type owl:DatatypeProperty ;
prov:definition "The statistic from the F-test, a test of the hypothesis that the standard deviations of two normally distributed populations are equal, and thus that they are of comparable origin." ;
rdfs:comment "Not currently in use." .
### http://www.incf.org/ns/nidash/nidm#grandMeanScaling
nidm:grandMeanScaling rdf:type owl:DatatypeProperty ;
prov:definition "Binary flag defining whether the data was scaled. Specifically, \"grand mean scaling\" refers to multipliciation of every voxel in every scan by a common value. Grand mean scaling is essential for first-level fMRI, to transform the arbitrary MRI units, but is generally not used with second level analyses." ;
rdfs:domain nidm:Data ;
rdfs:range xsd:boolean .
### http://www.incf.org/ns/nidash/nidm#heightCriticalThresholdFWE05
nidm:heightCriticalThresholdFWE05 rdf:type owl:DatatypeProperty ;
prov:definition "Peak statistic threshold corrected for family-wise error at a level of alpha = 0.05." ;
rdfs:domain nidm:StatisticImageProperties ;
rdfs:range xsd:float .
### http://www.incf.org/ns/nidash/nidm#intraMaskMedian
nidm:intraMaskMedian rdf:type owl:DatatypeProperty ;
prov:definition "Median value considering only in-mask voxels. Useful diagnostic when computed on grand mean image when grandMeanScaling is TRUE, as the median should be close to targetIntensity." ;
rdfs:domain nidm:Data ;
rdfs:range xsd:float .
### http://www.incf.org/ns/nidash/nidm#maximumIntensityProjection
nidm:maximumIntensityProjection rdf:type owl:DatatypeProperty ;
prov:definition "Maximum intensity projection of a map." ;
rdfs:domain nidm:ExcursionSet ;
rdfs:range xsd:anyURI .
### http://www.incf.org/ns/nidash/nidm#noiseFWHM
nidm:noiseFWHM rdf:type owl:DatatypeProperty ;
prov:definition "Estimated Full Width at Half Maximum of the noise distribution." ;
rdfs:domain nidm:MaskMap ;
rdfs:range xsd:string .
### http://www.incf.org/ns/nidash/nidm#noiseFWHMInUnits
nidm:noiseFWHMInUnits rdf:type owl:DatatypeProperty ;
prov:definition "Estimated Full Width at Half Maximum of the noise distribution in world units." ;
rdfs:domain nidm:MaskMap ;
rdfs:subPropertyOf nidm:noiseFWHM ;
rdfs:range xsd:string .
### http://www.incf.org/ns/nidash/nidm#noiseFWHMInVertices
nidm:noiseFWHMInVertices rdf:type owl:DatatypeProperty ;
prov:definition "Estimated Full Width at Half Maximum of the noise distribution in world vertices." ;
rdfs:domain nidm:MaskMap ;
rdfs:subPropertyOf nidm:noiseFWHM ;
rdfs:range xsd:string .
### http://www.incf.org/ns/nidash/nidm#noiseFWHMInVoxels
nidm:noiseFWHMInVoxels rdf:type owl:DatatypeProperty ;
prov:definition "Estimated Full Width at Half Maximum of the noise distribution in voxels." ;
rdfs:domain nidm:MaskMap ;
rdfs:subPropertyOf nidm:noiseFWHM ;
rdfs:range xsd:string .
### http://www.incf.org/ns/nidash/nidm#nonStationaryRandomField
nidm:nonStationaryRandomField rdf:type owl:DatatypeProperty ;
prov:definition "Random field that is variable across the search volume." .
### http://www.incf.org/ns/nidash/nidm#numberOfDimensions
nidm:numberOfDimensions rdf:type owl:DatatypeProperty ;
prov:definition "Number of dimensions of a data matrix." ;
rdfs:domain nidm:CoordinateSpace ;
rdfs:range xsd:positiveInteger .
### http://www.incf.org/ns/nidash/nidm#originalFileName
nidm:originalFileName rdf:type owl:DatatypeProperty ;
prov:definition "Original name associated with a file (without path) in the context of the analysis software package." ;
rdfs:domain nidm:DesignMatrix ,
nidm:ExcursionSet ,
nidm:Map ;
rdfs:range xsd:string .
### http://www.incf.org/ns/nidash/nidm#pValue
nidm:pValue rdf:type owl:DatatypeProperty ;
prov:definition "\"A quantitative confidence value that represents the probability of obtaining a result at least as extreme as that actually obtained, assuming that the actual value was the result of chance alone.\"" ;
rdfs:domain nidm:SetStatistic ;
rdfs:range xsd:float .
### http://www.incf.org/ns/nidash/nidm#pValueFWER
nidm:pValueFWER rdf:type owl:DatatypeProperty ;
prov:definition "\"A quantitative confidence value resulting from a multiple testing error correction method which adjusts the p-value used as input to control for Type I error in the context of multiple pairwise tests\"" ;
rdfs:subPropertyOf nidm:pValue .
### http://www.incf.org/ns/nidash/nidm#pValueUncorrected
nidm:pValueUncorrected rdf:type owl:DatatypeProperty ;
prov:definition "A p-value reported without correction for multiple testing. " ;
rdfs:domain nidm:ClusterStatistic ,
nidm:ExtentThreshold ,
nidm:HeightThreshold ,
nidm:PeakStatistic ;
rdfs:subPropertyOf nidm:pValue ;
rdfs:range xsd:float .
### http://www.incf.org/ns/nidash/nidm#qValueFDR
nidm:qValueFDR rdf:type owl:DatatypeProperty ;
prov:definition "P-value adjusted for the multiple testing, controlling for the False Discovery Rate" ;
rdfs:domain nidm:ClusterStatistic ,
nidm:ExtentThreshold ,
nidm:HeightThreshold ,
nidm:PeakStatistic ;
rdfs:range xsd:float .
### http://www.incf.org/ns/nidash/nidm#randomFieldStationarity
nidm:randomFieldStationarity rdf:type owl:DatatypeProperty ;
prov:definition "Is the random field assumed to be stationary across the entire search volume?" ;
rdfs:domain nidm:MaskMap .
### http://www.incf.org/ns/nidash/nidm#reselSize
nidm:reselSize rdf:type owl:DatatypeProperty ;
prov:definition "Size of one resel in voxels or vertices." ;
rdfs:domain nidm:MaskMap ;
rdfs:range xsd:float .
### http://www.incf.org/ns/nidash/nidm#searchVolumeInResels
nidm:searchVolumeInResels rdf:type owl:DatatypeProperty ;
prov:definition "Total number of resels within the search volume." ;
rdfs:domain nidm:MaskMap ;
rdfs:range xsd:float .
### http://www.incf.org/ns/nidash/nidm#searchVolumeInVertices
nidm:searchVolumeInVertices rdf:type owl:DatatypeProperty ;
prov:definition "Total number of vertices within the search volume." ;
rdfs:domain nidm:MaskMap ;
rdfs:range xsd:float .
### http://www.incf.org/ns/nidash/nidm#searchVolumeInVoxels
nidm:searchVolumeInVoxels rdf:type owl:DatatypeProperty ;
prov:definition "Total number of voxels within the search volume." ;
rdfs:domain nidm:MaskMap ;
rdfs:range xsd:positiveInteger .
### http://www.incf.org/ns/nidash/nidm#searchVolumeReselsGeometry
nidm:searchVolumeReselsGeometry rdf:type owl:DatatypeProperty ;
prov:definition "Description of geometry of search volume. As per Worsley et al. [ http://www.ncbi.nlm.nih.gov/pubmed/20408186 ], the first element is the Euler Characteristic of the search volume, the second element is twice the average caliper diameter, the third element is half the surface area, and the fourth element is the volume. With the exception of the first element (which is a unitless integer) all quantities are in units of Resels." ;
rdfs:domain nidm:MaskMap ;
rdfs:range xsd:string .
### http://www.incf.org/ns/nidash/nidm#smallestSignifClusterSizeInVerticesFDR05
nidm:smallestSignifClusterSizeInVerticesFDR05 rdf:type owl:DatatypeProperty ;
prov:definition "Smallest cluster size in vertices that are significant at a false discovery rate corrected alpha value of 0.05. " ;
rdfs:domain nidm:StatisticImageProperties ;
rdfs:range xsd:positiveInteger .
### http://www.incf.org/ns/nidash/nidm#smallestSignifClusterSizeInVerticesFWE05
nidm:smallestSignifClusterSizeInVerticesFWE05 rdf:type owl:DatatypeProperty ;
prov:definition """Smallest cluster size in vertices significant at family-wise error rate corrected alpha value of 0.05.
""" ;
rdfs:domain nidm:StatisticImageProperties ;
rdfs:range xsd:positiveInteger .
### http://www.incf.org/ns/nidash/nidm#smallestSignifClusterSizeInVoxelsFDR05
nidm:smallestSignifClusterSizeInVoxelsFDR05 rdf:type owl:DatatypeProperty ;
prov:definition "Smallest cluster size in voxels significant at false discovery rate corrected alpha value of 0.05. " ;
rdfs:domain nidm:StatisticImageProperties ;
rdfs:range xsd:positiveInteger .
### http://www.incf.org/ns/nidash/nidm#smallestSignifClusterSizeInVoxelsFWE05
nidm:smallestSignifClusterSizeInVoxelsFWE05 rdf:type owl:DatatypeProperty ;
prov:definition """Smallest cluster size in voxels significant at family-wise error corrected alpha value of 0.05.
""" ;
rdfs:domain nidm:StatisticImageProperties ;
rdfs:range xsd:positiveInteger .
### http://www.incf.org/ns/nidash/nidm#smoothingFWHM
nidm:smoothingFWHM rdf:type owl:DatatypeProperty ;
prov:definition "Full width at half maximum of a Gaussian smoothing kernel in real world units (e.g. mm mm mm)." .
### http://www.incf.org/ns/nidash/nidm#softwareRevision
nidm:softwareRevision rdf:type owl:DatatypeProperty ;
prov:definition "revision number of a piece of software." ;
rdfs:range xsd:string ;
rdfs:domain prov:SoftwareAgent .
### http://www.incf.org/ns/nidash/nidm#softwareVersion
nidm:softwareVersion rdf:type owl:DatatypeProperty ;
prov:definition "Name and number that specifies the software version." ;
rdfs:range xsd:string ;
rdfs:domain prov:SoftwareAgent .
### http://www.incf.org/ns/nidash/nidm#standardError
nidm:standardError rdf:type owl:DatatypeProperty ;
prov:definition "\"A quantitative confidence value which is the standard deviations of the sample in a frequency distribution, obtained by dividing the standard deviation by the total number of cases in the frequency distribution.\"" .
### http://www.incf.org/ns/nidash/nidm#stationaryRandomField
nidm:stationaryRandomField rdf:type owl:DatatypeProperty ;
prov:definition "Random-field that is constant across the search volume." .
### http://www.incf.org/ns/nidash/nidm#targetIntensity
nidm:targetIntensity rdf:type owl:DatatypeProperty ;
prov:definition "Value to which the grand mean of the Data was scaled (applies only if grandMeanScaling is true)." ;
rdfs:domain nidm:Data ;
rdfs:range xsd:float .
### http://www.incf.org/ns/nidash/nidm#underlayFile
nidm:underlayFile rdf:type owl:DatatypeProperty ;
prov:definition "Map or surface on which the associated results are displayed." ;
rdfs:domain nidm:ExcursionSet ;
rdfs:range xsd:anyURI .
### http://www.incf.org/ns/nidash/nidm#userSpecifiedThresholdType
nidm:userSpecifiedThresholdType rdf:type owl:DatatypeProperty ;
prov:definition "Type (p-value either corrected or uncorrected or statistic) of the user-defined height threshold" ;
rdfs:domain nidm:ExtentThreshold ,
nidm:HeightThreshold ;
rdfs:range xsd:anyURI .
### http://www.incf.org/ns/nidash/nidm#visualisation
nidm:visualisation rdf:type owl:DatatypeProperty ;
prov:definition "Graphical representation of an entity." ;
rdfs:domain nidm:DesignMatrix ;
rdfs:range xsd:anyURI .
### http://www.incf.org/ns/nidash/nidm#voxelSize
nidm:voxelSize rdf:type owl:DatatypeProperty ;
prov:definition "3D size of a voxel measured in voxelUnits." ;
rdfs:domain nidm:CoordinateSpace ;
rdfs:range xsd:string .
### http://www.incf.org/ns/nidash/nidm#voxelToWorldMapping
nidm:voxelToWorldMapping rdf:type owl:DatatypeProperty ;
prov:definition "Voxel to World Mapping. Change-of-basis matrix from the voxel to world space?" ;
rdfs:domain nidm:CoordinateSpace ;
rdfs:range xsd:string .
### http://www.incf.org/ns/nidash/nidm#voxelUnits
nidm:voxelUnits rdf:type owl:DatatypeProperty ;
prov:definition "Units associated with each dimensions of some N-dimensional data." ;
rdfs:domain nidm:CoordinateSpace ;
rdfs:range xsd:string .
### http://www.incf.org/ns/nidash/nidm#heightCriticalThresholdFDR05
<http://www.incf.org/ns/nidash/nidm#heightCriticalThresholdFDR05
> rdf:type owl:DatatypeProperty ;
prov:definition "Peak statistic threshold corrected for false discovery rate at a level of alpha = 0.05." ;
rdfs:domain nidm:StatisticImageProperties ;
rdfs:range xsd:float .
### http://www.incf.org/ns/nidash/nidm#searchVolumeInProductOfUnits
<http://www.incf.org/ns/nidash/nidm#searchVolumeInProductOfUnits
> rdf:type owl:DatatypeProperty ;
prov:definition "Total number of product of coordinate units within the search volume." ;
rdfs:domain nidm:MaskMap ;
rdfs:range xsd:float .
#################################################################
#
# Classes
#
#################################################################
### http://www.incf.org/ns/nidash/nidm#CenterOfGravity
nidm:CenterOfGravity rdf:type owl:Class ;
rdfs:subClassOf prov:Entity ;
prov:definition "Centre Of Gravity for the cluster, equivalent to the concept of Centre Of Gravity for a object with distributed mass, where intensity substitutes for mass in this case (definition from http://fsl.fmrib.ox.ac.uk/fsl/fslwiki/Cluster)" .
### http://www.incf.org/ns/nidash/nidm#ClusterStatistic
nidm:ClusterStatistic rdf:type owl:Class ;
rdfs:subClassOf prov:Entity ;
prov:definition "Statistic defined at the cluster-level in an excusion set. In SPM it is defined as the cluster size." .
### http://www.incf.org/ns/nidash/nidm#ConjunctionInference
nidm:ConjunctionInference rdf:type owl:Class ;
rdfs:subClassOf prov:Activity ;
prov:definition "Inference testing for the joint significance of all effects." .
### http://www.incf.org/ns/nidash/nidm#ContrastEstimation
nidm:ContrastEstimation rdf:type owl:Class ;
rdfs:subClassOf prov:Activity ;
prov:definition "The process of estimating a contrast from the estimated parameters of statistical model." .
### http://www.incf.org/ns/nidash/nidm#ContrastMap
nidm:ContrastMap rdf:type owl:Class ;
rdfs:subClassOf nidm:Map ;
prov:definition "A map whose value at each location is statistical contrast estimate." .
### http://www.incf.org/ns/nidash/nidm#ContrastStandardErrorMap
nidm:ContrastStandardErrorMap rdf:type owl:Class ;
rdfs:subClassOf nidm:Map ;
prov:definition "A map whose value at each location is the standard error of a given contrast." .
### http://www.incf.org/ns/nidash/nidm#ContrastWeights
nidm:ContrastWeights rdf:type owl:Class ;
rdfs:subClassOf prov:Entity ;
prov:definition "Vector defining the linear combination associated with a particular contrast." .
### http://www.incf.org/ns/nidash/nidm#Coordinate
nidm:Coordinate rdf:type owl:Class ;
rdfs:subClassOf prov:Entity ;
prov:definition "A point in N-dimensional space where the dimensions could be arbitrary." .
### http://www.incf.org/ns/nidash/nidm#CoordinateSpace
nidm:CoordinateSpace rdf:type owl:Class ;
rdfs:subClassOf prov:Entity ;
prov:definition "An entity with spatial attributes (e.g., dimensions, units, and voxel-to-world mapping) that provides context to a SpatialImage (e.g., a StatisticMap)." .
### http://www.incf.org/ns/nidash/nidm#CustomMaskMap
nidm:CustomMaskMap rdf:type owl:Class ;
rdfs:subClassOf nidm:Map ;
prov:definition "mask defined by the user to restrain the space in which model fitting is performed." .
### http://www.incf.org/ns/nidash/nidm#Data
nidm:Data rdf:type owl:Class ;
rdfs:subClassOf prov:Entity ;
prov:definition "\"A collection or single item of factual information, derived from measurement or research, from which conclusions may be drawn.\"" .
### http://www.incf.org/ns/nidash/nidm#DesignMatrix
nidm:DesignMatrix rdf:type owl:Class ;
rdfs:subClassOf prov:Entity ;
prov:definition "A matrix of values defining the explanatory variables used in a regression model. Each column corresponds to one explanatory variable, each row corresponds to one observation." .
### http://www.incf.org/ns/nidash/nidm#ExcursionSet
nidm:ExcursionSet rdf:type owl:Class ;
rdfs:subClassOf prov:Entity ;
prov:definition "Set of map elements surviving a thresholding procedure." .
### http://www.incf.org/ns/nidash/nidm#ExtentThreshold
nidm:ExtentThreshold rdf:type owl:Class ;
rdfs:subClassOf prov:Entity ;
prov:definition """A numerical value that establishes a bound on a range of cluster-sizes. / [from extentThresh:] Minimum cluster size used when thresholding a statistic image 5voxels
""" .
### http://www.incf.org/ns/nidash/nidm#FContrastWeights
nidm:FContrastWeights rdf:type owl:Class ;
rdfs:subClassOf nidm:ContrastWeights ;
prov:definition "Contrast based on an F-statistic." .
### http://www.incf.org/ns/nidash/nidm#FStatisticMap
nidm:FStatisticMap rdf:type owl:Class ;
rdfs:subClassOf nidm:StatisticalMap ;