-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathnidm-results.owl
More file actions
3922 lines (1863 loc) · 155 KB
/
Copy pathnidm-results.owl
File metadata and controls
3922 lines (1863 loc) · 155 KB
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 dc: <http://purl.org/dc/elements/1.1/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix fsl: <http://purl.org/nidash/fsl#> .
@prefix nfo: <http://www.semanticdesktop.org/ontologies/2007/03/22/nfo#> .
@prefix nlx: <http://uri.neuinfo.org/nif/nifstd/> .
@prefix obo: <http://purl.obolibrary.org/obo/> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix prv: <http://purl.org/ontology/prv/core#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix spm: <http://purl.org/nidash/spm#> .
@prefix scr: <http://scicrunch.org/resolver/> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix afni: <http://purl.org/nidash/afni#> .
@prefix nidm: <http://purl.org/nidash/nidm#> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix crypto: <http://id.loc.gov/vocabulary/preservation/cryptographicHashFunctions/> .
@prefix dctype: <http://purl.org/dc/dcmitype/> .
@base <http://www.w3.org/2002/07/owl#> .
[ rdf:type owl:Ontology ;
owl:imports <http://purl.org/nidash/nidm/crypto_import.owl> ,
<http://purl.org/nidash/nidm/dc_import.owl> ,
<http://purl.org/nidash/nidm/iao_import.owl> ,
<http://purl.org/nidash/nidm/nfo_import.owl> ,
<http://purl.org/nidash/nidm/nlx_import.owl> ,
<http://purl.org/nidash/nidm/obi_import.owl> ,
<http://purl.org/nidash/nidm/prv_import.owl> ,
<http://purl.org/nidash/nidm/stato_import.owl> ,
<http://www.w3.org/ns/prov-o-20130430>
] .
#################################################################
#
# Annotation properties
#
#################################################################
### http://www.w3.org/2002/07/owl#sameAs
owl:sameAs rdf:type owl:AnnotationProperty .
#################################################################
#
# Object Properties
#
#################################################################
### http://purl.org/dc/elements/1.1/description
dc:description rdfs:range dctype:Image .
### http://purl.org/nidash/nidm#NIDM_0000088
nidm:NIDM_0000088 rdf:type owl:ObjectProperty ;
rdfs:label "has Drift Model" ;
obo:IAO_0000116 "Discussed at https://github.com/incf-nidash/nidm/issues/298" ;
obo:IAO_0000115 "A property that associates a 'Drift Model' to a 'Design Matrix' (only used for first-level fMRI experiments)." ;
obo:IAO_0000114 obo:IAO_0000122 ;
rdfs:domain nidm:NIDM_0000019 ;
rdfs:range nidm:NIDM_0000087 .
### http://purl.org/nidash/nidm#NIDM_0000089
nidm:NIDM_0000089 rdf:type owl:ObjectProperty ;
rdfs:label "dependence Map-Wise Dependence" ;
obo:IAO_0000116 "Discussed at https://github.com/incf-nidash/nidm/issues/194" ;
obo:IAO_0000115 "Property that associates an 'Error Parameter Map-Wise Dependence' to the dependence of an 'Error Model'." ;
obo:IAO_0000114 obo:IAO_0000122 ;
rdfs:domain nidm:NIDM_0000023 ;
rdfs:range nidm:NIDM_0000071 .
### http://purl.org/nidash/nidm#NIDM_0000097
nidm:NIDM_0000097 rdf:type owl:ObjectProperty ;
rdfs:label "has Alternative Hypothesis" ;
obo:IAO_0000116 "Discussed in https://github.com/incf-nidash/nidm/pull/81" ;
owl:sameAs "http://purl.obolibrary.org/obo/STATO_0000208" ;
obo:IAO_0000114 obo:IAO_0000122 ;
rdfs:domain nidm:NIDM_0000049 ;
rdfs:range nidm:NIDM_0000060 ,
nidm:NIDM_0000079 ;
rdfs:subPropertyOf owl:topObjectProperty .
### http://purl.org/nidash/nidm#NIDM_0000098
nidm:NIDM_0000098 rdf:type owl:ObjectProperty ;
rdfs:label "has Cluster Labels Map" ;
obo:IAO_0000116 "Discussed at https://github.com/incf-nidash/nidm/issues/282" ;
obo:IAO_0000115 "A property that associates a clusters label map to the excursion set." ;
obo:IAO_0000114 obo:IAO_0000122 ;
rdfs:range nidm:NIDM_0000008 ;
rdfs:domain nidm:NIDM_0000025 .
### http://purl.org/nidash/nidm#NIDM_0000099
nidm:NIDM_0000099 rdf:type owl:ObjectProperty ;
rdfs:label "has Connectivity Criterion" ;
obo:IAO_0000115 "Property that associates a 'Connectivity Criterion' with a 'Cluster Definition Criteria'." ;
obo:IAO_0000117 "Discussed in https://github.com/incf-nidash/nidm/pull/201" ;
obo:IAO_0000114 obo:IAO_0000122 ;
rdfs:domain nidm:NIDM_0000007 ;
rdfs:range nidm:NIDM_0000012 .
### http://purl.org/nidash/nidm#NIDM_0000100
nidm:NIDM_0000100 rdf:type owl:ObjectProperty ;
rdfs:label "has Error Dependence" ;
obo:IAO_0000115 "Property that associates a covariance structure representing the dependence structure of the error, used as part of model estimation with an 'Error Model'." ;
obo:IAO_0000114 obo:IAO_0000122 ;
rdfs:range obo:STATO_0000346 ;
rdfs:domain nidm:NIDM_0000023 .
### http://purl.org/nidash/nidm#NIDM_0000101
nidm:NIDM_0000101 rdf:type owl:ObjectProperty ;
rdfs:label "has Error Distribution" ;
obo:IAO_0000115 "Property that associates a Probability distribution used to model the error with an ErrorModel." ;
obo:IAO_0000114 obo:IAO_0000122 ;
rdfs:range obo:STATO_0000225 ;
rdfs:domain nidm:NIDM_0000023 .
### http://purl.org/nidash/nidm#NIDM_0000102
nidm:NIDM_0000102 rdf:type owl:ObjectProperty ;
rdfs:label "has HRF Basis" ;
obo:IAO_0000116 "Discussed at https://github.com/incf-nidash/nidm/issues/281" ;
obo:IAO_0000115 "A property that associates a set of functions that, when convolved with the anticipated neural responses, yields a set of regressors to model the anticipated hemodynamic responses in a 'Design Matrix'." ;
obo:IAO_0000114 obo:IAO_0000122 ;
rdfs:domain nidm:NIDM_0000019 ;
rdfs:range nidm:NIDM_0000036 .
### http://purl.org/nidash/nidm#NIDM_0000103
nidm:NIDM_0000103 rdf:type owl:ObjectProperty ;
rdfs:label "has Map Header" ;
obo:IAO_0000115 "A Property that associates an additional file containing the 'Map Header' with a map" ;
obo:IAO_0000116 "Discussed at https://github.com/incf-nidash/nidm/issues/289" ;
obo:IAO_0000114 obo:IAO_0000122 ;
rdfs:domain nidm:NIDM_0000052 ;
rdfs:range nidm:NIDM_0000053 .
### http://purl.org/nidash/nidm#NIDM_0000104
nidm:NIDM_0000104 rdf:type owl:ObjectProperty ;
rdfs:label "in Coordinate Space" ;
obo:IAO_0000117 "Discussed in https://github.com/incf-nidash/nidm/pull/171 by NN JT CM SG KH TN." ;
obo:IAO_0000115 "Property of a DataArray to associate a 'Coordinate Space' with a physical file." ;
obo:IAO_0000114 obo:IAO_0000122 ;
rdfs:range nidm:NIDM_0000016 ;
rdfs:domain nidm:NIDM_0000052 .
### http://purl.org/nidash/nidm#NIDM_0000105
nidm:NIDM_0000105 rdf:type owl:ObjectProperty ;
rdfs:label "in World Coordinate System" ;
obo:IAO_0000116 "Discussed at https://github.com/incf-nidash/nidm/issues/284" ;
obo:IAO_0000115 "Property that associates a 'World Coordinate System' to the 'Coordinate Space'." ;
obo:IAO_0000114 obo:IAO_0000122 ;
rdfs:domain nidm:NIDM_0000016 ;
rdfs:range nidm:NIDM_0000081 .
### http://purl.org/nidash/nidm#NIDM_0000113
nidm:NIDM_0000113 rdf:type owl:ObjectProperty ;
rdfs:label "object Model" ;
obo:IAO_0000116 "Under discussion at https://github.com/incf-nidash/nidm/pull/137" ;
obo:IAO_0000114 obo:IAO_0000124 ;
rdfs:range nidm:NIDM_0000057 ;
rdfs:domain prov:Bundle .
### http://purl.org/nidash/nidm#NIDM_0000123
nidm:NIDM_0000123 rdf:type owl:ObjectProperty ;
rdfs:label "statistic Type" ;
obo:IAO_0000115 "Property that associates a [stato:\"statistic\"](http://purl.obolibrary.org/obo/STATO_0000039) with a StatisticMap or a ContrastWeights entity." ;
obo:IAO_0000116 "Discussed at https://github.com/incf-nidash/nidm/issues/293" ;
obo:IAO_0000114 obo:IAO_0000122 ;
rdfs:range obo:STATO_0000039 ;
rdfs:domain obo:STATO_0000323 ,
nidm:NIDM_0000076 .
### http://purl.org/nidash/nidm#NIDM_0000126
nidm:NIDM_0000126 rdf:type owl:ObjectProperty ;
rdfs:label "variance Map-Wise Dependence" ;
obo:IAO_0000116 "Discussed at https://github.com/incf-nidash/nidm/issues/194" ;
obo:IAO_0000115 "Property that associates an 'Error Parameter Map-Wise Dependence' to the variance of an 'Error Model'" ;
obo:IAO_0000114 obo:IAO_0000122 ;
rdfs:domain nidm:NIDM_0000023 ;
rdfs:range nidm:NIDM_0000071 .
### http://purl.org/nidash/nidm#NIDM_0000134
nidm:NIDM_0000134 rdf:type owl:ObjectProperty ;
rdfs:label "with Estimation Method" ;
obo:IAO_0000116 "Discussed at https://github.com/incf-nidash/nidm/issues/293" ;
obo:IAO_0000115 "Property that associates a [stato:\"model parameter estimation\"](http://purl.obolibrary.org/obo/STATO_0000119) method with a model parameter estimation" ;
obo:IAO_0000114 obo:IAO_0000122 ;
rdfs:range obo:STATO_0000119 ;
rdfs:domain nidm:NIDM_0000056 .
### http://purl.org/nidash/nidm#NIDM_0000138
nidm:NIDM_0000138 rdf:type owl:ObjectProperty ;
rdfs:label "has Maximum Intensity Projection" ;
obo:IAO_0000116 "Discussed at https://github.com/incf-nidash/nidm/issues/293" ;
obo:IAO_0000115 "Property that associates an image of the maximum intensity projection with an 'Excursion Set Map'." ;
obo:IAO_0000114 obo:IAO_0000122 ;
rdfs:range dctype:Image ;
rdfs:domain nidm:NIDM_0000025 .
### http://purl.org/nidash/nidm#NIDM_0000161
nidm:NIDM_0000161 rdf:type owl:ObjectProperty ;
rdfs:label "equivalent Threshold" ;
obo:IAO_0000116 "Discussed in https://github.com/incf-nidash/nidm/issues/329" ;
obo:IAO_0000115 "Property that associates another 'Threshold' that is equivalent (e.g. if the user specified a 'Threshold' in terms of FWE-corrected p-value, this property can be used to associate the corresponding uncorrected p-value)." ;
obo:IAO_0000114 obo:IAO_0000125 ;
rdfs:range nidm:NIDM_0000162 ;
rdfs:domain nidm:NIDM_0000162 .
### http://purl.org/nidash/nidm#NIDM_0000172
nidm:NIDM_0000172 rdf:type owl:ObjectProperty ;
rdfs:label "has MRI Protocol" ;
obo:IAO_0000115 "'MRI Protocol' used to acquire these 'Data'." ;
obo:IAO_0000114 obo:IAO_0000124 ;
rdfs:domain nidm:NIDM_0000169 ;
rdfs:range nlx:birnlex_2177 .
### http://purl.org/ontology/prv/core#reification_class
prv:reification_class rdfs:range owl:Class .
### http://www.w3.org/ns/prov#atLocation
prov:atLocation prov:definition "The Location of any resource" ;
obo:IAO_0000115 "The Location of any resource." .
#################################################################
#
# Data properties
#
#################################################################
### http://purl.org/dc/elements/1.1/description
dc:description rdf:type owl:DatatypeProperty .
### http://purl.org/dc/terms/format
dct:format rdf:type owl:DatatypeProperty ;
rdfs:range xsd:string .
### http://purl.org/nidash/fsl#FSL_0000004
fsl:FSL_0000004 rdf:type owl:DatatypeProperty ;
rdfs:label "drift Cutoff Period" ;
obo:IAO_0000115 "Doubled standard deviation in seconds of the Gaussian weight function used in the running line smoother." ;
obo:IAO_0000116 "Discussed at https://github.com/incf-nidash/nidm/issues/298" ;
obo:IAO_0000114 obo:IAO_0000122 ;
rdfs:domain fsl:FSL_0000002 ;
rdfs:range xsd:float .
### http://purl.org/nidash/fsl#FSL_0000005
fsl:FSL_0000005 rdf:type owl:DatatypeProperty ;
rdfs:label "feat Version" ;
obo:IAO_0000116 "Discussed at https://github.com/incf-nidash/nidm/issues/291" ;
obo:IAO_0000115 "Version of the FEAT software." ;
obo:IAO_0000114 obo:IAO_0000122 ;
rdfs:domain scr:SCR_002823 ;
rdfs:range xsd:string .
### http://purl.org/nidash/nidm#NIDM_0000014
nidm:NIDM_0000014 rdf:type owl:DatatypeProperty ;
rdfs:label "Legendre Polynomial Order" ;
obo:IAO_0000115 "The number of basis in the 'Drift Model' (1 = linear, 2 = quadratic, etc.)" ;
obo:IAO_0000116 "Discussed at https://github.com/incf-nidash/nidm/issues/298" ;
obo:IAO_0000114 obo:IAO_0000122 ;
rdfs:domain afni:LegendrePolynomialDriftModel ;
rdfs:range xsd:int .
### http://purl.org/nidash/nidm#NIDM_0000021
nidm:NIDM_0000021 rdf:type owl:DatatypeProperty ;
rdfs:label "regressor Names" ;
obo:IAO_0000115 "A list of abstract names associated with each column of the 'Design Matrix' (e.g. [\"motor_left\", \"motor_right\"])." ;
obo:IAO_0000116 "Discussed at https://github.com/incf-nidash/nidm/issues/299" ;
obo:IAO_0000114 obo:IAO_0000122 ;
rdfs:domain nidm:NIDM_0000019 ;
rdfs:range xsd:string .
### http://purl.org/nidash/nidm#NIDM_0000082
nidm:NIDM_0000082 rdf:type owl:DatatypeProperty ;
rdfs:label "cluster Label Id" ;
obo:IAO_0000116 "Discussed at https://github.com/incf-nidash/nidm/pull/271" ;
obo:IAO_0000115 "Integer value used in the cluster label map to identify the location of the cluster within the excursion set." ;
obo:IAO_0000112 "5" ;
obo:IAO_0000114 obo:IAO_0000122 ;
rdfs:domain nidm:NIDM_0000070 ;
rdfs:range xsd:int .
### http://purl.org/nidash/nidm#NIDM_0000083
nidm:NIDM_0000083 rdf:type owl:DatatypeProperty ;
rdfs:label "cluster Size In Vertices" ;
obo:IAO_0000115 "Number of vertices that make up the cluster." ;
obo:IAO_0000112 "10" ;
obo:IAO_0000114 obo:IAO_0000120 ;
rdfs:domain nidm:NIDM_0000026 ,
nidm:NIDM_0000070 ;
rdfs:range xsd:positiveInteger .
### http://purl.org/nidash/nidm#NIDM_0000084
nidm:NIDM_0000084 rdf:type owl:DatatypeProperty ;
rdfs:label "cluster Size In Voxels" ;
obo:IAO_0000112 "18" ;
obo:IAO_0000115 "Number of voxels that make up the cluster." ;
obo:IAO_0000114 obo:IAO_0000122 ;
rdfs:domain nidm:NIDM_0000026 ,
nidm:NIDM_0000070 ;
rdfs:range xsd:positiveInteger .
### http://purl.org/nidash/nidm#NIDM_0000085
nidm:NIDM_0000085 rdf:type owl:DatatypeProperty ;
rdfs:label "contrast Name" ;
obo:IAO_0000115 "Name of the contrast." ;
obo:IAO_0000112 "\"Listening > Rest\"" ;
obo:IAO_0000114 obo:IAO_0000120 ;
rdfs:domain obo:STATO_0000323 ,
nidm:NIDM_0000002 ,
nidm:NIDM_0000076 ;
rdfs:range xsd:string .
### http://purl.org/nidash/nidm#NIDM_0000086
nidm:NIDM_0000086 rdf:type owl:DatatypeProperty ;
rdfs:label "coordinate Vector" ;
obo:IAO_0000112 "[-60, 32, 54]"^^xsd:string ;
obo:IAO_0000115 "A vector with one number per dimension. The first element corresponds to the 'Coordinate' along the first dimension measured in map elements (e.g., pixels, voxels, vertices, or faces), the second element to the 'Coordinate' along the second dimension etc." ;
obo:IAO_0000116 "Under discussion at: https://github.com/incf-nidash/nidm/pull/270 and https://github.com/incf-nidash/nidm/issues/145" ;
obo:IAO_0000114 obo:IAO_0000125 ;
rdfs:domain nidm:NIDM_0000015 ;
rdfs:range xsd:string .
### http://purl.org/nidash/nidm#NIDM_0000090
nidm:NIDM_0000090 rdf:type owl:DatatypeProperty ;
rdfs:label "dimensions In Voxels" ;
obo:IAO_0000116 "Discussed at: https://github.com/incf-nidash/nidm/issues/146" ;
obo:IAO_0000115 "Number of voxels in each of the dimensions of the data array. For example, \"[91, 109, 91]\" indicates there are 91 voxels in the first dimension, 109 in the second dimension, and 91 in the third dimension." ;
obo:IAO_0000112 "[64, 64, 20]" ;
obo:IAO_0000114 obo:IAO_0000122 ;
rdfs:domain nidm:NIDM_0000016 ;
rdfs:range xsd:string .
### http://purl.org/nidash/nidm#NIDM_0000091
nidm:NIDM_0000091 rdf:type owl:DatatypeProperty ;
rdfs:label "effect Degrees Of Freedom" ;
obo:IAO_0000115 "In the context of a general linear model, the effect degrees of freedom is the rank of the contrast. For example, a contrast comprising of a vector has effect degrees of freedom of 1 and can be tested with a F-test with numerator degrees of freedom of 1." ;
obo:IAO_0000112 "1" ;
obo:IAO_0000116 "Under discussion at https://github.com/incf-nidash/nidm/issues/277" ;
obo:IAO_0000114 obo:IAO_0000125 ;
rdfs:domain nidm:NIDM_0000076 ;
rdfs:range [ rdf:type rdfs:Datatype ;
owl:onDatatype xsd:float ;
owl:withRestrictions ( [ xsd:minExclusive "0.0"^^xsd:float
]
)
] .
### http://purl.org/nidash/nidm#NIDM_0000092
nidm:NIDM_0000092 rdf:type owl:DatatypeProperty ;
rdfs:label "equivalent ZStatistic" ;
obo:IAO_0000115 "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." ;
obo:IAO_0000112 "3.5" ;
obo:IAO_0000114 obo:IAO_0000120 ;
rdfs:domain nidm:NIDM_0000062 ;
rdfs:range xsd:float .
### http://purl.org/nidash/nidm#NIDM_0000093
nidm:NIDM_0000093 rdf:type owl:DatatypeProperty ;
rdfs:label "error Degrees Of Freedom" ;
obo:IAO_0000112 "72.999999" ;
obo:IAO_0000115 "In the context of a general linear model, the error degrees of freedom are the number of observations less the rank of the 'Design Matrix'." ;
obo:IAO_0000116 "Under discussion at https://github.com/incf-nidash/nidm/issues/277" ;
obo:IAO_0000114 obo:IAO_0000125 ;
rdfs:domain nidm:NIDM_0000076 ;
rdfs:range [ rdf:type rdfs:Datatype ;
owl:onDatatype xsd:float ;
owl:withRestrictions ( [ xsd:minExclusive "0.0"^^xsd:float
]
)
] .
### http://purl.org/nidash/nidm#NIDM_0000094
nidm:NIDM_0000094 rdf:type owl:DatatypeProperty ;
rdfs:label "error Variance Homogeneous" ;
obo:IAO_0000115 "A boolean value reflecting how the variance of the error is modeled during parameter estimation; TRUE for constant variance over all observations in the model, FALSE for heterogeneous variance." ;
obo:IAO_0000114 obo:IAO_0000122 ;
rdfs:domain nidm:NIDM_0000023 ;
rdfs:range xsd:boolean .
### http://purl.org/nidash/nidm#NIDM_0000095
nidm:NIDM_0000095 rdf:type owl:DatatypeProperty ;
rdfs:label "partial Conjunction Degree" ;
owl:deprecated "true"^^xsd:boolean ;
obo:IAO_0000116 "Discussed at https://github.com/incf-nidash/nidm/issues/294" ;
obo:IAO_0000115 "The number of non-null effects permitted in a partial conjunction null, as part of a 'Partial Conjunction Inference'" ;
obo:IAO_0000114 obo:IAO_0000122 ;
rdfs:domain spm:SPM_0000005 ;
rdfs:range xsd:int .
### http://purl.org/nidash/nidm#NIDM_0000096
nidm:NIDM_0000096 rdf:type owl:DatatypeProperty ;
rdfs:label "grand Mean Scaling" ;
obo:IAO_0000115 "Binary flag defining whether the data was scaled (true for scaled). Specifically, \"grand mean scaling\" refers to multiplication of every voxel in every scan by a common (or session-specific) value." ;
obo:IAO_0000116 "Discussed at https://github.com/incf-nidash/nidm/issues/285" ;
obo:IAO_0000112 "TRUE" ;
obo:IAO_0000114 obo:IAO_0000122 ;
rdfs:domain nidm:NIDM_0000169 ;
rdfs:range xsd:boolean .
### http://purl.org/nidash/nidm#NIDM_0000105
nidm:NIDM_0000105 rdf:type owl:DatatypeProperty ;
rdfs:label "in World Coordinate System" ;
obo:IAO_0000116 "Discussed at https://github.com/incf-nidash/nidm/issues/284" ;
obo:IAO_0000115 "Property that associates a 'World Coordinate System' to the 'Coordinate Space'." ;
obo:IAO_0000114 obo:IAO_0000122 .
### http://purl.org/nidash/nidm#NIDM_0000106
nidm:NIDM_0000106 rdf:type owl:DatatypeProperty ;
rdfs:label "is User Defined" ;
obo:IAO_0000116 "Under discussion at https://github.com/incf-nidash/nidm/pull/258" ;
obo:IAO_0000115 "A binary flag defining whether the mask was specified by the user (true) or automatically generated during the analysis (false)" ;
obo:IAO_0000114 obo:IAO_0000122 ;
rdfs:domain nidm:NIDM_0000004 ;
rdfs:range xsd:boolean .
### http://purl.org/nidash/nidm#NIDM_0000107
nidm:NIDM_0000107 rdf:type owl:DatatypeProperty ;
rdfs:label "masked Median" ;
obo:IAO_0000116 "Discussed at https://github.com/incf-nidash/nidm/issues/288, naming previously discussed at: https://github.com/incf-nidash/nidm/issues/70" ;
obo:IAO_0000115 "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:seeAlso "http://purl.obolibrary.org/obo/OBI_0200119" ;
obo:IAO_0000112 "155.23" ;
obo:IAO_0000114 obo:IAO_0000122 ;
rdfs:domain nidm:NIDM_0000033 ;
rdfs:range xsd:float .
### http://purl.org/nidash/nidm#NIDM_0000108
nidm:NIDM_0000108 rdf:type owl:DatatypeProperty ;
rdfs:label "max Number Of Peaks Per Cluster" ;
obo:IAO_0000115 "Maximum number of 'Peak's to be reported after 'Inference' within a cluster." ;
obo:IAO_0000117 "Discussed in https://github.com/incf-nidash/nidm/pull/200" ;
obo:IAO_0000114 obo:IAO_0000122 ;
rdfs:domain nidm:NIDM_0000063 ;
rdfs:range xsd:int .
### http://purl.org/nidash/nidm#NIDM_0000109
nidm:NIDM_0000109 rdf:type owl:DatatypeProperty ;
rdfs:label "min Distance Between Peaks" ;
obo:IAO_0000117 "Discussed in https://github.com/incf-nidash/nidm/pull/200" ;
obo:IAO_0000115 "Minimum distance between two 'Peak's to be reported after 'Inference'." ;
obo:IAO_0000114 obo:IAO_0000122 ;
rdfs:domain nidm:NIDM_0000063 ;
rdfs:range xsd:float .
### http://purl.org/nidash/nidm#NIDM_0000111
nidm:NIDM_0000111 rdf:type owl:DatatypeProperty ;
rdfs:label "number Of Supra-Threshold Clusters" ;
obo:IAO_0000116 "Discussed at https://github.com/incf-nidash/nidm/issues/292" ;
obo:IAO_0000115 "Number of 'Supra-Threshold Clusters' found by the 'Inference' activity. This is SPM's set level statistic." ;
obo:IAO_0000114 obo:IAO_0000122 ;
rdfs:domain nidm:NIDM_0000025 ;
rdfs:range xsd:int ;
rdfs:subPropertyOf owl:topDataProperty .
### http://purl.org/nidash/nidm#NIDM_0000112
nidm:NIDM_0000112 rdf:type owl:DatatypeProperty ;
rdfs:label "number Of Dimensions" ;
obo:IAO_0000115 "Number of dimensions of the data matrix (e.g. 3 for volumetric data)" ;
obo:IAO_0000116 "Discussed at https://github.com/incf-nidash/nidm/issues/295" ;
obo:IAO_0000112 "3" ;
obo:IAO_0000114 obo:IAO_0000122 ;
rdfs:domain nidm:NIDM_0000016 ;
rdfs:range xsd:positiveInteger .
### http://purl.org/nidash/nidm#NIDM_0000114
nidm:NIDM_0000114 rdf:type owl:DatatypeProperty ;
rdfs:label "p Value" ;
owl:sameAs "http://purl.obolibrary.org/obo/OBI_0000175"^^xsd:anyURI ;
obo:IAO_0000112 "8.95E-14" ;
rdfs:seeAlso """http://purl.obolibrary.org/obo/IAO_0000121
http://purl.obolibrary.org/obo/OBI_0000175
http://ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#P-Value""" ;
obo:IAO_0000116 "Under discussion at https://github.com/ISA-tools/stato/issues/38" ;
obo:IAO_0000114 obo:IAO_0000122 ;
rdfs:domain nidm:NIDM_0000025 ;
rdfs:range [ rdf:type rdfs:Datatype ;
owl:onDatatype xsd:float ;
owl:withRestrictions ( [ xsd:maxInclusive "1.0"^^xsd:float
]
[ xsd:minInclusive "0.0"^^xsd:float
]
)
] .
### http://purl.org/nidash/nidm#NIDM_0000115
nidm:NIDM_0000115 rdf:type owl:DatatypeProperty ;
rdfs:label "p Value FWER" ;
obo:IAO_0000112 "0.05" ;
obo:IAO_0000115 "\"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\"" ;
owl:sameAs "This definition is from OBI. Please update this note if the definition is modified." ;
obo:IAO_0000116 "Under discussion at https://github.com/ISA-tools/stato/issues/38" ;
rdfs:seeAlso "Synonym of \"nidm:pFWE\"" ;
obo:IAO_0000114 obo:IAO_0000423 ;
rdfs:domain nidm:NIDM_0000062 ,
nidm:NIDM_0000070 ;
rdfs:range [ rdf:type rdfs:Datatype ;
owl:onDatatype xsd:float ;
owl:withRestrictions ( [ xsd:maxInclusive "1.0"^^xsd:float
]
[ xsd:minInclusive "0.0"^^xsd:float
]
)
] .
### http://purl.org/nidash/nidm#NIDM_0000116
nidm:NIDM_0000116 rdf:type owl:DatatypeProperty ;
rdfs:label "p Value Uncorrected" ;
obo:IAO_0000115 "A p-value reported without correction for multiple testing. " ;
obo:IAO_0000116 "Under discussion at https://github.com/ISA-tools/stato/issues/38" ;
obo:IAO_0000112 "0.0542" ;
rdfs:seeAlso "http://purl.obolibrary.org/obo/IAO_0000121" ;
obo:IAO_0000114 obo:IAO_0000423 ;
rdfs:domain nidm:NIDM_0000062 ,
nidm:NIDM_0000070 ;
rdfs:range [ rdf:type rdfs:Datatype ;
owl:onDatatype xsd:float ;
owl:withRestrictions ( [ xsd:maxInclusive "1.0"^^xsd:float
]
[ xsd:minInclusive "0.0"^^xsd:float
]
)
] .
### http://purl.org/nidash/nidm#NIDM_0000119
nidm:NIDM_0000119 rdf:type owl:DatatypeProperty ;
rdfs:label "q Value FDR" ;
obo:IAO_0000112 "0.000154" ;
obo:IAO_0000115 "A quantitative confidence value that measures the minimum false discovery rate that is incurred when calling that test significant. To compute q-values, it is necessary to know the p-value produced by a test and possibly set a false discovery rate level (same as OBI_0001442)." ;
obo:IAO_0000116 "Under discussion at https://github.com/ISA-tools/stato/issues/38" ;
owl:sameAs "http://purl.obolibrary.org/obo/OBI_0001442" ;
obo:IAO_0000114 obo:IAO_0000122 ;
rdfs:domain nidm:NIDM_0000062 ,
nidm:NIDM_0000070 ;
rdfs:range [ rdf:type rdfs:Datatype ;
owl:onDatatype xsd:float ;
owl:withRestrictions ( [ xsd:maxInclusive "1.0"^^xsd:float
]
[ xsd:minInclusive "0.0"^^xsd:float
]
)
] .
### http://purl.org/nidash/nidm#NIDM_0000120
nidm:NIDM_0000120 rdf:type owl:DatatypeProperty ;
rdfs:label "random Field Stationarity" ;
obo:IAO_0000116 "Discussed at https://github.com/incf-nidash/nidm/issues/130" ;
obo:IAO_0000115 "A binary flag that indicates whether Random Field Theory methods assumed smoothness that was homogeneous over the map (true), or allowed for smoothness that varies over the map (false)." ;
obo:IAO_0000114 obo:IAO_0000122 ;
rdfs:domain nidm:NIDM_0000068 ;