forked from incf-nidash/ni-o
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nidm-spm-results.ttl
1518 lines (693 loc) · 44.8 KB
/
nidm-spm-results.ttl
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 owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix spm: <http://www.fil.ion.ucl.ac.uk/spm/ns/#> .
@prefix xml: <http://www.w3.org/XML/1998/namespace> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
@prefix nidm: <http://nidm.nidash.org/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix niiri: <http://iri.nidash.org/> .
@prefix xsd_1: <http://www.w3.org/2001/XMLSchema> .
@prefix crypto: <http://www.w3.org/2000/10/swap/crypto#> .
@base <http://www.w3.org/2002/07/owl#> .
[ rdf:type owl:Ontology ;
owl:imports <http://www.w3.org/ns/prov-o#>
] .
#################################################################
#
# Annotation properties
#
#################################################################
### http://nidm.nidash.org/clusterLabels
nidm:clusterLabels rdf:type owl:AnnotationProperty .
### http://nidm.nidash.org/clusterSizeInVoxels
nidm:clusterSizeInVoxels rdf:type owl:AnnotationProperty .
### http://nidm.nidash.org/contrastName
nidm:contrastName rdf:type owl:AnnotationProperty .
### http://nidm.nidash.org/coordinate1
nidm:coordinate1 rdf:type owl:AnnotationProperty .
### http://nidm.nidash.org/coordinate2
nidm:coordinate2 rdf:type owl:AnnotationProperty .
### http://nidm.nidash.org/coordinate3
nidm:coordinate3 rdf:type owl:AnnotationProperty .
### http://nidm.nidash.org/coordinateSpace
nidm:coordinateSpace rdf:type owl:AnnotationProperty .
### http://nidm.nidash.org/coordinateSystem
nidm:coordinateSystem rdf:type owl:AnnotationProperty .
### http://nidm.nidash.org/dimensions
nidm:dimensions rdf:type owl:AnnotationProperty .
### http://nidm.nidash.org/effectDegreesOfFreedom
nidm:effectDegreesOfFreedom rdf:type owl:AnnotationProperty .
### http://nidm.nidash.org/equivalentZStatistic
nidm:equivalentZStatistic rdf:type owl:AnnotationProperty .
### http://nidm.nidash.org/errorDegreesOfFreedom
nidm:errorDegreesOfFreedom rdf:type owl:AnnotationProperty .
### http://nidm.nidash.org/fileName
nidm:fileName rdf:type owl:AnnotationProperty .
### http://nidm.nidash.org/labelId
nidm:labelId rdf:type owl:AnnotationProperty .
### http://nidm.nidash.org/numberOfDimensions
nidm:numberOfDimensions rdf:type owl:AnnotationProperty .
### http://nidm.nidash.org/pValue
nidm:pValue rdf:type owl:AnnotationProperty .
### http://nidm.nidash.org/pValueUncorrected
nidm:pValueUncorrected rdf:type owl:AnnotationProperty .
### http://nidm.nidash.org/randomFieldStationarity
nidm:randomFieldStationarity rdf:type owl:AnnotationProperty .
### http://nidm.nidash.org/softwareRevision
nidm:softwareRevision rdf:type owl:AnnotationProperty .
### http://nidm.nidash.org/softwareVersion
nidm:softwareVersion rdf:type owl:AnnotationProperty .
### http://nidm.nidash.org/statisticType
nidm:statisticType rdf:type owl:AnnotationProperty .
### http://nidm.nidash.org/statisticalTest
nidm:statisticalTest rdf:type owl:AnnotationProperty .
### http://nidm.nidash.org/underlayFile
nidm:underlayFile rdf:type owl:AnnotationProperty .
### http://nidm.nidash.org/visualisation
nidm:visualisation rdf:type owl:AnnotationProperty .
### http://nidm.nidash.org/voxelSize
nidm:voxelSize rdf:type owl:AnnotationProperty .
### http://nidm.nidash.org/voxelToWorldMapping
nidm:voxelToWorldMapping rdf:type owl:AnnotationProperty .
### http://nidm.nidash.org/voxelUnits
nidm:voxelUnits rdf:type owl:AnnotationProperty .
### http://www.fil.ion.ucl.ac.uk/spm/ns/#clusterSizeInResels
spm:clusterSizeInResels rdf:type owl:AnnotationProperty .
### http://www.fil.ion.ucl.ac.uk/spm/ns/#expectedNumberOfClusters
spm:expectedNumberOfClusters rdf:type owl:AnnotationProperty .
### http://www.fil.ion.ucl.ac.uk/spm/ns/#expectedNumberOfVoxelsPerCluster
spm:expectedNumberOfVoxelsPerCluster rdf:type owl:AnnotationProperty .
### http://www.fil.ion.ucl.ac.uk/spm/ns/#heightCriticalThresholdFDR05
spm:heightCriticalThresholdFDR05 rdf:type owl:AnnotationProperty .
### http://www.fil.ion.ucl.ac.uk/spm/ns/#heightCriticalThresholdFWE05
spm:heightCriticalThresholdFWE05 rdf:type owl:AnnotationProperty .
### http://www.fil.ion.ucl.ac.uk/spm/ns/#maximumIntensityProjection
spm:maximumIntensityProjection rdf:type owl:AnnotationProperty .
### http://www.fil.ion.ucl.ac.uk/spm/ns/#noiseFWHMInUnits
spm:noiseFWHMInUnits rdf:type owl:AnnotationProperty .
### http://www.fil.ion.ucl.ac.uk/spm/ns/#noiseFWHMInVoxels
spm:noiseFWHMInVoxels rdf:type owl:AnnotationProperty .
### http://www.fil.ion.ucl.ac.uk/spm/ns/#pValueFWER
spm:pValueFWER rdf:type owl:AnnotationProperty .
### http://www.fil.ion.ucl.ac.uk/spm/ns/#qValueFDR
spm:qValueFDR rdf:type owl:AnnotationProperty .
### http://www.fil.ion.ucl.ac.uk/spm/ns/#reselSize
spm:reselSize rdf:type owl:AnnotationProperty .
### http://www.fil.ion.ucl.ac.uk/spm/ns/#searchVolumeInProductOfUnits
spm:searchVolumeInProductOfUnits rdf:type owl:AnnotationProperty .
### http://www.fil.ion.ucl.ac.uk/spm/ns/#searchVolumeInResels
spm:searchVolumeInResels rdf:type owl:AnnotationProperty .
### http://www.fil.ion.ucl.ac.uk/spm/ns/#searchVolumeInVoxels
spm:searchVolumeInVoxels rdf:type owl:AnnotationProperty .
### http://www.fil.ion.ucl.ac.uk/spm/ns/#searchVolumeReselsGeometry
spm:searchVolumeReselsGeometry rdf:type owl:AnnotationProperty .
### http://www.fil.ion.ucl.ac.uk/spm/ns/#smallestSignifClusterSizeInVoxelsFDR05
spm:smallestSignifClusterSizeInVoxelsFDR05 rdf:type owl:AnnotationProperty .
### http://www.fil.ion.ucl.ac.uk/spm/ns/#smallestSignifClusterSizeInVoxelsFWE05
spm:smallestSignifClusterSizeInVoxelsFWE05 rdf:type owl:AnnotationProperty .
### http://www.fil.ion.ucl.ac.uk/spm/ns/#userSpecifiedThresholdType
spm:userSpecifiedThresholdType rdf:type owl:AnnotationProperty .
### http://www.w3.org/2000/10/swap/crypto#sha
crypto:sha rdf:type owl:AnnotationProperty .
### http://www.w3.org/ns/prov#atLocation
prov:atLocation rdf:type owl:AnnotationProperty .
### http://www.w3.org/ns/prov#hadMember
prov:hadMember rdf:type owl:AnnotationProperty .
### http://www.w3.org/ns/prov#used
prov:used rdf:type owl:AnnotationProperty .
### http://www.w3.org/ns/prov#value
prov:value rdf:type owl:AnnotationProperty .
### http://www.w3.org/ns/prov#wasAssociatedWith
prov:wasAssociatedWith rdf:type owl:AnnotationProperty .
### http://www.w3.org/ns/prov#wasDerivedFrom
prov:wasDerivedFrom rdf:type owl:AnnotationProperty .
### http://www.w3.org/ns/prov#wasGeneratedBy
prov:wasGeneratedBy rdf:type owl:AnnotationProperty .
#################################################################
#
# Classes
#
#################################################################
### http://nidm.nidash.org/betaMap
nidm:betaMap rdf:type owl:Class ;
rdfs:subClassOf prov:Entity .
### http://nidm.nidash.org/contrast
nidm:contrast rdf:type owl:Class ;
rdfs:subClassOf prov:Entity .
### http://nidm.nidash.org/contrastMap
nidm:contrastMap rdf:type owl:Class ;
rdfs:subClassOf prov:Entity .
### http://nidm.nidash.org/contrastStandardErrorMap
nidm:contrastStandardErrorMap rdf:type owl:Class ;
rdfs:subClassOf prov:Entity .
### http://nidm.nidash.org/coordinate
nidm:coordinate rdf:type owl:Class ;
rdfs:subClassOf prov:Entity ,
prov:Location .
### http://nidm.nidash.org/coordinateSpace
nidm:coordinateSpace rdf:type owl:Class ;
rdfs:subClassOf prov:Entity .
### http://nidm.nidash.org/data
nidm:data rdf:type owl:Class ;
rdfs:subClassOf prov:Entity .
### http://nidm.nidash.org/designMatrix
nidm:designMatrix rdf:type owl:Class ;
rdfs:subClassOf prov:Entity .
### http://nidm.nidash.org/extentThreshold
nidm:extentThreshold rdf:type owl:Class ;
rdfs:subClassOf prov:Entity .
### http://nidm.nidash.org/firstLevelMeanBOLDIntensity
nidm:firstLevelMeanBOLDIntensity rdf:type owl:Class ;
rdfs:subClassOf prov:Entity .
### http://nidm.nidash.org/heightThreshold
nidm:heightThreshold rdf:type owl:Class ;
rdfs:subClassOf prov:Entity .
### http://nidm.nidash.org/maskMap
nidm:maskMap rdf:type owl:Class ;
rdfs:subClassOf prov:Entity .
### http://nidm.nidash.org/modelEstimationInputs
nidm:modelEstimationInputs rdf:type owl:Class ;
rdfs:subClassOf prov:Collection .
### http://nidm.nidash.org/residualMeanSquaresMap
nidm:residualMeanSquaresMap rdf:type owl:Class ;
rdfs:subClassOf prov:Entity .
### http://nidm.nidash.org/spm
nidm:spm rdf:type owl:Class ;
rdfs:subClassOf prov:SoftwareAgent .
### http://nidm.nidash.org/statisticalMap
nidm:statisticalMap rdf:type owl:Class ;
rdfs:subClassOf prov:Entity .
### http://nidm.nidash.org/subVolumeMask
nidm:subVolumeMask rdf:type owl:Class ;
rdfs:subClassOf prov:Entity .
### http://www.fil.ion.ucl.ac.uk/spm/ns/#clusterLevelStatistic
spm:clusterLevelStatistic rdf:type owl:Class ;
rdfs:subClassOf prov:Entity .
### http://www.fil.ion.ucl.ac.uk/spm/ns/#contrast
spm:contrast rdf:type owl:Class ;
rdfs:subClassOf prov:Activity .
### http://www.fil.ion.ucl.ac.uk/spm/ns/#estimation
spm:estimation rdf:type owl:Class ;
rdfs:subClassOf prov:Activity .
### http://www.fil.ion.ucl.ac.uk/spm/ns/#excursionSet
spm:excursionSet rdf:type owl:Class ;
rdfs:subClassOf prov:Entity .
### http://www.fil.ion.ucl.ac.uk/spm/ns/#inference
spm:inference rdf:type owl:Class ;
rdfs:subClassOf prov:Activity .
### http://www.fil.ion.ucl.ac.uk/spm/ns/#peakLevelStatistic
spm:peakLevelStatistic rdf:type owl:Class ;
rdfs:subClassOf prov:Entity .
### http://www.fil.ion.ucl.ac.uk/spm/ns/#reselsPerVoxelMap
spm:reselsPerVoxelMap rdf:type owl:Class ;
rdfs:subClassOf prov:Entity .
### http://www.fil.ion.ucl.ac.uk/spm/ns/#setLevelStatistic
spm:setLevelStatistic rdf:type owl:Class ;
rdfs:subClassOf prov:Entity .
### http://www.fil.ion.ucl.ac.uk/spm/ns/#standardError
spm:standardError rdf:type owl:Class ;
rdfs:subClassOf prov:Entity .
### http://www.fil.ion.ucl.ac.uk/spm/ns/#statisticImageProperties
spm:statisticImageProperties rdf:type owl:Class ;
rdfs:subClassOf prov:Entity .
### http://www.w3.org/ns/prov#Activity
prov:Activity rdf:type owl:Class .
### http://www.w3.org/ns/prov#Agent
prov:Agent rdf:type owl:Class .
### http://www.w3.org/ns/prov#Collection
prov:Collection rdf:type owl:Class .
### http://www.w3.org/ns/prov#Entity
prov:Entity rdf:type owl:Class .
### http://www.w3.org/ns/prov#Location
prov:Location rdf:type owl:Class .
### http://www.w3.org/ns/prov#SoftwareAgent
prov:SoftwareAgent rdf:type owl:Class .
#################################################################
#
# Individuals
#
#################################################################
### http://iri.nidash.org/beta_map_id_1
niiri:beta_map_id_1 rdf:type nidm:betaMap ,
owl:NamedIndividual ,
prov:Entity ;
rdfs:label "Beta Map 1" ;
nidm:fileName "beta_0001.img"^^xsd:string ;
crypto:sha "e43b6e01b0463fe7d40782137867a..."^^xsd:string ;
prov:atLocation "file:///path/to/beta_0001.img"^^xsd:anyURI ;
nidm:coordinateSpace niiri:coordinate_space_id_1 ;
prov:wasGeneratedBy niiri:model_fitting_id .
### http://iri.nidash.org/beta_map_id_2
niiri:beta_map_id_2 rdf:type nidm:betaMap ,
owl:NamedIndividual ,
prov:Entity ;
rdfs:label "Beta Map 2" ;
nidm:fileName "beta_0002.img"^^xsd:string ;
crypto:sha "e43b6e01b0463fe7d40782137867a..."^^xsd:string ;
prov:atLocation "file:///path/to/beta_0002.img"^^xsd:anyURI ;
nidm:coordinateSpace niiri:coordinate_space_id_1 ;
prov:wasGeneratedBy niiri:model_fitting_id .
### http://iri.nidash.org/cluster_0001
niiri:cluster_0001 rdf:type spm:clusterLevelStatistic ,
owl:NamedIndividual ,
prov:Entity ;
rdfs:label "Cluster Level Statistic: 0001" ;
spm:qValueFDR "0.0"^^xsd:float ;
nidm:pValueUncorrected "0.0"^^xsd:float ;
spm:pValueFWER "0.0"^^xsd:float ;
nidm:labelId "1"^^xsd:int ;
spm:clusterSizeInResels "23.120918"^^xsd:float ;
nidm:clusterSizeInVoxels "530"^^xsd:int ;
prov:wasDerivedFrom niiri:set_level_statistic_id .
### http://iri.nidash.org/cluster_0002
niiri:cluster_0002 rdf:type spm:clusterLevelStatistic ,
owl:NamedIndividual ,
prov:Entity ;
rdfs:label "Cluster Level Statistic: 0002" ;
nidm:pValueUncorrected "0.0"^^xsd:float ;
spm:pValueFWER "0.0"^^xsd:float ;
spm:qValueFDR "1.4E-45"^^xsd:float ;
spm:clusterSizeInResels "19.412848"^^xsd:float ;
nidm:labelId "2"^^xsd:int ;
nidm:clusterSizeInVoxels "445"^^xsd:int ;
prov:wasDerivedFrom niiri:set_level_statistic_id .
### http://iri.nidash.org/cluster_0003
niiri:cluster_0003 rdf:type spm:clusterLevelStatistic ,
owl:NamedIndividual ,
prov:Entity ;
rdfs:label "Cluster Level Statistic: 0003" ;
spm:pValueFWER "1.3923795E-10"^^xsd:float ;
nidm:pValueUncorrected "1.5659264E-9"^^xsd:float ;
spm:clusterSizeInResels "1.6577263"^^xsd:float ;
nidm:labelId "3"^^xsd:int ;
nidm:clusterSizeInVoxels "38"^^xsd:int ;
spm:qValueFDR "4.1758037E-9"^^xsd:float ;
prov:wasDerivedFrom niiri:set_level_statistic_id .
### http://iri.nidash.org/contrast_estimation_id
niiri:contrast_estimation_id rdf:type spm:contrast ,
owl:NamedIndividual ,
prov:Activity ;
rdfs:label "Contrast estimation" ;
prov:used niiri:beta_map_id_1 ,
niiri:beta_map_id_2 ,
niiri:contrast_id ,
niiri:design_matrix_id ,
niiri:mask_id_2 ,
niiri:residual_mean_squares_map_id ;
prov:wasAssociatedWith niiri:software_id .
### http://iri.nidash.org/contrast_id
niiri:contrast_id rdf:type nidm:contrast ,
owl:NamedIndividual ,
prov:Entity ;
rdfs:label "Contrast: Listening > Rest" ;
prov:value "[1, 0, 0]"^^xsd:string ;
nidm:contrastName "listening > rest"^^xsd:string ;
nidm:statisticType nidm:tStatistic .
### http://iri.nidash.org/contrast_map_id
niiri:contrast_map_id rdf:type nidm:contrastMap ,
owl:NamedIndividual ,
prov:Entity ;
rdfs:label "Contrast Map: listening > rest" ;
nidm:fileName "con_0001.img"^^xsd:string ;
crypto:sha "e43b6e01b0463fe7d40782137867a..."^^xsd:string ;
prov:atLocation "file:///path/to/con_0001.img"^^xsd:anyURI ;
nidm:contrastName "listening > rest"^^xsd:string ;
prov:wasGeneratedBy niiri:contrast_estimation_id ;
nidm:coordinateSpace niiri:coordinate_space_id_1 .
### http://iri.nidash.org/contrast_standard_error_map_id
niiri:contrast_standard_error_map_id rdf:type nidm:contrastStandardErrorMap ,
spm:standardError ,
owl:NamedIndividual ,
prov:Entity ;
rdfs:label "Contrast Standard Error Map" ;
nidm:fileName "contrastSE.nii"^^xsd:string ;
crypto:sha "e43b6e01b0463fe7d40782137867a..."^^xsd:string ;
prov:atLocation "file:///path/to/contrastSE.nii"^^xsd:anyURI ;
prov:wasGeneratedBy niiri:contrast_estimation_id ;
nidm:coordinateSpace niiri:coordinate_space_id_1 .
### http://iri.nidash.org/coordinate_0001
niiri:coordinate_0001 rdf:type nidm:coordinate ,
owl:NamedIndividual ,
prov:Entity ,
prov:Location ;
rdfs:label "Coordinate: 0001" ;
nidm:coordinate2 "-28.0"^^xsd:float ;
nidm:coordinate1 "-60.0"^^xsd:float ;
nidm:coordinate3 "13.0"^^xsd:float .
### http://iri.nidash.org/coordinate_0002
niiri:coordinate_0002 rdf:type nidm:coordinate ,
owl:NamedIndividual ,
prov:Entity ,
prov:Location ;
rdfs:label "Coordinate: 0002" ;
nidm:coordinate2 "-13.0"^^xsd:float ;
nidm:coordinate1 "-66.0"^^xsd:float ;
nidm:coordinate3 "4.0"^^xsd:float .
### http://iri.nidash.org/coordinate_0003
niiri:coordinate_0003 rdf:type nidm:coordinate ,
owl:NamedIndividual ,
prov:Entity ,
prov:Location ;
rdfs:label "Coordinate: 0003" ;
nidm:coordinate3 "-2.0"^^xsd:float ;
nidm:coordinate1 "-63.0"^^xsd:float ;
nidm:coordinate2 "-7.0"^^xsd:float .
### http://iri.nidash.org/coordinate_0004
niiri:coordinate_0004 rdf:type nidm:coordinate ,
owl:NamedIndividual ,
prov:Entity ,
prov:Location ;
rdfs:label "Coordinate: 0004" ;
nidm:coordinate2 "-22.0"^^xsd:float ;
nidm:coordinate3 "13.0"^^xsd:float ;
nidm:coordinate1 "57.0"^^xsd:float .
### http://iri.nidash.org/coordinate_0005
niiri:coordinate_0005 rdf:type nidm:coordinate ,
owl:NamedIndividual ,
prov:Entity ,
prov:Location ;
rdfs:label "Coordinate: 0005" ;
nidm:coordinate2 "-13.0"^^xsd:float ;
nidm:coordinate3 "-2.0"^^xsd:float ;
nidm:coordinate1 "66.0"^^xsd:float .
### http://iri.nidash.org/coordinate_0006
niiri:coordinate_0006 rdf:type nidm:coordinate ,
owl:NamedIndividual ,
prov:Entity ,
prov:Location ;
rdfs:label "Coordinate: 0006" ;
nidm:coordinate2 "-40.0"^^xsd:float ;
nidm:coordinate1 "57.0"^^xsd:float ;
nidm:coordinate3 "7.0"^^xsd:float .
### http://iri.nidash.org/coordinate_0007
niiri:coordinate_0007 rdf:type nidm:coordinate ,
owl:NamedIndividual ,
prov:Entity ,
prov:Location ;
rdfs:label "Coordinate: 0007" ;
nidm:coordinate3 "-14.0"^^xsd:float ;
nidm:coordinate2 "-31.0"^^xsd:float ;
nidm:coordinate1 "36.0"^^xsd:float .
### http://iri.nidash.org/coordinate_space_id_1
niiri:coordinate_space_id_1 rdf:type nidm:coordinateSpace ,
owl:NamedIndividual ,
prov:Entity ;
rdfs:label "Coordinate space 1" ;
nidm:numberOfDimensions "3"^^xsd:int ;
nidm:voxelUnits "['mm', 'mm', 'mm']"^^xsd:string ;
nidm:voxelSize "[3, 3, 3]"^^xsd:string ;
nidm:dimensions "[53,63,46]"^^xsd:string ;
nidm:voxelToWorldMapping "[[-3, 0, 0, 78],[0, 3, 0, -112],[0, 0, 3, -50],[0, 0, 0, 1]]"^^xsd:string ;
nidm:coordinateSystem nidm:mniCoordinateSystem .
### http://iri.nidash.org/coordinate_space_id_2
niiri:coordinate_space_id_2 rdf:type nidm:coordinateSpace ,
owl:NamedIndividual ,
prov:Entity ;
rdfs:label "Coordinate space 2" ;
nidm:numberOfDimensions "3"^^xsd:int ;
nidm:voxelUnits "['mm', 'mm', 'mm']"^^xsd:string ;
nidm:voxelSize "[3, 3, 3]"^^xsd:string ;
nidm:dimensions "[53,63,46]"^^xsd:string ;
nidm:voxelToWorldMapping "[[-3, 0, 0, 78],[0, 3, 0, -112],[0, 0, 3, -50],[0, 0, 0, 1]]"^^xsd:string ;
nidm:coordinateSystem nidm:mniCoordinateSystem .
### http://iri.nidash.org/data_id
niiri:data_id rdf:type nidm:data ,
owl:NamedIndividual ,
prov:Entity ;
rdfs:label "Data" ;
crypto:sha "e43b6e01b0463fe7d40782137867a..."^^xsd:string ;
prov:atLocation "file:///path/to/sd_0001.nii.gz"^^xsd:anyURI ;
nidm:fileName "sd_0001.nii.gz"^^xsd:string .
### http://iri.nidash.org/design_matrix_id
niiri:design_matrix_id rdf:type nidm:designMatrix ,
owl:NamedIndividual ,
prov:Entity ;
rdfs:label "Design Matrix" ;
nidm:fileName "design_matrix.csv"^^xsd:string ;
prov:atLocation "file:///path/to/design_matrix.csv"^^xsd:anyURI ;
nidm:visualisation "file:///path/to/design_matrix.png"^^xsd:anyURI .