forked from dissys/sbol-owl3
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsbol3.ofn
More file actions
2489 lines (1881 loc) · 156 KB
/
Copy pathsbol3.ofn
File metadata and controls
2489 lines (1881 loc) · 156 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://sbols.org/v3#>)
Prefix(om:=<http://www.ontology-of-units-of-measure.org/resource/om-2/>)
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(otol:=<http://keele.ac.uk/scm/otol#>)
Prefix(prov:=<https://www.w3.org/ns/prov#>)
Prefix(rdfs:=<http://www.w3.org/2000/01/rdf-schema#>)
Prefix(sbol:=<http://sbols.org/v3#>)
Prefix(identifiers:=<https://identifiers.org/>)
Ontology(<http://sbols.org/v3#>
Declaration(Class(sbol:Attachment))
Declaration(Class(sbol:BiochemicalReactionInteraction))
Declaration(Class(sbol:CDSDNAComponent))
Declaration(Class(sbol:Cardinality))
Declaration(Class(sbol:Collection))
Declaration(Class(sbol:CombinatorialDerivation))
Declaration(Class(sbol:CombinatorialDerivationStrategy))
Declaration(Class(sbol:Component))
Declaration(Class(sbol:ComponentReference))
Declaration(Class(sbol:ComponentRole))
Declaration(Class(sbol:ComponentType))
Declaration(Class(sbol:Constraint))
Declaration(Class(sbol:ConstraintRestriction))
Declaration(Class(sbol:ControlInteraction))
Declaration(Class(sbol:Cut))
Declaration(Class(sbol:DNAComponent))
Declaration(Class(sbol:DNARNAComponentType))
Declaration(Class(sbol:DNARole))
Declaration(Class(sbol:DNASequence))
Declaration(Class(sbol:DegradationInteraction))
Declaration(Class(sbol:EffectorSimpleChemicalComponent))
Declaration(Class(sbol:Encoding))
Declaration(Class(sbol:EngineeredRegionDNAComponent))
Declaration(Class(sbol:EntireSequence))
Declaration(Class(sbol:Experiment))
Declaration(Class(sbol:ExperimentalData))
Declaration(Class(sbol:ExternallyDefined))
Declaration(Class(sbol:Feature))
Declaration(Class(sbol:FunctionalEntityComponent))
Declaration(Class(sbol:GeneDNAComponent))
Declaration(Class(sbol:GenericDNAComponent))
Declaration(Class(sbol:GenericTopLevel))
Declaration(Class(sbol:GeneticProductionInteraction))
Declaration(Class(sbol:Identified))
Declaration(Class(sbol:IdentityRestriction))
Declaration(Class(sbol:Implementation))
Declaration(Class(sbol:InChISequence))
Declaration(Class(sbol:InhibitedParticipation))
Declaration(Class(sbol:InhibitionInteraction))
Declaration(Class(sbol:InhibitorParticipation))
Declaration(Class(sbol:Interaction))
Declaration(Class(sbol:InteractionType))
Declaration(Class(sbol:Interface))
Declaration(Class(sbol:LocalSubComponent))
Declaration(Class(sbol:Location))
Declaration(Class(sbol:Metadata))
Declaration(Class(sbol:Model))
Declaration(Class(sbol:ModelFramework))
Declaration(Class(sbol:ModelLanguage))
Declaration(Class(sbol:ModifiedParticipation))
Declaration(Class(sbol:ModifierParticipation))
Declaration(Class(sbol:NonCovalentBindingInteraction))
Declaration(Class(sbol:NonCovalentComplexComponent))
Declaration(Class(sbol:NucleicAcidTopology))
Declaration(Class(sbol:OperatorDNAComponent))
Declaration(Class(sbol:Orientation))
Declaration(Class(sbol:OrientationRestriction))
Declaration(Class(sbol:Participation))
Declaration(Class(sbol:ParticipationRole))
Declaration(Class(sbol:ProductParticipation))
Declaration(Class(sbol:PromoterDNAComponent))
Declaration(Class(sbol:PromoterParticipation))
Declaration(Class(sbol:ProteinComponent))
Declaration(Class(sbol:ProteinRole))
Declaration(Class(sbol:ProteinSequence))
Declaration(Class(sbol:RBSDNAComponent))
Declaration(Class(sbol:RNAComponent))
Declaration(Class(sbol:RNARole))
Declaration(Class(sbol:RNASequence))
Declaration(Class(sbol:Range))
Declaration(Class(sbol:ReactantParticipation))
Declaration(Class(sbol:RoleIntegration))
Declaration(Class(sbol:SBOLActivity))
Declaration(Class(sbol:SBOLAgent))
Declaration(Class(sbol:SBOLAssociation))
Declaration(Class(sbol:SBOLBinaryPrefix))
Declaration(Class(sbol:SBOLCompoundUnit))
Declaration(Class(sbol:SBOLMeasure))
Declaration(Class(sbol:SBOLPlan))
Declaration(Class(sbol:SBOLPrefix))
Declaration(Class(sbol:SBOLPrefixedUnit))
Declaration(Class(sbol:SBOLSIPrefix))
Declaration(Class(sbol:SBOLSingularUnit))
Declaration(Class(sbol:SBOLTerm))
Declaration(Class(sbol:SBOLUnit))
Declaration(Class(sbol:SBOLUnitDivision))
Declaration(Class(sbol:SBOLUnitExponentiation))
Declaration(Class(sbol:SBOLUnitMultiplication))
Declaration(Class(sbol:SBOLUsage))
Declaration(Class(sbol:SBOLValue))
Declaration(Class(sbol:SMILESSequence))
Declaration(Class(sbol:Sequence))
Declaration(Class(sbol:SequenceFeature))
Declaration(Class(sbol:SequenceWithElements))
Declaration(Class(sbol:SequentialRestriction))
Declaration(Class(sbol:SimpleChemicalComponent))
Declaration(Class(sbol:SmallMoleculeRole))
Declaration(Class(sbol:StimulatedParticipation))
Declaration(Class(sbol:StimulationInteraction))
Declaration(Class(sbol:StimulatorParticipation))
Declaration(Class(sbol:SubComponent))
Declaration(Class(sbol:TemplateParticipation))
Declaration(Class(sbol:TerminatorDNAComponent))
Declaration(Class(sbol:TopLevel))
Declaration(Class(sbol:TopologyRestriction))
Declaration(Class(sbol:TranscriptionFactorProteinComponent))
Declaration(Class(sbol:VariableFeature))
Declaration(Class(sbol:contains))
Declaration(Class(sbol:covers))
Declaration(Class(sbol:differentFrom))
Declaration(Class(sbol:enumerate))
Declaration(Class(sbol:equals))
Declaration(Class(sbol:finishes))
Declaration(Class(sbol:inline))
Declaration(Class(sbol:isDisjointFrom))
Declaration(Class(sbol:meets))
Declaration(Class(sbol:mergeRoles))
Declaration(Class(sbol:one))
Declaration(Class(sbol:oneOrMore))
Declaration(Class(sbol:oppositeOrientationAs))
Declaration(Class(sbol:overlaps))
Declaration(Class(sbol:overrideRoles))
Declaration(Class(sbol:precedes))
Declaration(Class(sbol:replaces))
Declaration(Class(sbol:reverseComplement))
Declaration(Class(sbol:sameOrientationAs))
Declaration(Class(sbol:sample))
Declaration(Class(sbol:starts))
Declaration(Class(sbol:strictlyContains))
Declaration(Class(sbol:strictlyPrecedes))
Declaration(Class(sbol:verifyIdentical))
Declaration(Class(sbol:zeroOrMore))
Declaration(Class(sbol:zeroOrOne))
Declaration(Class(om:BinaryPrefix))
Declaration(Class(om:CompoundUnit))
Declaration(Class(om:Measure))
Declaration(Class(om:Prefix))
Declaration(Class(om:PrefixedUnit))
Declaration(Class(om:SIPrefix))
Declaration(Class(om:SingularUnit))
Declaration(Class(om:Unit))
Declaration(Class(om:UnitDivision))
Declaration(Class(om:UnitExponentiation))
Declaration(Class(om:UnitMultiplication))
Declaration(Class(identifiers:CHEBI:35224))
Declaration(Class(identifiers:CHEBI:50906))
Declaration(Class(identifiers:GO:0003674))
Declaration(Class(identifiers:GO:0003700))
Declaration(Class(identifiers:SBO:0000000))
Declaration(Class(identifiers:SBO:0000003))
Declaration(Class(identifiers:SBO:0000004))
Declaration(Class(identifiers:SBO:0000010))
Declaration(Class(identifiers:SBO:0000011))
Declaration(Class(identifiers:SBO:0000019))
Declaration(Class(identifiers:SBO:0000020))
Declaration(Class(identifiers:SBO:0000062))
Declaration(Class(identifiers:SBO:0000063))
Declaration(Class(identifiers:SBO:0000167))
Declaration(Class(identifiers:SBO:0000168))
Declaration(Class(identifiers:SBO:0000169))
Declaration(Class(identifiers:SBO:0000170))
Declaration(Class(identifiers:SBO:0000176))
Declaration(Class(identifiers:SBO:0000177))
Declaration(Class(identifiers:SBO:0000179))
Declaration(Class(identifiers:SBO:0000231))
Declaration(Class(identifiers:SBO:0000234))
Declaration(Class(identifiers:SBO:0000236))
Declaration(Class(identifiers:SBO:0000241))
Declaration(Class(identifiers:SBO:0000247))
Declaration(Class(identifiers:SBO:0000250))
Declaration(Class(identifiers:SBO:0000251))
Declaration(Class(identifiers:SBO:0000252))
Declaration(Class(identifiers:SBO:0000253))
Declaration(Class(identifiers:SBO:0000289))
Declaration(Class(identifiers:SBO:0000459))
Declaration(Class(identifiers:SBO:0000589))
Declaration(Class(identifiers:SBO:0000598))
Declaration(Class(identifiers:SBO:0000642))
Declaration(Class(identifiers:SBO:0000643))
Declaration(Class(identifiers:SBO:0000644))
Declaration(Class(identifiers:SBO:0000645))
Declaration(Class(identifiers:SBO:0000681))
Declaration(Class(identifiers:SBO:0000693))
Declaration(Class(identifiers:SO:0000057))
Declaration(Class(identifiers:SO:0000110))
Declaration(Class(identifiers:SO:0000139))
Declaration(Class(identifiers:SO:0000141))
Declaration(Class(identifiers:SO:0000167))
Declaration(Class(identifiers:SO:0000234))
Declaration(Class(identifiers:SO:0000316))
Declaration(Class(identifiers:SO:0000400))
Declaration(Class(identifiers:SO:0000704))
Declaration(Class(identifiers:SO:0000804))
Declaration(Class(identifiers:SO:0000984))
Declaration(Class(identifiers:SO:0000985))
Declaration(Class(identifiers:SO:0000987))
Declaration(Class(identifiers:SO:0000988))
Declaration(Class(identifiers:SO:0001030))
Declaration(Class(identifiers:SO:0001031))
Declaration(Class(identifiers:edam:format_1196))
Declaration(Class(identifiers:edam:format_1197))
Declaration(Class(identifiers:edam:format_1207))
Declaration(Class(identifiers:edam:format_1208))
Declaration(Class(identifiers:edam:format_1915))
Declaration(Class(identifiers:edam:format_2585))
Declaration(Class(identifiers:edam:format_3156))
Declaration(Class(identifiers:edam:format_3240))
Declaration(Class(prov:Activity))
Declaration(Class(prov:Agent))
Declaration(Class(prov:Association))
Declaration(Class(prov:Plan))
Declaration(Class(prov:Usage))
Declaration(ObjectProperty(sbol:built))
Declaration(ObjectProperty(sbol:cardinality))
Declaration(ObjectProperty(sbol:comprises))
Declaration(ObjectProperty(sbol:definition))
Declaration(ObjectProperty(sbol:directlyComprises))
Declaration(ObjectProperty(sbol:encoding))
Declaration(ObjectProperty(sbol:format))
Declaration(ObjectProperty(sbol:framework))
Declaration(ObjectProperty(sbol:hasAttachment))
Declaration(ObjectProperty(sbol:hasConstraint))
Declaration(ObjectProperty(sbol:hasFeature))
Declaration(ObjectProperty(sbol:hasInteraction))
Declaration(ObjectProperty(sbol:hasInterface))
Declaration(ObjectProperty(sbol:hasLocation))
Declaration(ObjectProperty(sbol:hasMeasure))
Declaration(ObjectProperty(sbol:hasModel))
Declaration(ObjectProperty(sbol:hasNamespace))
Declaration(ObjectProperty(sbol:hasParticipation))
Declaration(ObjectProperty(sbol:hasSequence))
Declaration(ObjectProperty(sbol:hasVariableFeature))
Declaration(ObjectProperty(sbol:higherOrderParticipant))
Declaration(ObjectProperty(sbol:inChildOf))
Declaration(ObjectProperty(sbol:input))
Declaration(ObjectProperty(sbol:instanceOf))
Declaration(ObjectProperty(sbol:language))
Declaration(ObjectProperty(sbol:member))
Declaration(ObjectProperty(sbol:nondirectional))
Declaration(ObjectProperty(sbol:object))
Declaration(ObjectProperty(sbol:orientation))
Declaration(ObjectProperty(sbol:output))
Declaration(ObjectProperty(sbol:participant))
Declaration(ObjectProperty(sbol:refersTo))
Declaration(ObjectProperty(sbol:restriction))
Declaration(ObjectProperty(sbol:role))
Declaration(ObjectProperty(sbol:roleIntegration))
Declaration(ObjectProperty(sbol:source))
Declaration(ObjectProperty(sbol:sourceLocation))
Declaration(ObjectProperty(sbol:strategy))
Declaration(ObjectProperty(sbol:subject))
Declaration(ObjectProperty(sbol:template))
Declaration(ObjectProperty(sbol:type))
Declaration(ObjectProperty(sbol:variable))
Declaration(ObjectProperty(sbol:variant))
Declaration(ObjectProperty(sbol:variantCollection))
Declaration(ObjectProperty(sbol:variantDerivation))
Declaration(ObjectProperty(sbol:variantMeasure))
Declaration(ObjectProperty(om:hasBase))
Declaration(ObjectProperty(om:hasDenominator))
Declaration(ObjectProperty(om:hasNumerator))
Declaration(ObjectProperty(om:hasPrefix))
Declaration(ObjectProperty(om:hasTerm1))
Declaration(ObjectProperty(om:hasTerm2))
Declaration(ObjectProperty(om:hasUnit))
Declaration(ObjectProperty(rdf:type))
Declaration(ObjectProperty(prov:agent))
Declaration(ObjectProperty(prov:entity))
Declaration(ObjectProperty(prov:hadPlan))
Declaration(ObjectProperty(prov:hadRole))
Declaration(ObjectProperty(prov:qualifiedAssociation))
Declaration(ObjectProperty(prov:qualifiedUsage))
Declaration(ObjectProperty(prov:wasDerivedFrom))
Declaration(ObjectProperty(prov:wasGeneratedBy))
Declaration(ObjectProperty(prov:wasInformedBy))
Declaration(DataProperty(sbol:at))
Declaration(DataProperty(sbol:description))
Declaration(DataProperty(sbol:displayId))
Declaration(DataProperty(sbol:elements))
Declaration(DataProperty(sbol:end))
Declaration(DataProperty(sbol:hash))
Declaration(DataProperty(sbol:hashAlgorithm))
Declaration(DataProperty(sbol:name))
Declaration(DataProperty(sbol:order))
Declaration(DataProperty(sbol:size))
Declaration(DataProperty(sbol:start))
Declaration(DataProperty(om:alternativeLabel))
Declaration(DataProperty(om:alternativeSymbol))
Declaration(DataProperty(om:hasExponent))
Declaration(DataProperty(om:hasFactor))
Declaration(DataProperty(om:hasNumericalValue))
Declaration(DataProperty(om:longComment))
Declaration(DataProperty(om:symbol))
Declaration(DataProperty(prov:endedAtTime))
Declaration(DataProperty(prov:startedAtTime))
Declaration(AnnotationProperty(otol:constantList))
Declaration(AnnotationProperty(otol:domainEntity))
Declaration(AnnotationProperty(otol:replacementOf))
Declaration(AnnotationProperty(otol:vocabulary))
############################
# Annotation Properties
############################
# Annotation Property: otol:constantList (Constant list)
AnnotationAssertion(rdfs:comment otol:constantList "If true, create an enum list.")
AnnotationAssertion(rdfs:label otol:constantList "Constant list")
# Annotation Property: otol:domainEntity (domainEntity)
AnnotationAssertion(rdfs:comment otol:domainEntity "If true, indicates that the term corresponds to a domain entity. Software automation tools should create a specific entity.")
AnnotationAssertion(rdfs:label otol:domainEntity "domainEntity")
# Annotation Property: otol:replacementOf (replacementOf)
AnnotationAssertion(rdfs:comment otol:replacementOf "If specified, create the entity name according to the value of this property. E.g. for sbol3:SBOLActivity otol:replacementOf prov:Activity, create the entities using the Activity name only.")
AnnotationAssertion(rdfs:label otol:replacementOf "replacementOf")
# Annotation Property: otol:vocabulary (Vocabulary)
AnnotationAssertion(rdfs:comment otol:vocabulary "If true, an object should be created for the container class.")
AnnotationAssertion(rdfs:label otol:vocabulary "Vocabulary")
############################
# Object Properties
############################
# Object Property: sbol:built (built)
AnnotationAssertion(rdfs:comment sbol:built "The built property is OPTIONAL and MAY contain a IRI that MUST refer to a Component. This Component is intended to describe the actual physical structure and/or functional behavior of the Implementation.")
AnnotationAssertion(rdfs:label sbol:built "built")
FunctionalObjectProperty(sbol:built)
ObjectPropertyDomain(sbol:built sbol:Implementation)
ObjectPropertyRange(sbol:built sbol:Component)
# Object Property: sbol:cardinality (cardinality)
AnnotationAssertion(rdfs:comment sbol:cardinality "The cardinality property is REQUIRED and has type of IRI. This property specifies how many Feature objects SHOULD be derived from the template Feature during the derivation of a new Component.")
AnnotationAssertion(rdfs:label sbol:cardinality "cardinality")
FunctionalObjectProperty(sbol:cardinality)
ObjectPropertyDomain(sbol:cardinality sbol:VariableFeature)
ObjectPropertyRange(sbol:cardinality ObjectUnionOf(sbol:one sbol:oneOrMore sbol:zeroOrMore sbol:zeroOrOne))
# Object Property: sbol:comprises (comprises)
AnnotationAssertion(rdfs:comment sbol:comprises "The comprises property can be used to express parent-child compositional relationships as a custom approach if needed.")
AnnotationAssertion(rdfs:label sbol:comprises "comprises")
TransitiveObjectProperty(sbol:comprises)
# Object Property: sbol:definition (definition)
AnnotationAssertion(rdfs:comment sbol:definition "The definition property is REQUIRED and is of type IRI that links to a canonical definition external to SBOL.")
AnnotationAssertion(rdfs:label sbol:definition "definition")
FunctionalObjectProperty(sbol:definition)
ObjectPropertyDomain(sbol:definition sbol:ExternallyDefined)
# Object Property: sbol:directlyComprises (directlyComprises)
AnnotationAssertion(rdfs:comment sbol:directlyComprises "Subclass of comprises that is used to express direct parent-child compositional relationships.")
AnnotationAssertion(rdfs:label sbol:directlyComprises "directlyComprises")
SubObjectPropertyOf(sbol:directlyComprises sbol:comprises)
# Object Property: sbol:encoding (encoding)
AnnotationAssertion(rdfs:comment sbol:encoding "The encoding property has a data type of IRI, and is OPTIONAL unless elements is set, in which case it is REQUIRED.")
AnnotationAssertion(rdfs:label sbol:encoding "encoding")
FunctionalObjectProperty(sbol:encoding)
ObjectPropertyDomain(sbol:encoding sbol:Sequence)
# Object Property: sbol:format (format)
AnnotationAssertion(rdfs:comment sbol:format "The format property is OPTIONAL and MAY contain a IRI that specifies the format of the attached file. It is RECOMMENDED that this IRI refer to a term from the EMBRACE Data and Methods (EDAM) ontology")
AnnotationAssertion(rdfs:label sbol:format "format")
FunctionalObjectProperty(sbol:format)
ObjectPropertyDomain(sbol:format sbol:Attachment)
# Object Property: sbol:framework (framework)
AnnotationAssertion(rdfs:comment sbol:framework "The framework property is REQUIRED and MUST contain a IRI that specifies the framework in which the model is implemented. It is RECOMMENDED this IRI refer to a term from the modeling framework branch of the SBO when possible.")
AnnotationAssertion(rdfs:label sbol:framework "framework")
FunctionalObjectProperty(sbol:framework)
ObjectPropertyDomain(sbol:framework sbol:Model)
# Object Property: sbol:hasAttachment (hasAttachment)
AnnotationAssertion(rdfs:comment sbol:hasAttachment "A TopLevel object can have zero or more hasAttachment properties, each of type IRI specifying an Attachment object.")
AnnotationAssertion(rdfs:label sbol:hasAttachment "hasAttachment")
ObjectPropertyDomain(sbol:hasAttachment sbol:TopLevel)
ObjectPropertyRange(sbol:hasAttachment sbol:Attachment)
# Object Property: sbol:hasConstraint (hasConstraint)
AnnotationAssertion(rdfs:comment sbol:hasConstraint "A Component MAY have any number of hasConstraint properties, each of type IRI, that MUST reference a Constraint object.")
AnnotationAssertion(rdfs:label sbol:hasConstraint "hasConstraint")
SubObjectPropertyOf(sbol:hasConstraint sbol:directlyComprises)
ObjectPropertyDomain(sbol:hasConstraint sbol:Component)
ObjectPropertyRange(sbol:hasConstraint sbol:Constraint)
# Object Property: sbol:hasFeature (hasFeature)
AnnotationAssertion(rdfs:comment sbol:hasFeature "A Component MAY have any number of hasFeature properties, each of type IRI that MUST reference a Feature object")
AnnotationAssertion(rdfs:label sbol:hasFeature "hasFeature")
SubObjectPropertyOf(sbol:hasFeature sbol:directlyComprises)
ObjectPropertyDomain(sbol:hasFeature sbol:Component)
ObjectPropertyRange(sbol:hasFeature sbol:Feature)
# Object Property: sbol:hasInteraction (hasInteraction)
AnnotationAssertion(rdfs:comment sbol:hasInteraction "A Component MAY have any number of hasInteraction properties, each of type IRI, that MUST reference an Interaction object.")
AnnotationAssertion(rdfs:label sbol:hasInteraction "hasInteraction")
SubObjectPropertyOf(sbol:hasInteraction sbol:directlyComprises)
ObjectPropertyDomain(sbol:hasInteraction sbol:Component)
ObjectPropertyRange(sbol:hasInteraction sbol:Interaction)
# Object Property: sbol:hasInterface (hasInterface)
AnnotationAssertion(rdfs:comment sbol:hasInterface "A Component MAY have zero or one hasInterface property of type IRI that MUST reference an Interface object.")
AnnotationAssertion(rdfs:label sbol:hasInterface "hasInterface")
SubObjectPropertyOf(sbol:hasInterface sbol:directlyComprises)
FunctionalObjectProperty(sbol:hasInterface)
ObjectPropertyDomain(sbol:hasInterface sbol:Component)
ObjectPropertyRange(sbol:hasInterface sbol:Interface)
# Object Property: sbol:hasLocation (hasLocation)
AnnotationAssertion(rdfs:comment sbol:hasLocation "A SubComponent MAY have any number of hasLocation properties, each of type IRI, that MUST refer to Location objects that indicates the location of the Sequence from the instanceOf Component in a Sequence of the parent Component. A LocalSubComponent MAY have any number of hasLocation properties, each of type IRI, that MUST refer to Location objects. In SequenceFeature, the hasLocation is REQUIRED and contains one or more IRIs, which MUST refer to Location objects.")
AnnotationAssertion(rdfs:label sbol:hasLocation "hasLocation")
SubObjectPropertyOf(sbol:hasLocation sbol:directlyComprises)
ObjectPropertyDomain(sbol:hasLocation ObjectUnionOf(sbol:LocalSubComponent sbol:SequenceFeature sbol:SubComponent))
ObjectPropertyRange(sbol:hasLocation sbol:Location)
# Object Property: sbol:hasMeasure (hasMeasure)
AnnotationAssertion(rdfs:label sbol:hasMeasure "hasMeasure")
SubObjectPropertyOf(sbol:hasMeasure sbol:directlyComprises)
ObjectPropertyDomain(sbol:hasMeasure sbol:Identified)
ObjectPropertyRange(sbol:hasMeasure sbol:SBOLMeasure)
ObjectPropertyRange(sbol:hasMeasure om:Measure)
# Object Property: sbol:hasModel (hasModel)
AnnotationAssertion(rdfs:comment sbol:hasModel "A Component MAY have any number of hasModel properties, each of type IRI, that MUST reference a Model object.")
AnnotationAssertion(rdfs:label sbol:hasModel "hasModel")
ObjectPropertyDomain(sbol:hasModel sbol:Component)
ObjectPropertyRange(sbol:hasModel sbol:Model)
# Object Property: sbol:hasNamespace (hasNamespace)
AnnotationAssertion(rdfs:comment sbol:hasNamespace "A TopLevel object MUST have precisely one hasNamespace property, which contains a URL that defines the namespace portion of URLs for this object and any child objects.")
AnnotationAssertion(rdfs:label sbol:hasNamespace "hasNamespace")
FunctionalObjectProperty(sbol:hasNamespace)
ObjectPropertyDomain(sbol:hasNamespace sbol:TopLevel)
# Object Property: sbol:hasParticipation (hasParticipation)
AnnotationAssertion(rdfs:comment sbol:hasParticipation "An Interaction MAY have any number of hasParticipation properties, each of type IRI, that MUST reference a Participation object, each of which identifies the role that its referenced Feature plays in the Interaction.")
AnnotationAssertion(rdfs:label sbol:hasParticipation "hasParticipation")
SubObjectPropertyOf(sbol:hasParticipation sbol:directlyComprises)
ObjectPropertyDomain(sbol:hasParticipation sbol:Interaction)
ObjectPropertyRange(sbol:hasParticipation sbol:Participation)
# Object Property: sbol:hasSequence (hasSequence)
AnnotationAssertion(rdfs:comment sbol:hasSequence "This property can be used in a Component or Location. A Component MAY have any number of hasSequence properties, each of type IRI, that MUST reference a Sequence object. In a Location, the hasSequence property is REQUIRED and MUST contain the IRI of a Sequence object.")
AnnotationAssertion(rdfs:label sbol:hasSequence "hasSequence")
ObjectPropertyDomain(sbol:hasSequence ObjectUnionOf(sbol:Component sbol:Location))
ObjectPropertyRange(sbol:hasSequence sbol:Sequence)
# Object Property: sbol:hasVariableFeature (hasVariableFeature)
AnnotationAssertion(rdfs:comment sbol:hasVariableFeature "A CombinatorialDerivation object can have zero or more hasVariableFeature properties, each of type IRI, specifying a VariableFeature. The set of hasVariableFeature properties MUST NOT contain two or more VariableFeature objects that refer to the same template.")
AnnotationAssertion(rdfs:label sbol:hasVariableFeature "hasVariableFeature")
SubObjectPropertyOf(sbol:hasVariableFeature sbol:directlyComprises)
ObjectPropertyDomain(sbol:hasVariableFeature sbol:CombinatorialDerivation)
ObjectPropertyRange(sbol:hasVariableFeature sbol:VariableFeature)
# Object Property: sbol:higherOrderParticipant (higherOrderParticipant)
AnnotationAssertion(rdfs:comment sbol:higherOrderParticipant "The higherOrderParticipant property indicates an Interaction object that plays the designated role in its parent Interaction object. Precisely one value MUST be specified for precisely one of participant or higherOrderParticipant.")
AnnotationAssertion(rdfs:label sbol:higherOrderParticipant "higherOrderParticipant")
FunctionalObjectProperty(sbol:higherOrderParticipant)
ObjectPropertyDomain(sbol:higherOrderParticipant sbol:Participation)
ObjectPropertyRange(sbol:higherOrderParticipant sbol:Interaction)
# Object Property: sbol:inChildOf (inChildOf)
AnnotationAssertion(rdfs:label sbol:inChildOf "inChildOf")
FunctionalObjectProperty(sbol:inChildOf)
ObjectPropertyDomain(sbol:inChildOf sbol:ComponentReference)
ObjectPropertyRange(sbol:inChildOf sbol:SubComponent)
# Object Property: sbol:input (input)
AnnotationAssertion(rdfs:comment sbol:input "An Interface MAY have any number of input properties, each of type IRI, that MUST reference a Feature object in the same Component.")
AnnotationAssertion(rdfs:label sbol:input "input")
ObjectPropertyDomain(sbol:input sbol:Interface)
ObjectPropertyRange(sbol:input sbol:Feature)
# Object Property: sbol:instanceOf (instanceOf)
AnnotationAssertion(rdfs:comment sbol:instanceOf "The instanceOf property is a REQUIRED IRI that refers to the Component providing the definition for this SubComponent.")
AnnotationAssertion(rdfs:label sbol:instanceOf "instanceOf")
FunctionalObjectProperty(sbol:instanceOf)
ObjectPropertyDomain(sbol:instanceOf sbol:SubComponent)
ObjectPropertyRange(sbol:instanceOf sbol:Component)
# Object Property: sbol:language (language)
AnnotationAssertion(rdfs:comment sbol:language "The language property is REQUIRED and MUST contain a IRI that specifies the language in which the model is implemented. It is RECOMMENDED that this IRI refer to a term from the EMBRACE Data and Methods (EDAM) ontology.")
AnnotationAssertion(rdfs:label sbol:language "language")
FunctionalObjectProperty(sbol:language)
ObjectPropertyDomain(sbol:language sbol:Model)
# Object Property: sbol:member (member)
AnnotationAssertion(rdfs:comment sbol:member "A Collection object can have zero or more member properties, each of type IRI specifying a TopLevel object.")
AnnotationAssertion(rdfs:label sbol:member "member")
ObjectPropertyDomain(sbol:member sbol:Collection)
ObjectPropertyRange(sbol:member sbol:TopLevel)
# Object Property: sbol:nondirectional (nondirectional)
AnnotationAssertion(rdfs:comment sbol:nondirectional "An Interface MAY have any number of nondirectional properties, each of type IRI, that MUST reference a Feature object in the same Component.")
AnnotationAssertion(rdfs:label sbol:nondirectional "nondirectional")
ObjectPropertyDomain(sbol:nondirectional sbol:Interface)
ObjectPropertyRange(sbol:nondirectional sbol:Feature)
# Object Property: sbol:object (object)
AnnotationAssertion(rdfs:comment sbol:object "The object property is REQUIRED and MUST contain a IRI that refers to a Feature contained by the same parent Component that contains the Constraint. This Feature MUST NOT be the same Feature that the Constraint refers to via its subject property.")
AnnotationAssertion(rdfs:label sbol:object "object")
FunctionalObjectProperty(sbol:object)
ObjectPropertyDomain(sbol:object sbol:Constraint)
ObjectPropertyRange(sbol:object sbol:Feature)
# Object Property: sbol:orientation (orientation)
AnnotationAssertion(rdfs:comment sbol:orientation "The orientation property is OPTIONAL and has a data type of IRI.")
AnnotationAssertion(rdfs:label sbol:orientation "orientation")
FunctionalObjectProperty(sbol:orientation)
ObjectPropertyDomain(sbol:orientation ObjectUnionOf(sbol:Feature sbol:Location))
ObjectPropertyRange(sbol:orientation sbol:Orientation)
# Object Property: sbol:output (output)
AnnotationAssertion(rdfs:comment sbol:output "An Interface MAY have any number of output properties, each of type IRI, that MUST reference a Feature object in the same Component.")
AnnotationAssertion(rdfs:label sbol:output "output")
ObjectPropertyDomain(sbol:output sbol:Interface)
ObjectPropertyRange(sbol:output sbol:Feature)
# Object Property: sbol:participant (participant)
AnnotationAssertion(rdfs:comment sbol:participant "The participant property indicates a Feature object that plays the designated role in its parent Interaction object. Precisely one value MUST be specified for precisely one of participant or higherOrderParticipant.")
AnnotationAssertion(rdfs:label sbol:participant "participant")
FunctionalObjectProperty(sbol:participant)
ObjectPropertyDomain(sbol:participant sbol:Participation)
ObjectPropertyRange(sbol:participant sbol:Feature)
# Object Property: sbol:refersTo (refersTo)
AnnotationAssertion(rdfs:comment sbol:refersTo "The refersTo property is a REQUIRED IRI that refers to a Feature.")
AnnotationAssertion(rdfs:label sbol:refersTo "refersTo")
FunctionalObjectProperty(sbol:refersTo)
ObjectPropertyDomain(sbol:refersTo sbol:ComponentReference)
ObjectPropertyRange(sbol:refersTo sbol:Feature)
# Object Property: sbol:restriction (restriction)
AnnotationAssertion(rdfs:comment sbol:restriction "The restriction property is REQUIRED and has a data type of IRI. This property MUST indicate the type of restriction on the locations, orientations, or identities of the subject and object Feature objects in relation to each other.")
AnnotationAssertion(rdfs:label sbol:restriction "restriction")
FunctionalObjectProperty(sbol:restriction)
ObjectPropertyDomain(sbol:restriction sbol:Constraint)
# Object Property: sbol:role (role)
AnnotationAssertion(rdfs:comment sbol:role "This property can be used in a Component, Feature or Participation. A Component MAY have any number of role properties, each of type IRI, that MUST identify terms from ontologies that are consistent with the type property of the Component. Each Feature can have zero or more role property IRIs describing the purpose or potential function of this Feature in the context of its parent Component. A Participation is REQUIRED to have one or more role properties, each of type IRI, that describes the behavior of a Participation (and by extension its referenced Feature) in the context of its parent Interaction.")
AnnotationAssertion(rdfs:label sbol:role "role")
ObjectPropertyDomain(sbol:role ObjectUnionOf(sbol:Component sbol:Feature sbol:Participation))
# Object Property: sbol:roleIntegration (roleIntegration)
AnnotationAssertion(rdfs:comment sbol:roleIntegration "A roleIntegration specifies the relationship between a SubComponent instance's own set of role properties and the set of role properties on the included Component.")
AnnotationAssertion(rdfs:label sbol:roleIntegration "roleIntegration")
FunctionalObjectProperty(sbol:roleIntegration)
ObjectPropertyDomain(sbol:roleIntegration sbol:SubComponent)
# Object Property: sbol:source (source)
AnnotationAssertion(rdfs:comment sbol:source "The source property is REQUIRED and MUST contain a IRI reference to the source file.")
AnnotationAssertion(rdfs:label sbol:source "source")
FunctionalObjectProperty(sbol:source)
ObjectPropertyDomain(sbol:source ObjectUnionOf(sbol:Attachment sbol:Model))
# Object Property: sbol:sourceLocation (sourceLocation)
AnnotationAssertion(rdfs:comment sbol:sourceLocation "The sourceLocation property allows for only a portion of a Component's Sequence to be included, rather than its entirety.")
AnnotationAssertion(rdfs:label sbol:sourceLocation "sourceLocation")
SubObjectPropertyOf(sbol:sourceLocation sbol:directlyComprises)
ObjectPropertyDomain(sbol:sourceLocation sbol:SubComponent)
ObjectPropertyRange(sbol:sourceLocation sbol:Location)
# Object Property: sbol:strategy (strategy)
AnnotationAssertion(rdfs:comment sbol:strategy "The strategy property is OPTIONAL and has a data type of IRI.")
AnnotationAssertion(rdfs:label sbol:strategy "strategy")
FunctionalObjectProperty(sbol:strategy)
ObjectPropertyDomain(sbol:strategy sbol:CombinatorialDerivation)
ObjectPropertyRange(sbol:strategy ObjectUnionOf(sbol:enumerate sbol:sample))
# Object Property: sbol:subject (subject)
AnnotationAssertion(rdfs:comment sbol:subject "The subject property is REQUIRED and MUST contain a IRI that refers to a Feature contained by the same parent Component that contains the Constraint.")
AnnotationAssertion(rdfs:label sbol:subject "subject")
FunctionalObjectProperty(sbol:subject)
ObjectPropertyDomain(sbol:subject sbol:Constraint)
ObjectPropertyRange(sbol:subject sbol:Feature)
# Object Property: sbol:template (template)
AnnotationAssertion(rdfs:comment sbol:template "The template property is REQUIRED and MUST contain a IRI that refers to a Component. ")
AnnotationAssertion(rdfs:label sbol:template "template")
FunctionalObjectProperty(sbol:template)
ObjectPropertyDomain(sbol:template sbol:CombinatorialDerivation)
ObjectPropertyRange(sbol:template sbol:Component)
# Object Property: sbol:type (type)
AnnotationAssertion(rdfs:comment sbol:type "A Component MUST have one or more type properties, each of type IRI specifying the category of biochemical or physical entity (for example DNA, protein, or simple chemical) that a Component object abstracts for the purpose of engineering design")
AnnotationAssertion(rdfs:label sbol:type "type")
ObjectPropertyDomain(sbol:type ObjectUnionOf(sbol:Component sbol:ExternallyDefined sbol:Interaction sbol:LocalSubComponent sbol:SBOLActivity sbol:SBOLMeasure))
# Object Property: sbol:variable (variable)
AnnotationAssertion(rdfs:comment sbol:variable "The variable property is REQUIRED and MUST contain a IRI that refers to a template Feature in the template Component referred to by this VariableFeature's parent CombinatorialDerivation")
AnnotationAssertion(rdfs:label sbol:variable "variable")
FunctionalObjectProperty(sbol:variable)
ObjectPropertyDomain(sbol:variable sbol:VariableFeature)
ObjectPropertyRange(sbol:variable sbol:Feature)
# Object Property: sbol:variant (variant)
AnnotationAssertion(rdfs:comment sbol:variant "A VariableFeature object can have zero or more variant properties, each of type IRI, specifying a Component object. This property specifies individual Component objects to serve as options when deriving a new Feature for the variable Feature from the template.")
AnnotationAssertion(rdfs:label sbol:variant "variant")
ObjectPropertyDomain(sbol:variant sbol:VariableFeature)
ObjectPropertyRange(sbol:variant sbol:Component)
# Object Property: sbol:variantCollection (variantCollection)
AnnotationAssertion(rdfs:comment sbol:variantCollection "A VariableFeature object can have zero or more variantCollection properties, each of type IRI, specifying a Collection object. Such a Collection MUST NOT contain any objects besides Component objects or Collection objects that themselves contain only Component or Collection objects. This property enables the specification of existing groups of Component objects to serve as options.")
AnnotationAssertion(rdfs:label sbol:variantCollection "variantCollection")
ObjectPropertyDomain(sbol:variantCollection sbol:VariableFeature)
ObjectPropertyRange(sbol:variantCollection sbol:Collection)
# Object Property: sbol:variantDerivation (variantDerivation)
AnnotationAssertion(rdfs:comment sbol:variantDerivation "A VariableFeature object can have zero or more variantDerivation properties, each of type IRI, specifying a CombinatorialDerivation object. This property enables the specification of Component objects derived in accordance with another CombinatorialDerivation to serve as options when deriving a new Feature for the variable Feature from the template.")
AnnotationAssertion(rdfs:label sbol:variantDerivation "variantDerivation")
ObjectPropertyDomain(sbol:variantDerivation sbol:VariableFeature)
ObjectPropertyRange(sbol:variantDerivation sbol:CombinatorialDerivation)
# Object Property: sbol:variantMeasure (variantMeasure)
AnnotationAssertion(rdfs:comment sbol:variantMeasure "A VariableFeature object can have zero or more variantMeasure properties, each of type IRI, specifying a om:Measure object. This property specifies numerical values that are options to be applied to the variable Feature from the template when deriving a new Component.")
AnnotationAssertion(rdfs:label sbol:variantMeasure "variantMeasure")
ObjectPropertyDomain(sbol:variantMeasure sbol:VariableFeature)
ObjectPropertyRange(sbol:variantMeasure om:Measure)
# Object Property: om:hasBase (hasBase)
AnnotationAssertion(rdfs:comment om:hasBase "The om:hasBase property is REQUIRED and MUST contain a IRI that refers to another om:Unit.")
AnnotationAssertion(rdfs:label om:hasBase "hasBase")
FunctionalObjectProperty(om:hasBase)
ObjectPropertyDomain(om:hasBase om:UnitExponentiation)
ObjectPropertyRange(om:hasBase om:Unit)
# Object Property: om:hasDenominator (hasDenominator)
AnnotationAssertion(rdfs:comment om:hasDenominator "The om:hasDenominator property is REQUIRED and MUST contain a IRI that refers to another om:Unit.")
AnnotationAssertion(rdfs:label om:hasDenominator "hasDenominator")
FunctionalObjectProperty(om:hasDenominator)
ObjectPropertyDomain(om:hasDenominator om:UnitDivision)
ObjectPropertyRange(om:hasDenominator om:Unit)
# Object Property: om:hasNumerator (hasNumerator)
AnnotationAssertion(rdfs:comment om:hasNumerator "The om:hasNumerator property is REQUIRED and MUST contain a IRI that refers to another om:Unit.")
AnnotationAssertion(rdfs:label om:hasNumerator "hasNumerator")
FunctionalObjectProperty(om:hasNumerator)
ObjectPropertyDomain(om:hasNumerator om:UnitDivision)
ObjectPropertyRange(om:hasNumerator om:Unit)
# Object Property: om:hasPrefix (hasPrefix)
AnnotationAssertion(rdfs:comment om:hasPrefix "The om:hasPrefix property is REQUIRED and MUST contain a IRI that refers to a om:Prefix.")
AnnotationAssertion(rdfs:label om:hasPrefix "hasPrefix")
FunctionalObjectProperty(om:hasPrefix)
ObjectPropertyDomain(om:hasPrefix om:PrefixedUnit)
ObjectPropertyRange(om:hasPrefix om:Prefix)
# Object Property: om:hasTerm1 (hasTerm1)
AnnotationAssertion(rdfs:comment om:hasTerm1 "The om:hasTerm1 property is REQUIRED and MUST contain a IRI that refers to another om:Unit. This om:Unit is the first multiplication term.")
AnnotationAssertion(rdfs:label om:hasTerm1 "hasTerm1")
FunctionalObjectProperty(om:hasTerm1)
ObjectPropertyDomain(om:hasTerm1 om:UnitMultiplication)
ObjectPropertyRange(om:hasTerm1 om:Unit)
# Object Property: om:hasTerm2 (hasTerm2)
AnnotationAssertion(rdfs:comment om:hasTerm2 "The om:hasTerm2 property is REQUIRED and MUST contain a IRI that refers to another om:Unit. This om:Unit is the second multiplication term. It is okay if the om:Unit referred to by om:hasTerm1 is the same as that referred to by om:hasTerm2.")
AnnotationAssertion(rdfs:label om:hasTerm2 "hasTerm2")
FunctionalObjectProperty(om:hasTerm2)
ObjectPropertyDomain(om:hasTerm2 om:UnitMultiplication)
ObjectPropertyRange(om:hasTerm2 om:Unit)
# Object Property: om:hasUnit (hasUnit)
AnnotationAssertion(rdfs:comment om:hasUnit "This property can be used in a Measure, SingularUnit or PrefixedUnit. For Measure and PrefixedUnit, the om:hasUnit property is REQUIRED and MUST contain a IRI that refers to a om:Unit. For SingularUnit, the om:hasUnit is OPTIONAL and MAY contain a IRI.")
AnnotationAssertion(rdfs:label om:hasUnit "hasUnit")
FunctionalObjectProperty(om:hasUnit)
ObjectPropertyDomain(om:hasUnit ObjectUnionOf(om:Measure om:PrefixedUnit om:SingularUnit))
ObjectPropertyRange(om:hasUnit om:Unit)
# Object Property: prov:agent (agent)
AnnotationAssertion(rdfs:comment prov:agent "The prov:agent property is REQUIRED and MUST contain a IRI that refers to an prov:Agent object.")
AnnotationAssertion(rdfs:label prov:agent "agent")
FunctionalObjectProperty(prov:agent)
ObjectPropertyDomain(prov:agent prov:Association)
ObjectPropertyRange(prov:agent prov:Agent)
# Object Property: prov:entity (entity)
AnnotationAssertion(rdfs:comment prov:entity "The prov:entity property is REQUIRED and MUST contain a IRI which MAY refer to an Identified object.")
AnnotationAssertion(rdfs:label prov:entity "entity")
FunctionalObjectProperty(prov:entity)
ObjectPropertyDomain(prov:entity prov:Usage)
# Object Property: prov:hadPlan (hadPlan)
AnnotationAssertion(rdfs:comment prov:hadPlan "The prov:hadPlan property is OPTIONAL and contains a IRI that refers to a prov:Plan.")
AnnotationAssertion(rdfs:label prov:hadPlan "hadPlan")
FunctionalObjectProperty(prov:hadPlan)
ObjectPropertyDomain(prov:hadPlan prov:Association)
ObjectPropertyRange(prov:hadPlan prov:Plan)
# Object Property: prov:hadRole (hadRole)
AnnotationAssertion(rdfs:comment prov:hadRole "An prov:Usage MAY have one or more prov:hadRole properties, each of type IRI that refers to particular term(s) describing the usage of an prov:Entity referenced by the prov:entity property.")
AnnotationAssertion(rdfs:label prov:hadRole "hadRole")
ObjectPropertyDomain(prov:hadRole ObjectUnionOf(prov:Association prov:Usage))
# Object Property: prov:qualifiedAssociation (qualifiedAssociation)
AnnotationAssertion(rdfs:comment prov:qualifiedAssociation "An prov:Activity MAY have one or more prov:qualifiedAssociation properties, each of type IRI that refers to an prov:Association object.")
AnnotationAssertion(rdfs:label prov:qualifiedAssociation "qualifiedAssociation")
ObjectPropertyDomain(prov:qualifiedAssociation prov:Activity)
ObjectPropertyRange(prov:qualifiedAssociation prov:Association)
# Object Property: prov:qualifiedUsage (qualifiedUsage)
AnnotationAssertion(rdfs:comment prov:qualifiedUsage "An prov:Activity MAY have one or more prov:qualifiedUsage properties, each of type IRI that refers to an prov:Usage object.")
AnnotationAssertion(rdfs:label prov:qualifiedUsage "qualifiedUsage")
ObjectPropertyDomain(prov:qualifiedUsage prov:Activity)
ObjectPropertyRange(prov:qualifiedUsage prov:Usage)
# Object Property: prov:wasDerivedFrom (wasDerivedFrom)
AnnotationAssertion(rdfs:comment prov:wasDerivedFrom "An Identified object MAY have zero or more prov:wasDerivedFrom properties, each of type IRI. This property is defined by the PROV-O ontology and is located in the https://www.w3.org/ns/prov# namespace")
AnnotationAssertion(rdfs:label prov:wasDerivedFrom "wasDerivedFrom")
ObjectPropertyDomain(prov:wasDerivedFrom sbol:Identified)
ObjectPropertyRange(prov:wasDerivedFrom owl:Thing)
# Object Property: prov:wasGeneratedBy (wasGeneratedBy)
AnnotationAssertion(rdfs:comment prov:wasGeneratedBy "An Identified object MAY have zero or more prov:wasGeneratedBy properties, each of type IRI.")
AnnotationAssertion(rdfs:label prov:wasGeneratedBy "wasGeneratedBy")
ObjectPropertyDomain(prov:wasGeneratedBy sbol:Identified)
ObjectPropertyRange(prov:wasGeneratedBy sbol:SBOLActivity)
# Object Property: prov:wasInformedBy (wasInformedBy)
AnnotationAssertion(rdfs:comment prov:wasInformedBy "An prov:Activity MAY have one or more prov:wasInformedBy properties, each of type IRI that refers to another prov:Activity object.")
AnnotationAssertion(rdfs:label prov:wasInformedBy "wasInformedBy")
ObjectPropertyDomain(prov:wasInformedBy prov:Activity)
ObjectPropertyRange(prov:wasInformedBy prov:Activity)
############################
# Data Properties
############################
# Data Property: sbol:at (at)
AnnotationAssertion(rdfs:comment sbol:at "The at property is REQUIRED and MUST contain an Integer value greater than or equal to zero. The region specified by the Cut is between the position specified by this property and the position that immediately follows it. When the at property is equal to zero, the specified region is immediately before the first discrete position or character in the elements String of a Sequence.")
AnnotationAssertion(rdfs:label sbol:at "at")
FunctionalDataProperty(sbol:at)
DataPropertyDomain(sbol:at sbol:Cut)
DataPropertyRange(sbol:at DatatypeRestriction(xsd:integer xsd:minInclusive "0"^^xsd:integer))
# Data Property: sbol:description (description)
AnnotationAssertion(rdfs:comment sbol:description "The description property is OPTIONAL and has a data type of String. This property is intended to contain a more thorough text description of an Identified object.")
AnnotationAssertion(rdfs:label sbol:description "description")
FunctionalDataProperty(sbol:description)
DataPropertyDomain(sbol:description sbol:Identified)
DataPropertyRange(sbol:description xsd:string)
# Data Property: sbol:displayId (displayId)
AnnotationAssertion(rdfs:comment sbol:displayId "The displayId property is an OPTIONAL identifier with a data type of String. This property is intended to be an intermediate between a IRI and the name property that is machine-readable, but more human-readable than the full IRI of an object")
AnnotationAssertion(rdfs:label sbol:displayId "displayId")
FunctionalDataProperty(sbol:displayId)
DataPropertyDomain(sbol:displayId sbol:Identified)
DataPropertyRange(sbol:displayId xsd:string)
# Data Property: sbol:elements (elements)
AnnotationAssertion(rdfs:comment sbol:elements "The elements property is an OPTIONAL String of characters that represents the constituents of a biological or chemical molecule.")
AnnotationAssertion(rdfs:label sbol:elements "elements")
FunctionalDataProperty(sbol:elements)
DataPropertyDomain(sbol:elements sbol:Sequence)
DataPropertyRange(sbol:elements xsd:string)
# Data Property: sbol:end (end)
AnnotationAssertion(rdfs:comment sbol:end "The end property specifies the inclusive ending position of the Range. This property is REQUIRED and MUST contain an Integer value greater than zero. In addition, this Integer value MUST be greater than or equal to that of the start property.")
AnnotationAssertion(rdfs:label sbol:end "end")
FunctionalDataProperty(sbol:end)
DataPropertyDomain(sbol:end sbol:Range)
DataPropertyRange(sbol:end DatatypeRestriction(xsd:integer xsd:minInclusive "1"^^xsd:integer))
# Data Property: sbol:hash (hash)
AnnotationAssertion(rdfs:comment sbol:hash "The hash property is OPTIONAL and MAY contain a hash value for the file contents represented as a hexadecimal digest.")
AnnotationAssertion(rdfs:label sbol:hash "hash")
FunctionalDataProperty(sbol:hash)
DataPropertyDomain(sbol:hash sbol:Attachment)
DataPropertyRange(sbol:hash xsd:string)
# Data Property: sbol:hashAlgorithm (hashAlgorithm)
AnnotationAssertion(rdfs:comment sbol:hashAlgorithm "The hashAlgorithm property is OPTIONAL and MAY contain the name of the hash algorithm used to generate the value of the hash property. The value of this property SHOULD be a hash name string from the IANA Named Information Hash Algorithm Registry, of which sha3-256 is currently RECOMMENDED. If the hash property is set, then hashAlgorithm MUST be set as well.")
AnnotationAssertion(rdfs:label sbol:hashAlgorithm "hashAlgorithm")
FunctionalDataProperty(sbol:hashAlgorithm)
DataPropertyDomain(sbol:hashAlgorithm sbol:Attachment)
DataPropertyRange(sbol:hashAlgorithm xsd:string)
# Data Property: sbol:name (name)
AnnotationAssertion(rdfs:comment sbol:name "The name property is OPTIONAL and has a data type of String. This property is intended to be displayed to a human when visualizing an Identified object.")
AnnotationAssertion(rdfs:label sbol:name "name")
FunctionalDataProperty(sbol:name)
DataPropertyDomain(sbol:name sbol:Identified)
DataPropertyRange(sbol:name xsd:string)
# Data Property: sbol:order (order)
AnnotationAssertion(rdfs:comment sbol:order "The order property is OPTIONAL and has a data type of Integer. If there are multiple Location objects associated with a Feature, the order property is used to specify the order (in increasing value) in which the specified Locations are to be joined to form the sequence of the Feature.")
AnnotationAssertion(rdfs:label sbol:order "order")
FunctionalDataProperty(sbol:order)
DataPropertyDomain(sbol:order sbol:Location)
DataPropertyRange(sbol:order DatatypeRestriction(xsd:integer xsd:minInclusive "1"^^xsd:integer))
# Data Property: sbol:size (size)
AnnotationAssertion(rdfs:comment sbol:size "The size property is OPTIONAL and MAY contain a long indicating the file size in bytes.")
AnnotationAssertion(rdfs:label sbol:size "size")
FunctionalDataProperty(sbol:size)
DataPropertyDomain(sbol:size sbol:Attachment)
DataPropertyRange(sbol:size DatatypeRestriction(xsd:integer xsd:minInclusive "0"^^xsd:integer))
# Data Property: sbol:start (start)
AnnotationAssertion(rdfs:comment sbol:start "The start property specifies the inclusive starting position of the Range. This property is REQUIRED and MUST contain an Integer value greater than zero.")
AnnotationAssertion(rdfs:label sbol:start "start")
FunctionalDataProperty(sbol:start)
DataPropertyDomain(sbol:start sbol:Range)
DataPropertyRange(sbol:start DatatypeRestriction(xsd:integer xsd:minInclusive "1"^^xsd:integer))
# Data Property: om:alternativeLabel (alternativeLabel)
AnnotationAssertion(rdfs:comment om:alternativeLabel "This property can be used in a Unit or Prefix. The om:alternativeLabel property is OPTIONAL and MAY contain a set of Strings. This property can be used to specify alternative common names other than that specified using om:label property.")
AnnotationAssertion(rdfs:label om:alternativeLabel "alternativeLabel")
DataPropertyDomain(om:alternativeLabel ObjectUnionOf(om:Prefix om:Unit))
DataPropertyRange(om:alternativeLabel xsd:string)
# Data Property: om:alternativeSymbol (alternativeSymbol)
AnnotationAssertion(rdfs:comment om:alternativeSymbol "This property can be used in a Unit or Prefix. The om:alternativeSymbol property is OPTIONAL and MAY contain a set of Strings. This property can be used to specify alternative abbreviations other than that specified using the om:symbol property")
AnnotationAssertion(rdfs:label om:alternativeSymbol "alternativeSymbol")
DataPropertyDomain(om:alternativeSymbol ObjectUnionOf(om:Prefix om:Unit))
DataPropertyRange(om:alternativeSymbol xsd:string)
# Data Property: om:hasExponent (hasExponent)
AnnotationAssertion(rdfs:comment om:hasExponent "The om:hasExponent property is REQUIRED and MUST contain an xsd:integer.")
AnnotationAssertion(rdfs:label om:hasExponent "hasExponent")
FunctionalDataProperty(om:hasExponent)
DataPropertyDomain(om:hasExponent om:UnitExponentiation)
DataPropertyRange(om:hasExponent xsd:integer)
# Data Property: om:hasFactor (hasFactor)
AnnotationAssertion(rdfs:comment om:hasFactor "This property can be used in a SingularUnit or Prefix. For SingularUnit, the om:hasFactor property is OPTIONAL and MAY contain a xsd:float. If the om:hasFactor property of a om:SingularUnit is non-empty, then its om:hasUnit property SHOULD also be non-empty. For Prefix, The om:hasFactor property is REQUIRED and MUST contain an xsd:float.")
AnnotationAssertion(rdfs:label om:hasFactor "hasFactor")
DataPropertyDomain(om:hasFactor ObjectUnionOf(om:Prefix om:SingularUnit))
DataPropertyRange(om:hasFactor xsd:decimal)
# Data Property: om:hasNumericalValue (hasNumericalValue)
AnnotationAssertion(rdfs:comment om:hasNumericalValue "The om:hasNumericalValue property is REQUIRED and MUST contain a single xsd:float.")
AnnotationAssertion(rdfs:label om:hasNumericalValue "hasNumericalValue")
FunctionalDataProperty(om:hasNumericalValue)
DataPropertyDomain(om:hasNumericalValue om:Measure)
DataPropertyRange(om:hasNumericalValue xsd:decimal)
# Data Property: om:longComment (longComment)
AnnotationAssertion(rdfs:comment om:longComment "This property can be used in a Unit or Prefix. The om:longcomment property is OPTIONAL and MAY contain a String. This String is a long description of the unit of measure and SHOULD be longer than any String contained by the om:comment property.")
AnnotationAssertion(rdfs:label om:longComment "longComment")
FunctionalDataProperty(om:longComment)
DataPropertyDomain(om:longComment ObjectUnionOf(om:Prefix om:Unit))
DataPropertyRange(om:longComment xsd:string)
# Data Property: om:symbol (symbol)
AnnotationAssertion(rdfs:comment om:symbol "This property can be used in a Unit or Prefix. The om:symbol property is REQUIRED and MUST contain a String. This String is commonly used to abbreviate the name of the unit of measure or prefix.")
AnnotationAssertion(rdfs:label om:symbol "symbol")
FunctionalDataProperty(om:symbol)
DataPropertyDomain(om:symbol ObjectUnionOf(om:Prefix om:Unit))
DataPropertyRange(om:symbol xsd:string)
# Data Property: prov:endedAtTime (endedAtTime)
AnnotationAssertion(rdfs:comment prov:endedAtTime "The prov:endedAtTime property is OPTIONAL and contains a DateTime value, indicating when the activity ended.")
AnnotationAssertion(rdfs:label prov:endedAtTime "endedAtTime")
FunctionalDataProperty(prov:endedAtTime)
DataPropertyDomain(prov:endedAtTime prov:Activity)
DataPropertyRange(prov:endedAtTime xsd:dateTime)
# Data Property: prov:startedAtTime (startedAtTime)
AnnotationAssertion(rdfs:comment prov:startedAtTime "The prov:startedAtTime property is OPTIONAL and contains a DateTime value, indicating when the activity started. If this property is present, then the prov:endedAtTime property is REQUIRED.")
AnnotationAssertion(rdfs:label prov:startedAtTime "startedAtTime")
FunctionalDataProperty(prov:startedAtTime)
DataPropertyDomain(prov:startedAtTime prov:Activity)
DataPropertyRange(prov:startedAtTime xsd:dateTime)
############################
# Classes
############################
# Class: sbol:Attachment (Attachment)
AnnotationAssertion(otol:domainEntity sbol:Attachment "true")
AnnotationAssertion(rdfs:comment sbol:Attachment "The purpose of the Attachment class is to serve as a general container for data files, especially experimental data files. It provides a means for linking files and metadata to SBOL designs.")
AnnotationAssertion(rdfs:label sbol:Attachment "Attachment")
SubClassOf(sbol:Attachment sbol:TopLevel)
SubClassOf(sbol:Attachment ObjectSomeValuesFrom(sbol:source owl:Thing))
# Class: sbol:BiochemicalReactionInteraction (BiochemicalReactionInteraction)
AnnotationAssertion(otol:domainEntity sbol:BiochemicalReactionInteraction "true")
AnnotationAssertion(rdfs:comment sbol:BiochemicalReactionInteraction "Represents a biochemical reaction interaction, with the type of SBO:biochemical_reaction, that involves zero or more modifier, modified, product, and reactant participations.")
AnnotationAssertion(rdfs:label sbol:BiochemicalReactionInteraction "BiochemicalReactionInteraction")
EquivalentClasses(sbol:BiochemicalReactionInteraction ObjectIntersectionOf(sbol:Interaction ObjectSomeValuesFrom(sbol:type identifiers:SBO:0000176) ObjectMinCardinality(0 sbol:hasParticipation sbol:ModifiedParticipation) ObjectMinCardinality(0 sbol:hasParticipation sbol:ModifierParticipation) ObjectMinCardinality(0 sbol:hasParticipation sbol:ProductParticipation) ObjectMinCardinality(0 sbol:hasParticipation sbol:ReactantParticipation)))
SubClassOf(sbol:BiochemicalReactionInteraction sbol:Interaction)
# Class: sbol:CDSDNAComponent (CDS DNA Component)
AnnotationAssertion(otol:domainEntity sbol:CDSDNAComponent "true")
AnnotationAssertion(rdfs:comment sbol:CDSDNAComponent "Represents a coding sequence DNA component, with the role of SO:CDS.")
AnnotationAssertion(rdfs:label sbol:CDSDNAComponent "CDS DNA Component")
EquivalentClasses(sbol:CDSDNAComponent ObjectIntersectionOf(sbol:DNAComponent ObjectSomeValuesFrom(sbol:role identifiers:SO:0000316)))
SubClassOf(sbol:CDSDNAComponent sbol:DNAComponent)
# Class: sbol:Cardinality (Cardinality)
AnnotationAssertion(otol:constantList sbol:Cardinality "true")
AnnotationAssertion(rdfs:comment sbol:Cardinality "Provides a controlled vocabulary for describing restrictions between pairs of Feature objects, including identity, topology, sequence order, and orientation relationships.")
AnnotationAssertion(rdfs:label sbol:Cardinality "Cardinality")