-
Notifications
You must be signed in to change notification settings - Fork 41
Expand file tree
/
Copy pathcore-ontology.ttl
More file actions
2767 lines (1854 loc) · 119 KB
/
Copy pathcore-ontology.ttl
File metadata and controls
2767 lines (1854 loc) · 119 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 : <https://neuroshapes.org/> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .
@prefix sh: <http://www.w3.org/ns/shacl#> .
@prefix nsg: <https://neuroshapes.org/> .
@prefix nxv: <https://bluebrain.github.io/nexus/vocabulary/> .
@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 prov: <http://www.w3.org/ns/prov#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix vann: <http://purl.org/vocab/vann/> .
@prefix schema: <http://schema.org/> .
@prefix context: <https://incf.github.io/neuroshapes/contexts/> .
@prefix dcterms: <http://purl.org/dc/terms/> .
@base <https://neuroshapes.org/> .
<https://neuroshapes.org/> rdf:type owl:Ontology ;
vann:preferredNamespacePrefix "nsg" ;
rdfs:label "Neurosciencegraph Core Vocabulary"@en .
#################################################################
# Annotation properties
#################################################################
### http://purl.org/vocab/vann/preferredNamespacePrefix
vann:preferredNamespacePrefix rdf:type owl:AnnotationProperty .
### https://neuroshapes.org/definingOntology
nsg:definingOntology rdf:type owl:AnnotationProperty .
#################################################################
# Object Properties
#################################################################
### http://schema.org/additionalName
schema:additionalName rdf:type owl:ObjectProperty ;
rdfs:label "additional Name"@en .
### http://schema.org/address
schema:address rdf:type owl:ObjectProperty ;
rdfs:label "address"@en .
### http://schema.org/addressCountry
schema:addressCountry rdf:type owl:ObjectProperty ;
rdfs:label "address Country"@en .
### http://schema.org/addressLocality
schema:addressLocality rdf:type owl:ObjectProperty ;
rdfs:label "address Locality"@en .
### http://schema.org/affiliation
schema:affiliation rdf:type owl:ObjectProperty ;
rdfs:label "affiliation"@en .
### http://schema.org/algorithm
schema:algorithm rdf:type owl:ObjectProperty ;
rdfs:label "algorithm"@en .
### http://schema.org/alternateName
schema:alternateName rdf:type owl:ObjectProperty ;
rdfs:label "alternate Name"@en .
### http://schema.org/author
schema:author rdf:type owl:ObjectProperty ;
rdfs:label "author"@en .
### http://schema.org/birthDate
schema:birthDate rdf:type owl:ObjectProperty ;
rdfs:label "birth Date"@en .
### http://schema.org/citation
schema:citation rdf:type owl:ObjectProperty ;
rdfs:label "citation"@en .
### http://schema.org/contentSize
schema:contentSize rdf:type owl:ObjectProperty ;
rdfs:label "content Size"@en .
### http://schema.org/dateCreated
schema:dateCreated rdf:type owl:ObjectProperty ;
rdfs:label "date Created"@en .
### http://schema.org/dateModified
schema:dateModified rdf:type owl:ObjectProperty ;
rdfs:label "date Modified"@en .
### http://schema.org/datePublished
schema:datePublished rdf:type owl:ObjectProperty ;
rdfs:label "date Published"@en .
### http://schema.org/deathDate
schema:deathDate rdf:type owl:ObjectProperty ;
rdfs:label "death Date"@en .
### http://schema.org/description
schema:description rdf:type owl:ObjectProperty ;
rdfs:label "description"@en .
### http://schema.org/distance
schema:distance rdf:type owl:ObjectProperty ;
rdfs:label "distance"@en .
### http://schema.org/distribution
schema:distribution rdf:type owl:ObjectProperty ;
rdfs:label "distribution"@en .
### http://schema.org/email
schema:email rdf:type owl:ObjectProperty ;
rdfs:label "email"@en .
### http://schema.org/encodingFormat
schema:encodingFormat rdf:type owl:ObjectProperty ;
rdfs:label "encoding Format"@en .
### http://schema.org/familyName
schema:familyName rdf:type owl:ObjectProperty ;
rdfs:label "family Name"@en .
### http://schema.org/faxNumber
schema:faxNumber rdf:type owl:ObjectProperty ;
rdfs:label "fax Number"@en .
### http://schema.org/givenName
schema:givenName rdf:type owl:ObjectProperty ;
rdfs:label "given Name"@en .
### http://schema.org/hasPart
schema:hasPart rdf:type owl:ObjectProperty ;
rdfs:label "has Part"@en .
### http://schema.org/identifier
schema:identifier rdf:type owl:ObjectProperty ;
rdfs:label "identifier"@en .
### http://schema.org/image
schema:image rdf:type owl:ObjectProperty ;
rdfs:label "image"@en .
### http://schema.org/isPartOf
schema:isPartOf rdf:type owl:ObjectProperty ;
rdfs:label "is Part Of"@en .
### http://schema.org/keywords
schema:keywords rdf:type owl:ObjectProperty ;
rdfs:label "keywords"@en .
### http://schema.org/language
schema:language rdf:type owl:ObjectProperty ;
rdfs:label "language"@en .
### http://schema.org/license
schema:license rdf:type owl:ObjectProperty ;
rdfs:label "license"@en .
### http://schema.org/maxValue
schema:maxValue rdf:type owl:ObjectProperty ;
rdfs:label "max Value"@en .
### http://schema.org/minValue
schema:minValue rdf:type owl:ObjectProperty ;
rdfs:label "min Value"@en .
### http://schema.org/name
schema:name rdf:type owl:ObjectProperty ;
rdfs:label "name"@en .
### http://schema.org/parentOrganization
schema:parentOrganization rdf:type owl:ObjectProperty ;
rdfs:label "parent Organization"@en .
### http://schema.org/postalCode
schema:postalCode rdf:type owl:ObjectProperty ;
rdfs:label "postal Code"@en .
### http://schema.org/propertyID
schema:propertyID rdf:type owl:ObjectProperty ;
rdfs:label "property"@en .
### http://schema.org/releaseDate
schema:releaseDate rdf:type owl:ObjectProperty ;
rdfs:label "release Date"@en .
### http://schema.org/repetitions
schema:repetitions rdf:type owl:ObjectProperty ;
rdfs:label "repetitions"@en .
### http://schema.org/sameAs
schema:sameAs rdf:type owl:ObjectProperty ;
rdfs:label "same As"@en .
### http://schema.org/sku
schema:sku rdf:type owl:ObjectProperty ;
rdfs:label "sku"@en .
### http://schema.org/streetAddress
schema:streetAddress rdf:type owl:ObjectProperty ;
rdfs:label "street Address"@en .
### http://schema.org/telephone
schema:telephone rdf:type owl:ObjectProperty ;
rdfs:label "telephone"@en .
### http://schema.org/unitCode
schema:unitCode rdf:type owl:ObjectProperty ;
rdfs:label "unit Code"@en .
### http://schema.org/url
schema:url rdf:type owl:ObjectProperty ;
rdfs:label "url"@en .
### http://schema.org/value
schema:value rdf:type owl:ObjectProperty ;
rdfs:label "value"@en .
### http://schema.org/version
schema:version rdf:type owl:ObjectProperty ;
rdfs:label "version"@en .
### http://schema.org/weight
schema:weight rdf:type owl:ObjectProperty ;
rdfs:label "weight"@en .
### http://www.w3.org/1999/02/22-rdf-syntax-ns#type
rdf:type rdf:type owl:ObjectProperty ;
rdfs:label "type"@en .
### http://www.w3.org/2000/01/rdf-schema#label
rdfs:label rdf:type owl:ObjectProperty .
### http://www.w3.org/2002/07/owl#imports
owl:imports rdf:type owl:ObjectProperty ;
rdfs:label "imports"@en .
### http://www.w3.org/2004/02/skos/core#altLabel
skos:altLabel rdf:type owl:ObjectProperty ;
rdfs:label "alt Label"@en .
### http://www.w3.org/2004/02/skos/core#definition
skos:definition rdf:type owl:ObjectProperty .
### http://www.w3.org/2004/02/skos/core#inScheme
skos:inScheme rdf:type owl:ObjectProperty ;
rdfs:label "in Scheme"@en .
### http://www.w3.org/2004/02/skos/core#prefLabel
skos:prefLabel rdf:type owl:ObjectProperty .
### http://www.w3.org/2004/02/skos/core#topConceptOf
skos:topConceptOf rdf:type owl:ObjectProperty ;
rdfs:label "top Concept Of"@en .
### http://www.w3.org/ns/prov#activity
prov:activity rdf:type owl:ObjectProperty ;
rdfs:label "activity"@en .
### http://www.w3.org/ns/prov#agent
prov:agent rdf:type owl:ObjectProperty ;
rdfs:label "agent"@en .
### http://www.w3.org/ns/prov#atTime
prov:atTime rdf:type owl:ObjectProperty ;
rdfs:label "at Time"@en .
### http://www.w3.org/ns/prov#endedAtTime
prov:endedAtTime rdf:type owl:ObjectProperty ;
rdfs:label "ended At Time"@en .
### http://www.w3.org/ns/prov#entity
prov:entity rdf:type owl:ObjectProperty ;
rdfs:label "entity"@en .
### http://www.w3.org/ns/prov#generated
prov:generated rdf:type owl:ObjectProperty ;
rdfs:label "generated"@en .
### http://www.w3.org/ns/prov#hadActivity
prov:hadActivity rdf:type owl:ObjectProperty ;
rdfs:label "had Activity"@en .
### http://www.w3.org/ns/prov#hadMember
prov:hadMember rdf:type owl:ObjectProperty ;
rdfs:label "had Member"@en .
### http://www.w3.org/ns/prov#hadPlan
prov:hadPlan rdf:type owl:ObjectProperty ;
rdfs:label "had Plan"@en .
### http://www.w3.org/ns/prov#hadRole
prov:hadRole rdf:type owl:ObjectProperty ;
rdfs:label "had Role"@en .
### http://www.w3.org/ns/prov#hadUsage
prov:hadUsage rdf:type owl:ObjectProperty ;
rdfs:label "had Usage"@en .
### http://www.w3.org/ns/prov#qualifiedAssociation
prov:qualifiedAssociation rdf:type owl:ObjectProperty ;
rdfs:label "qualified Association"@en .
### http://www.w3.org/ns/prov#qualifiedGeneration
prov:qualifiedGeneration rdf:type owl:ObjectProperty ;
rdfs:label "qualified Generation"@en .
### http://www.w3.org/ns/prov#qualifiedUsage
prov:qualifiedUsage rdf:type owl:ObjectProperty ;
rdfs:label "qualified Usage"@en .
### http://www.w3.org/ns/prov#startedAtTime
prov:startedAtTime rdf:type owl:ObjectProperty ;
rdfs:label "started At Time"@en .
### http://www.w3.org/ns/prov#used
prov:used rdf:type owl:ObjectProperty ;
rdfs:label "used"@en .
### http://www.w3.org/ns/prov#wasAssociatedWith
prov:wasAssociatedWith rdf:type owl:ObjectProperty ;
rdfs:label "was Associated With"@en .
### http://www.w3.org/ns/prov#wasAttributedTo
prov:wasAttributedTo rdf:type owl:ObjectProperty ;
rdfs:label "was Attributed To"@en .
### http://www.w3.org/ns/prov#wasDerivedFrom
prov:wasDerivedFrom rdf:type owl:ObjectProperty ;
rdfs:label "was Derived From"@en .
### http://www.w3.org/ns/prov#wasGeneratedBy
prov:wasGeneratedBy rdf:type owl:ObjectProperty ;
rdfs:label "was Generated By"@en .
### http://www.w3.org/ns/prov#wasRevisionOf
prov:wasRevisionOf rdf:type owl:ObjectProperty ;
rdfs:label "was Revision Of"@en .
### http://www.w3.org/ns/prov#wasStartedBy
prov:wasStartedBy rdf:type owl:ObjectProperty ;
rdfs:label "was Started By"@en .
### https://neuroshapes.org/activityType
nsg:activityType rdf:type owl:ObjectProperty ;
rdfs:label "activity Type"@en .
### https://neuroshapes.org/age
nsg:age rdf:type owl:ObjectProperty ;
rdfs:label "age"@en .
### https://neuroshapes.org/analogToDigitalConverter
nsg:analogToDigitalConverter rdf:type owl:ObjectProperty ;
rdfs:label "analog To Digital Converter"@en .
### https://neuroshapes.org/annotation
nsg:annotation rdf:type owl:ObjectProperty ;
rdfs:label "annotation"@en .
### https://neuroshapes.org/annotationAngle
nsg:annotationAngle rdf:type owl:ObjectProperty ;
rdfs:label "annotation Angle"@en .
### https://neuroshapes.org/annotatorComment
nsg:annotatorComment rdf:type owl:ObjectProperty ;
rdfs:label "annotator Comment"@en .
### https://neuroshapes.org/atlasSpatialReferenceSystem
nsg:atlasSpatialReferenceSystem rdf:type owl:ObjectProperty ;
rdfs:label "atlas Spatial Reference System"@en .
### https://neuroshapes.org/atlasVersion
nsg:atlasVersion rdf:type owl:ObjectProperty ;
rdfs:label "atlas Version"@en .
### https://neuroshapes.org/axonProjection
nsg:axonProjection rdf:type owl:ObjectProperty ;
rdfs:label "axon Projection"@en .
### https://neuroshapes.org/bathSolution
nsg:bathSolution rdf:type owl:ObjectProperty ;
rdfs:label "bath Solution"@en .
### https://neuroshapes.org/bestScore
nsg:bestScore rdf:type owl:ObjectProperty ;
rdfs:label "best Score"@en .
### https://neuroshapes.org/boundary
nsg:boundary rdf:type owl:ObjectProperty ;
rdfs:label "boundary"@en .
### https://neuroshapes.org/boundingBox
nsg:boundingBox rdf:type owl:ObjectProperty ;
rdfs:label "bounding Box"@en .
### https://neuroshapes.org/brainLocation
nsg:brainLocation rdf:type owl:ObjectProperty ;
rdfs:label "brain Location"@en .
### https://neuroshapes.org/brainRegion
nsg:brainRegion rdf:type owl:ObjectProperty ;
rdfs:label "brain Region"@en .
### https://neuroshapes.org/cellLibraryFile
nsg:cellLibraryFile rdf:type owl:ObjectProperty ;
rdfs:label "cell Library File"@en .
### https://neuroshapes.org/cellLine
nsg:cellLine rdf:type owl:ObjectProperty ;
rdfs:label "cell Line"@en .
### https://neuroshapes.org/center
nsg:center rdf:type owl:ObjectProperty ;
rdfs:label "center"@en .
### https://neuroshapes.org/channel
nsg:channel rdf:type owl:ObjectProperty ;
rdfs:label "channel"@en .
### https://neuroshapes.org/chlorideReversalPotential
nsg:chlorideReversalPotential rdf:type owl:ObjectProperty ;
rdfs:label "chloride Reversal Potential"@en .
### https://neuroshapes.org/circuitCellProperties
nsg:circuitCellProperties rdf:type owl:ObjectProperty ;
rdfs:label "circuit Cell Properties"@en .
### https://neuroshapes.org/column
nsg:column rdf:type owl:ObjectProperty ;
rdfs:label "column"@en .
### https://neuroshapes.org/compensationCurrent
nsg:compensationCurrent rdf:type owl:ObjectProperty ;
rdfs:label "compensation Current"@en .
### https://neuroshapes.org/compressionCorrection
nsg:compressionCorrection rdf:type owl:ObjectProperty ;
rdfs:label "compression Correction"@en .
### https://neuroshapes.org/conformsTo
nsg:conformsTo rdf:type owl:ObjectProperty ;
rdfs:label "conforms To"@en .
### https://neuroshapes.org/contribution
nsg:contribution rdf:type owl:ObjectProperty ;
rdfs:label "contribution"@en .
### https://neuroshapes.org/coordinatesInBrainAtlas
nsg:coordinatesInBrainAtlas rdf:type owl:ObjectProperty ;
rdfs:label "coordinates In Brain Atlas"@en .
### https://neuroshapes.org/coordinatesInSlice
nsg:coordinatesInSlice rdf:type owl:ObjectProperty ;
rdfs:label "coordinates In Slice"@en .
### https://neuroshapes.org/cuttingThickness
nsg:cuttingThickness rdf:type owl:ObjectProperty ;
rdfs:label "cutting Thickness"@en .
### https://neuroshapes.org/dateOfSurgery
nsg:dateOfSurgery rdf:type owl:ObjectProperty ;
rdfs:label "date Of Surgery"@en .
### https://neuroshapes.org/derivation
nsg:derivation rdf:type owl:ObjectProperty ;
rdfs:label "derivation"@en .
### https://neuroshapes.org/digest
nsg:digest rdf:type owl:ObjectProperty ;
rdfs:label "digest"@en .
### https://neuroshapes.org/digitalToAnalogConverter
nsg:digitalToAnalogConverter rdf:type owl:ObjectProperty ;
rdfs:label "digital To Analog Converter"@en .
### https://neuroshapes.org/disease
nsg:disease rdf:type owl:ObjectProperty ;
rdfs:label "disease"@en .
### https://neuroshapes.org/diseaseModel
nsg:diseaseModel rdf:type owl:ObjectProperty ;
rdfs:label "disease Model"@en .
### https://neuroshapes.org/distanceToBoundary
nsg:distanceToBoundary rdf:type owl:ObjectProperty ;
rdfs:label "distance To Boundary"@en .
### https://neuroshapes.org/eCode
nsg:eCode rdf:type owl:ObjectProperty ;
rdfs:label "eCode"@en .
### https://neuroshapes.org/eModel
nsg:eModel rdf:type owl:ObjectProperty ;
rdfs:label "eModel"@en .
### https://neuroshapes.org/eType
nsg:eType rdf:type owl:ObjectProperty ;
rdfs:label "eType"@en .
### https://neuroshapes.org/edgeCollection
nsg:edgeCollection rdf:type owl:ObjectProperty ;
rdfs:label "edge Collection"@en .
### https://neuroshapes.org/edgePopulation
nsg:edgePopulation rdf:type owl:ObjectProperty ;
rdfs:label "edge Population"@en .
### https://neuroshapes.org/electrodeNumber
nsg:electrodeNumber rdf:type owl:ObjectProperty ;
rdfs:label "electrode Number"@en .
### https://neuroshapes.org/electrodeResistance
nsg:electrodeResistance rdf:type owl:ObjectProperty ;
rdfs:label "electrode Resistance"@en .
### https://neuroshapes.org/emodelIndex
nsg:emodelIndex rdf:type owl:ObjectProperty ;
rdfs:label "emodel Index"@en .
### https://neuroshapes.org/emodelRelease
nsg:emodelRelease rdf:type owl:ObjectProperty ;
rdfs:label "emodel Release"@en .
### https://neuroshapes.org/endMembranePotential
nsg:endMembranePotential rdf:type owl:ObjectProperty ;
rdfs:label "end Membrane Potential"@en .
### https://neuroshapes.org/experimentalCell
nsg:experimentalCell rdf:type owl:ObjectProperty ;
rdfs:label "experimental Cell"@en .
### https://neuroshapes.org/featureExtractionConfiguration
nsg:featureExtractionConfiguration rdf:type owl:ObjectProperty ;
rdfs:label "feature Extraction Configuration"@en .
### https://neuroshapes.org/features
nsg:features rdf:type owl:ObjectProperty ;
rdfs:label "features"@en .
### https://neuroshapes.org/firstRow
nsg:firstRow rdf:type owl:ObjectProperty ;
rdfs:label "first Row"@en .
### https://neuroshapes.org/fixationMethod
nsg:fixationMethod rdf:type owl:ObjectProperty ;
rdfs:label "fixation Method"@en .
### https://neuroshapes.org/gain
nsg:gain rdf:type owl:ObjectProperty ;
rdfs:label "gain"@en .
### https://neuroshapes.org/generation
nsg:generation rdf:type owl:ObjectProperty ;
rdfs:label "generation"@en .
### https://neuroshapes.org/geometry
nsg:geometry rdf:type owl:ObjectProperty ;
rdfs:label "geometry"@en .
### https://neuroshapes.org/geometryParameter
nsg:geometryParameter rdf:type owl:ObjectProperty ;
rdfs:label "geometry Parameter"@en .
### https://neuroshapes.org/hadProtocol
nsg:hadProtocol rdf:type owl:ObjectProperty ;
rdfs:label "had Protocol"@en .
### https://neuroshapes.org/hasApicalDendrite
nsg:hasApicalDendrite rdf:type owl:ObjectProperty ;
rdfs:label "has Apical Dendrite"@en .
### https://neuroshapes.org/hasAxon
nsg:hasAxon rdf:type owl:ObjectProperty ;
rdfs:label "has Axon"@en .
### https://neuroshapes.org/hasBasalDendrite
nsg:hasBasalDendrite rdf:type owl:ObjectProperty ;
rdfs:label "has Basal Dendrite"@en .
### https://neuroshapes.org/hasBody
nsg:hasBody rdf:type owl:ObjectProperty ;
rdfs:label "has Body"@en .
### https://neuroshapes.org/hasSelector
nsg:hasSelector rdf:type owl:ObjectProperty ;
rdfs:label "has Selector"@en .
### https://neuroshapes.org/hasSoma
nsg:hasSoma rdf:type owl:ObjectProperty ;
rdfs:label "has Soma"@en .
### https://neuroshapes.org/hasSource
nsg:hasSource rdf:type owl:ObjectProperty ;
rdfs:label "has Source"@en .
### https://neuroshapes.org/hasTarget
nsg:hasTarget rdf:type owl:ObjectProperty ;
rdfs:label "has Target"@en .
### https://neuroshapes.org/heightResolution
nsg:heightResolution rdf:type owl:ObjectProperty ;
rdfs:label "height Resolution"@en .
### https://neuroshapes.org/hemisphere
nsg:hemisphere rdf:type owl:ObjectProperty ;
rdfs:label "hemisphere"@en .
### https://neuroshapes.org/hypampThreshold
nsg:hypampThreshold rdf:type owl:ObjectProperty ;
rdfs:label "hypamp Threshold"@en .
### https://neuroshapes.org/imageDirection
nsg:imageDirection rdf:type owl:ObjectProperty ;
rdfs:label "image Direction"@en .
### https://neuroshapes.org/imageModality
nsg:imageModality rdf:type owl:ObjectProperty ;
rdfs:label "image Modality"@en .
### https://neuroshapes.org/imageOrigin
nsg:imageOrigin rdf:type owl:ObjectProperty ;
rdfs:label "image Origin"@en .
### https://neuroshapes.org/imageVolume
nsg:imageVolume rdf:type owl:ObjectProperty ;
rdfs:label "image Volume"@en .
### https://neuroshapes.org/imagingMethod
nsg:imagingMethod rdf:type owl:ObjectProperty ;
rdfs:label "imaging Method"@en .
### https://neuroshapes.org/index
nsg:index rdf:type owl:ObjectProperty ;
rdfs:label "index"@en .
### https://neuroshapes.org/inputResistance
nsg:inputResistance rdf:type owl:ObjectProperty ;
rdfs:label "input Resistance"@en .
### https://neuroshapes.org/invalidation
nsg:invalidation rdf:type owl:ObjectProperty ;
rdfs:label "invalidation"@en .
### https://neuroshapes.org/ionChannelGene
nsg:ionChannelGene rdf:type owl:ObjectProperty ;
rdfs:label "ion Channel Gene"@en .
### https://neuroshapes.org/isRegisteredIn
nsg:isRegisteredIn rdf:type owl:ObjectProperty ;
rdfs:label "is Registered In"@en .
### https://neuroshapes.org/labelingCompound
nsg:labelingCompound rdf:type owl:ObjectProperty ;
rdfs:label "labeling Compound"@en .
### https://neuroshapes.org/layer
nsg:layer rdf:type owl:ObjectProperty ;
rdfs:label "layer"@en .
### https://neuroshapes.org/liquidJunctionPotential
nsg:liquidJunctionPotential rdf:type owl:ObjectProperty ;
rdfs:label "liquid Junction Potential"@en .
### https://neuroshapes.org/location
nsg:location rdf:type owl:ObjectProperty ;
rdfs:label "location"@en .
### https://neuroshapes.org/locationInSlice
nsg:locationInSlice rdf:type owl:ObjectProperty ;
rdfs:label "location In Slice"@en .
### https://neuroshapes.org/longitudinalAxis
nsg:longitudinalAxis rdf:type owl:ObjectProperty ;
rdfs:label "longitudinal Axis"@en .
### https://neuroshapes.org/lowerPoint
nsg:lowerPoint rdf:type owl:ObjectProperty ;
rdfs:label "lower Point"@en .
### https://neuroshapes.org/mType
nsg:mType rdf:type owl:ObjectProperty ;
rdfs:label "mType"@en .
### https://neuroshapes.org/mainModelScript
nsg:mainModelScript rdf:type owl:ObjectProperty ;
rdfs:label "main Model Script"@en .
### https://neuroshapes.org/materials
nsg:materials rdf:type owl:ObjectProperty ;
rdfs:label "materials"@en .
### https://neuroshapes.org/measuredHoldingPotential
nsg:measuredHoldingPotential rdf:type owl:ObjectProperty ;
rdfs:label "measured Holding Potential"@en .
### https://neuroshapes.org/memodelIndex
nsg:memodelIndex rdf:type owl:ObjectProperty ;
rdfs:label "memodel Index"@en .
### https://neuroshapes.org/memodelRelease
nsg:memodelRelease rdf:type owl:ObjectProperty ;
rdfs:label "memodel Release"@en .
### https://neuroshapes.org/modelOf
nsg:modelOf rdf:type owl:ObjectProperty ;
rdfs:label "model Of"@en .
### https://neuroshapes.org/modelScript
nsg:modelScript rdf:type owl:ObjectProperty ;
rdfs:label "model Script"@en .
### https://neuroshapes.org/morphology
nsg:morphology rdf:type owl:ObjectProperty ;
rdfs:label "morphology"@en .
### https://neuroshapes.org/morphologyIndex
nsg:morphologyIndex rdf:type owl:ObjectProperty ;
rdfs:label "morphology Index"@en .
### https://neuroshapes.org/morphologyRelease
nsg:morphologyRelease rdf:type owl:ObjectProperty ;
rdfs:label "morphology Release"@en .
### https://neuroshapes.org/mountingMedia
nsg:mountingMedia rdf:type owl:ObjectProperty ;
rdfs:label "mounting Media"@en .
### https://neuroshapes.org/nodeCollection
nsg:nodeCollection rdf:type owl:ObjectProperty ;
rdfs:label "node Collection"@en .
### https://neuroshapes.org/normalizedScore
nsg:normalizedScore rdf:type owl:ObjectProperty ;
rdfs:label "normalized Score"@en .
### https://neuroshapes.org/numberOfSlices
nsg:numberOfSlices rdf:type owl:ObjectProperty ;
rdfs:label "number Of Slices"@en .
### https://neuroshapes.org/objectOfStudy
nsg:objectOfStudy rdf:type owl:ObjectProperty ;
rdfs:label "object Of Study"@en .
### https://neuroshapes.org/objectiveMagnification
nsg:objectiveMagnification rdf:type owl:ObjectProperty ;
rdfs:label "objective Magnification"@en .
### https://neuroshapes.org/objectiveType
nsg:objectiveType rdf:type owl:ObjectProperty ;
rdfs:label "objective Type"@en .
### https://neuroshapes.org/orientation
nsg:orientation rdf:type owl:ObjectProperty ;
rdfs:label "orientation"@en .
### https://neuroshapes.org/origin
nsg:origin rdf:type owl:ObjectProperty ;
rdfs:label "origin"@en .
### https://neuroshapes.org/parcellationOntology
nsg:parcellationOntology rdf:type owl:ObjectProperty ;
rdfs:label "parcellation Ontology"@en .
### https://neuroshapes.org/parcellationVolume
nsg:parcellationVolume rdf:type owl:ObjectProperty ;
rdfs:label "parcellation Volume"@en .
### https://neuroshapes.org/period
nsg:period rdf:type owl:ObjectProperty ;
rdfs:label "period"@en .
### https://neuroshapes.org/pipetteNumber
nsg:pipetteNumber rdf:type owl:ObjectProperty ;
rdfs:label "pipette Number"@en .
### https://neuroshapes.org/pipetteResistance
nsg:pipetteResistance rdf:type owl:ObjectProperty ;
rdfs:label "pipette Resistance"@en .
### https://neuroshapes.org/positionInLayer
nsg:positionInLayer rdf:type owl:ObjectProperty ;
rdfs:label "position In Layer"@en .
### https://neuroshapes.org/projectName
nsg:projectName rdf:type owl:ObjectProperty ;
rdfs:label "project Name"@en .
### https://neuroshapes.org/properties
nsg:properties rdf:type owl:ObjectProperty ;
rdfs:label "properties"@en .
### https://neuroshapes.org/providerExperimentId
nsg:providerExperimentId rdf:type owl:ObjectProperty ;
rdfs:label "provider Experiment Id"@en .
### https://neuroshapes.org/providerExperimentName
nsg:providerExperimentName rdf:type owl:ObjectProperty ;
rdfs:label "provider Experiment Name"@en .
### https://neuroshapes.org/putativeEtype
nsg:putativeEtype rdf:type owl:ObjectProperty ;
rdfs:label "putative Etype"@en .
### https://neuroshapes.org/putativeMType
nsg:putativeMType rdf:type owl:ObjectProperty ;
rdfs:label "putative MType"@en .