-
Notifications
You must be signed in to change notification settings - Fork 0
/
sbol.rdf
2598 lines (1838 loc) · 117 KB
/
sbol.rdf
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
<?xml version="1.0"?>
<rdf:RDF xmlns="http://sbols.org/v2#"
xml:base="http://sbols.org/v2"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:tawny="http://www.purl.org/ontolink/tawny#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:sbol="http://sbols.org/v2#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
<owl:Ontology rdf:about="http://sbols.org/v2">
<owl:imports rdf:resource="http://www.purl.org/ontolink/tawny"/>
<tawny:name xml:lang="en">sbol</tawny:name>
<owl:versionInfo xml:lang="en">1.0</owl:versionInfo>
<rdfs:comment xml:lang="en">The OWL version of the SBOL data model</rdfs:comment>
</owl:Ontology>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Datatypes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://sbols.org/v2#greaterThanZero -->
<rdfs:Datatype rdf:about="http://sbols.org/v2#greaterThanZero">
<tawny:name xml:lang="en">greaterThanZero</tawny:name>
<rdfs:comment xml:lang="en">Greater than zero.</rdfs:comment>
<rdfs:label xml:lang="en">greaterThanZero</rdfs:label>
<owl:equivalentClass>
<rdfs:Datatype>
<owl:onDatatype rdf:resource="http://www.w3.org/2001/XMLSchema#integer"/>
<owl:withRestrictions rdf:parseType="Collection">
<rdf:Description>
<xsd:minExclusive rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">1</xsd:minExclusive>
</rdf:Description>
</owl:withRestrictions>
</rdfs:Datatype>
</owl:equivalentClass>
</rdfs:Datatype>
<!-- http://sbols.org/v2#zeroOrGreater -->
<rdfs:Datatype rdf:about="http://sbols.org/v2#zeroOrGreater">
<tawny:name xml:lang="en">zeroOrGreater</tawny:name>
<rdfs:comment xml:lang="en">Zero or greater.</rdfs:comment>
<rdfs:label xml:lang="en">zeroOrGreater</rdfs:label>
<owl:equivalentClass>
<rdfs:Datatype>
<owl:onDatatype rdf:resource="http://www.w3.org/2001/XMLSchema#integer"/>
<owl:withRestrictions rdf:parseType="Collection">
<rdf:Description>
<xsd:minExclusive rdf:datatype="http://www.w3.org/2001/XMLSchema#integer">0</xsd:minExclusive>
</rdf:Description>
</owl:withRestrictions>
</rdfs:Datatype>
</owl:equivalentClass>
</rdfs:Datatype>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://sbols.org/v2#access -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#access">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://sbols.org/v2#ComponentInstance"/>
<rdfs:range rdf:resource="http://sbols.org/v2#Access"/>
<tawny:name xml:lang="en">access</tawny:name>
<rdfs:comment xml:lang="en">The access property is a REQUIRED URI that indicates whether the ComponentInstance can be referred to remotely by a MapsTo on another ComponentInstance or Module contained by a different parent ComponentDefinition or ModuleDefinition (one that does not contain this ComponentInstance)</rdfs:comment>
<rdfs:label xml:lang="en">access</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#built -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#built">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://sbols.org/v2#Implementation"/>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://sbols.org/v2#ComponentDefinition"/>
<rdf:Description rdf:about="http://sbols.org/v2#ModuleDefinition"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<tawny:name xml:lang="en">built</tawny:name>
<rdfs:comment xml:lang="en">The built property is OPTIONAL and MAY contain a URI that MUST refer to a TopLevel object that is either a ComponentDefinition or ModuleDefinition. This ComponentDefinition or ModuleDefinition is intended to describe the actual physical structure and/or functional behavior of the Implementation.</rdfs:comment>
<rdfs:label xml:lang="en">built</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#component -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#component">
<owl:inverseOf rdf:resource="http://sbols.org/v2#isComponentOf"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://sbols.org/v2#ComponentDefinition"/>
<rdf:Description rdf:about="http://sbols.org/v2#SequenceAnnotation"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="http://sbols.org/v2#Component"/>
<tawny:name xml:lang="en">component</tawny:name>
<rdfs:comment xml:lang="en">The components property is OPTIONAL and MAY specify a set of Component objects that are contained by the ComponentDefinition. The set of relations between Component and ComponentDefinition objects is strictly acyclic.</rdfs:comment>
<rdfs:label xml:lang="en">component</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#definition -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#definition">
<owl:inverseOf rdf:resource="http://sbols.org/v2#isDefinitionOf"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://sbols.org/v2#ComponentInstance"/>
<rdf:Description rdf:about="http://sbols.org/v2#Module"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://sbols.org/v2#ComponentDefinition"/>
<rdf:Description rdf:about="http://sbols.org/v2#ModuleDefinition"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<tawny:name xml:lang="en">definition</tawny:name>
<rdfs:comment xml:lang="en">The definition property is a REQUIRED URI that refers to the ComponentDefinition of the ComponentInstance. As described in the previous section, this ComponentDefinition effectively provides information about the types and roles of the ComponentInstance.</rdfs:comment>
<rdfs:label xml:lang="en">definition</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#direction -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#direction">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://sbols.org/v2#FunctionalComponent"/>
<rdfs:range rdf:resource="http://sbols.org/v2#Direction"/>
<tawny:name xml:lang="en">direction</tawny:name>
<rdfs:comment xml:lang="en">Each FunctionalComponent MUST specify via the direction property whether it serves as an input, output, both, or neither for its parent ModuleDefinition object.</rdfs:comment>
<rdfs:label xml:lang="en">direction</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#encoding -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#encoding">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://sbols.org/v2#Sequence"/>
<tawny:name xml:lang="en">encoding</tawny:name>
<rdfs:comment xml:lang="en">The encoding property is REQUIRED and has a data type of URI. This property MUST indicate how the elements property of a Sequence MUST be formed and interpreted.</rdfs:comment>
<rdfs:label xml:lang="en">encoding</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#format -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#format">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://sbols.org/v2#Attachment"/>
<tawny:name xml:lang="en">format</tawny:name>
<rdfs:comment xml:lang="en">The format property is OPTIONAL and MAY contain a URI that specifies the format of the attached file. It is RECOMMENDED that this URI refer to a term from the EMBRACE Data and Methods (EDAM) ontology</rdfs:comment>
<rdfs:label xml:lang="en">format</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#framework -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#framework">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://sbols.org/v2#Model"/>
<tawny:name xml:lang="en">framework</tawny:name>
<rdfs:comment xml:lang="en">The framework property is REQUIRED and MUST contain a URI that specifies the framework in which the model is implemented. It is RECOMMENDED this URI refer to a term from the modeling framework branch of the SBO when possible.</rdfs:comment>
<rdfs:label xml:lang="en">framework</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#functionalComponent -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#functionalComponent">
<rdfs:domain rdf:resource="http://sbols.org/v2#ModuleDefinition"/>
<rdfs:range rdf:resource="http://sbols.org/v2#FunctionalComponent"/>
<tawny:name xml:lang="en">functionalComponent</tawny:name>
<rdfs:comment xml:lang="en">The property is OPTIONAL and MAY be used specify a set of FunctionalComponent objects contained by the ModuleDefinition.</rdfs:comment>
<rdfs:label xml:lang="en">functionalComponent</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#interaction -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#interaction">
<owl:inverseOf rdf:resource="http://sbols.org/v2#isInteractionOf"/>
<rdfs:domain rdf:resource="http://sbols.org/v2#ModuleDefinition"/>
<rdfs:range rdf:resource="http://sbols.org/v2#Interaction"/>
<tawny:name xml:lang="en">interaction</tawny:name>
<rdfs:comment xml:lang="en">The interaction property is OPTIONAL and MAY be used specify a set of Interaction objects within the ModuleDefinition.</rdfs:comment>
<rdfs:label xml:lang="en">interaction</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#isComponentOf -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#isComponentOf">
<rdfs:domain rdf:resource="http://sbols.org/v2#Component"/>
<rdfs:range>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://sbols.org/v2#ComponentDefinition"/>
<rdf:Description rdf:about="http://sbols.org/v2#SequenceAnnotation"/>
</owl:unionOf>
</owl:Class>
</rdfs:range>
<tawny:name xml:lang="en">isComponentOf</tawny:name>
<rdfs:comment xml:lang="en">Inverse of the component property.</rdfs:comment>
<rdfs:label xml:lang="en">isComponentOf</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#isDefinitionOf -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#isDefinitionOf">
<tawny:name xml:lang="en">isDefinitionOf</tawny:name>
<rdfs:comment xml:lang="en">Inverse of the definition property.</rdfs:comment>
<rdfs:label xml:lang="en">isDefinitionOf</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#isInteractionOf -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#isInteractionOf">
<tawny:name xml:lang="en">isInteractionOf</tawny:name>
<rdfs:comment xml:lang="en">Inverse of the interaction property.</rdfs:comment>
<rdfs:label xml:lang="en">isInteractionOf</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#isMemberOf -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#isMemberOf">
<owl:inverseOf rdf:resource="http://sbols.org/v2#member"/>
<tawny:name xml:lang="en">isMemberOf</tawny:name>
<rdfs:comment xml:lang="en">Inverse of the member property.</rdfs:comment>
<rdfs:label xml:lang="en">isMemberOf</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#isModuleOf -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#isModuleOf">
<owl:inverseOf rdf:resource="http://sbols.org/v2#module"/>
<tawny:name xml:lang="en">isModuleOf</tawny:name>
<rdfs:comment xml:lang="en">Inverse of the module property.</rdfs:comment>
<rdfs:label xml:lang="en">isModuleOf</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#isObjectOf -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#isObjectOf">
<owl:inverseOf rdf:resource="http://sbols.org/v2#object"/>
<rdfs:domain rdf:resource="http://sbols.org/v2#Component"/>
<rdfs:range rdf:resource="http://sbols.org/v2#SequenceConstraint"/>
<tawny:name xml:lang="en">isObjectOf</tawny:name>
<rdfs:comment xml:lang="en">Inverse of the object property</rdfs:comment>
<rdfs:label xml:lang="en">isObjectOf</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#isSequenceOf -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#isSequenceOf">
<owl:inverseOf rdf:resource="http://sbols.org/v2#sequence"/>
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://sbols.org/v2#Sequence"/>
<rdfs:range rdf:resource="http://sbols.org/v2#ComponentDefinition"/>
<tawny:name xml:lang="en">isSequenceOf</tawny:name>
<rdfs:comment xml:lang="en">Inverse of the sequence property.</rdfs:comment>
<rdfs:label xml:lang="en">isSequenceOf</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#isSubjectOf -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#isSubjectOf">
<owl:inverseOf rdf:resource="http://sbols.org/v2#subject"/>
<rdfs:domain rdf:resource="http://sbols.org/v2#Component"/>
<rdfs:range rdf:resource="http://sbols.org/v2#SequenceConstraint"/>
<tawny:name xml:lang="en">isSubjectOf</tawny:name>
<rdfs:comment xml:lang="en">Inverse of the subject property.</rdfs:comment>
<rdfs:label xml:lang="en">isSubjectOf</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#language -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#language">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://sbols.org/v2#Model"/>
<tawny:name xml:lang="en">language</tawny:name>
<rdfs:comment xml:lang="en">The language property is REQUIRED and MUST contain a URI that specifies the language in which the model is implemented. It is RECOMMENDED that this URI refer to a term from the EMBRACE Data and Methods (EDAM) ontology.</rdfs:comment>
<rdfs:label xml:lang="en">language</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#local -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#local">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://sbols.org/v2#MapsTo"/>
<rdfs:range rdf:resource="http://sbols.org/v2#ComponentInstance"/>
<tawny:name xml:lang="en">local</tawny:name>
<rdfs:comment xml:lang="en">This REQUIRED property has a data type of URI and is used to refer to the ComponentInstance contained by the “higher level” ComponentDefinition or ModuleDefinition. This local ComponentInstance MUST be contained by the ComponentDefinition or ModuleDefinition that contains the ComponentInstance or Module that owns the MapsTo.</rdfs:comment>
<rdfs:label xml:lang="en">local</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#location -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#location">
<rdfs:domain rdf:resource="http://sbols.org/v2#SequenceAnnotation"/>
<rdfs:range rdf:resource="http://sbols.org/v2#Location"/>
<tawny:name xml:lang="en">location</tawny:name>
<rdfs:comment xml:lang="en">The location property is REQUIRED to specify one or more Location objects that indicate which elements of a Sequence are described by the SequenceAnnotation.</rdfs:comment>
<rdfs:label xml:lang="en">location</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#mapsTo -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#mapsTo">
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://sbols.org/v2#ComponentInstance"/>
<rdf:Description rdf:about="http://sbols.org/v2#Module"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<rdfs:range rdf:resource="http://sbols.org/v2#MapsTo"/>
<tawny:name xml:lang="en">mapsTo</tawny:name>
<rdfs:comment xml:lang="en">The mapsTo property is OPTIONAL and MAY contain a MapsTo object that refers to and links together a ComponentInstance object (both Component objects and FunctionalComponent objects) within a larger design.</rdfs:comment>
<rdfs:label xml:lang="en">mapsTo</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#member -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#member">
<rdfs:domain rdf:resource="http://sbols.org/v2#Collection"/>
<rdfs:range rdf:resource="http://sbols.org/v2#TopLevel"/>
<tawny:name xml:lang="en">member</tawny:name>
<rdfs:comment xml:lang="en">Contains a reference to a top level entity.</rdfs:comment>
<rdfs:label xml:lang="en">member</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#model -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#model">
<rdfs:domain rdf:resource="http://sbols.org/v2#ModuleDefinition"/>
<rdfs:range rdf:resource="http://sbols.org/v2#Model"/>
<tawny:name xml:lang="en">model</tawny:name>
<rdfs:comment xml:lang="en">The model property is OPTIONAL and MAY be used to specify a set of URI references to Model objects.</rdfs:comment>
<rdfs:label xml:lang="en">model</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#module -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#module">
<rdfs:domain rdf:resource="http://sbols.org/v2#ModuleDefinition"/>
<rdfs:range rdf:resource="http://sbols.org/v2#Module"/>
<tawny:name xml:lang="en">module</tawny:name>
<rdfs:comment xml:lang="en">The property is OPTIONAL and MAY be used specify a set of Module objects contained by the ModuleDefinition. Note that the set of relations between Module and ModuleDefinition objects is strictly acyclic.</rdfs:comment>
<rdfs:label xml:lang="en">module</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#object -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#object">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://sbols.org/v2#SequenceConstraint"/>
<rdfs:range rdf:resource="http://sbols.org/v2#Component"/>
<owl:propertyDisjointWith rdf:resource="http://sbols.org/v2#subject"/>
<tawny:name xml:lang="en">object</tawny:name>
<rdfs:comment xml:lang="en">The object property is REQUIRED and MUST contain a URI that refers to a Component contained by the same parent ComponentDefinition that contains the SequenceConstraint. This Component MUST NOT be the same Component that the SequenceConstraint refers to via its subject property.</rdfs:comment>
<rdfs:label xml:lang="en">object</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#operator -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#operator">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://sbols.org/v2#VariableComponent"/>
<rdfs:range rdf:resource="http://sbols.org/v2#VariableOperator"/>
<tawny:name xml:lang="en">operator</tawny:name>
<rdfs:comment xml:lang="en">The operator property is REQUIRED and has a data type of URI. This property specifies how many Component objects SHOULD be derived from the template Component during the derivation of a new ComponentDefinition.</rdfs:comment>
<rdfs:label xml:lang="en">operator</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#orientation -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#orientation">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://sbols.org/v2#Location"/>
<rdfs:range rdf:resource="http://sbols.org/v2#Orientation"/>
<tawny:name xml:lang="en">orientation</tawny:name>
<rdfs:comment xml:lang="en">Indicates the type of a component's orientation. All subclasses of Location share this property, which can be used to indicate how the region specified by the SequenceAnnotation and any associated double-stranded Component is oriented on the elements of a Sequence from their parent ComponentDefinition</rdfs:comment>
<rdfs:label xml:lang="en">orientation</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#participant -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#participant">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://sbols.org/v2#Participation"/>
<rdfs:range rdf:resource="http://sbols.org/v2#FunctionalComponent"/>
<tawny:name xml:lang="en">participant</tawny:name>
<rdfs:comment xml:lang="en">The participant property MUST specify precisely one FunctionalComponent object that plays the designated role in its parent Interaction object.</rdfs:comment>
<rdfs:label xml:lang="en">participant</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#participation -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#participation">
<rdfs:domain rdf:resource="http://sbols.org/v2#Interaction"/>
<rdfs:range rdf:resource="http://sbols.org/v2#Participation"/>
<tawny:name xml:lang="en">participation</tawny:name>
<rdfs:comment xml:lang="en">The participation property is an OPTIONAL and MAY contain a Participation object, which identifies the roles that its referenced FunctionalComponent plays in the Interaction.</rdfs:comment>
<rdfs:label xml:lang="en">participation</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#persistentIdentity -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#persistentIdentity">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://sbols.org/v2#Identified"/>
<tawny:name xml:lang="en">persistentIdentity</tawny:name>
<rdfs:comment xml:lang="en">It is used to refer to a set of SBOL objects that are different versions of each other.</rdfs:comment>
<rdfs:label xml:lang="en">persistentIdentity</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#refinement -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#refinement">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://sbols.org/v2#MapsTo"/>
<rdfs:range rdf:resource="http://sbols.org/v2#Refinement"/>
<tawny:name xml:lang="en">refinement</tawny:name>
<rdfs:comment xml:lang="en">The refinement property is REQUIRED and has a data type of URI. Each MapsTo object MUST specify the rela- 27 tionship between its local and remote ComponentInstance objects.</rdfs:comment>
<rdfs:label xml:lang="en">refinement</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#remote -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#remote">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://sbols.org/v2#MapsTo"/>
<rdfs:range rdf:resource="http://sbols.org/v2#ComponentInstance"/>
<tawny:name xml:lang="en">remote</tawny:name>
<rdfs:comment xml:lang="en">This REQUIRED property has a data type of URI and is used to refer to the ComponentInstance contained by the “lower level” ComponentDefinition or ModuleDefinition. This remote ComponentInstance MUST be contained by the ComponentDefinition or ModuleDefinition that is the definition of the ComponentInstance or Module that owns the MapsTo. Lastly, the access property of the remote ComponentInstance MUST be set to “public.</rdfs:comment>
<rdfs:label xml:lang="en">remote</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#restriction -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#restriction">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://sbols.org/v2#SequenceConstraint"/>
<rdfs:range rdf:resource="http://sbols.org/v2#Restriction"/>
<tawny:name xml:lang="en">restriction</tawny:name>
<rdfs:comment xml:lang="en">The restriction property is REQUIRED and has a data type of URI. This property MUST indicate the type of structural restriction on the positions, orientations, or structural identities of the subject and object Component objects in relation to each other.</rdfs:comment>
<rdfs:label xml:lang="en">restriction</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#role -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#role">
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://sbols.org/v2#Component"/>
<rdf:Description rdf:about="http://sbols.org/v2#ComponentDefinition"/>
<rdf:Description rdf:about="http://sbols.org/v2#ModuleDefinition"/>
<rdf:Description rdf:about="http://sbols.org/v2#Participation"/>
<rdf:Description rdf:about="http://sbols.org/v2#SequenceAnnotation"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<tawny:name xml:lang="en">role</tawny:name>
<rdfs:comment xml:lang="en">Clarifies the potential function of an entity in a biochemical or physical context. When it is used for ComponentDefinitions, it MUST identify terms from ontologies that are consistent with the types property of the ComponentDefinition. For example, the roles property of a DNA or RNA ComponentDefinition could contain URIs identifying terms from the Sequence Ontology (SO).</rdfs:comment>
<rdfs:label xml:lang="en">role</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#roleIntegration -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#roleIntegration">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://sbols.org/v2#Component"/>
<rdfs:range rdf:resource="http://sbols.org/v2#RoleIntegration"/>
<tawny:name xml:lang="en">roleIntegration</tawny:name>
<rdfs:comment xml:lang="en">A roleIntegration specifies the relationship between a Component instance’s own set of roles and the set of roles on the included sub-ComponentDefinition.</rdfs:comment>
<rdfs:label xml:lang="en">roleIntegration</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#sequence -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#sequence">
<rdfs:domain rdf:resource="http://sbols.org/v2#ComponentDefinition"/>
<rdfs:range rdf:resource="http://sbols.org/v2#Sequence"/>
<tawny:name xml:lang="en">sequence</tawny:name>
<rdfs:comment xml:lang="en">The sequences property is OPTIONAL and MAY include a set of URIs that refer to Sequence objects. These objects define the primary structure of the ComponentDefinition.</rdfs:comment>
<rdfs:label xml:lang="en">sequence</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#sequenceAnnotation -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#sequenceAnnotation">
<rdfs:domain rdf:resource="http://sbols.org/v2#ComponentDefinition"/>
<rdfs:range rdf:resource="http://sbols.org/v2#SequenceAnnotation"/>
<tawny:name xml:lang="en">sequenceAnnotation</tawny:name>
<rdfs:comment xml:lang="en">The sequenceAnnotations property is OPTIONAL and MAY contain a set of SequenceAnnotation objects. Each SequenceAnnotation specifies and describes a potentially discontiguous region on the Sequence objects referred to by the ComponentDefinition.</rdfs:comment>
<rdfs:label xml:lang="en">sequenceAnnotation</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#sequenceConstraint -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#sequenceConstraint">
<rdfs:domain rdf:resource="http://sbols.org/v2#ComponentDefinition"/>
<rdfs:range rdf:resource="http://sbols.org/v2#SequenceConstraint"/>
<tawny:name xml:lang="en">sequenceConstraint</tawny:name>
<rdfs:comment xml:lang="en">The sequenceConstraints property is OPTIONAL and MAY contain a set of SequenceConstraint objects. These objects describe any restrictions on the relative, sequence-based positions and/or orientations of the Component objects contained by the ComponentDefinition. For example, the ComponentDefinition of a gene might specify that the position of its promoter Component precedes that of its CDS Component. This is particularly useful when a ComponentDefinition lacks a Sequence and therefore cannot specify the precise, sequence-based positions of its Component objects using SequenceAnnotation objects.</rdfs:comment>
<rdfs:label xml:lang="en">sequenceConstraint</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#source -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#source">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://sbols.org/v2#Attachment"/>
<rdf:Description rdf:about="http://sbols.org/v2#Model"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<tawny:name xml:lang="en">source</tawny:name>
<rdfs:comment xml:lang="en">The source property is REQUIRED and MUST contain a URI reference to the source file for a model.</rdfs:comment>
<rdfs:label xml:lang="en">source</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#strategy -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#strategy">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://sbols.org/v2#CombinatorialDerivation"/>
<rdfs:range rdf:resource="http://sbols.org/v2#CombinatorialDerivationStrategy"/>
<tawny:name xml:lang="en">strategy</tawny:name>
<rdfs:comment xml:lang="en">Indicates combinatorial derivation strategy.</rdfs:comment>
<rdfs:label xml:lang="en">strategy</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#subject -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#subject">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://sbols.org/v2#SequenceConstraint"/>
<rdfs:range rdf:resource="http://sbols.org/v2#Component"/>
<tawny:name xml:lang="en">subject</tawny:name>
<rdfs:comment xml:lang="en">The subject property is REQUIRED and MUST contain a URI that refers to a Component contained by the same parent ComponentDefinition that contains the SequenceConstraint.</rdfs:comment>
<rdfs:label xml:lang="en">subject</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#template -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#template">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://sbols.org/v2#CombinatorialDerivation"/>
<rdfs:range rdf:resource="http://sbols.org/v2#ComponentDefinition"/>
<tawny:name xml:lang="en">template</tawny:name>
<rdfs:comment xml:lang="en">The template property is REQUIRED and MUST contain a URI that refers to a ComponentDefinition. This ComponentDefinition is expected to serve as a template for the derivation of new ComponentDefinition objects.</rdfs:comment>
<rdfs:label xml:lang="en">template</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#type -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#type">
<rdfs:domain>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://sbols.org/v2#ComponentDefinition"/>
<rdf:Description rdf:about="http://sbols.org/v2#Interaction"/>
</owl:unionOf>
</owl:Class>
</rdfs:domain>
<tawny:name xml:lang="en">type</tawny:name>
<rdfs:comment xml:lang="en">Specifies the category of biochemical or physical entity. For example DNA, protein, or small molecule that a ComponentDefinition object abstracts for the purpose of engineering design. For DNA or RNA entities, additional types fields are used to describe nucleic acid topology (circular / linear) and strandedness (double- or single-stranded).</rdfs:comment>
<rdfs:label xml:lang="en">type</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#variable -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#variable">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://sbols.org/v2#VariableComponent"/>
<rdfs:range rdf:resource="http://sbols.org/v2#Component"/>
<tawny:name xml:lang="en">variable</tawny:name>
<rdfs:comment xml:lang="en">The variable property is REQUIRED and MUST contain a URI that refers to a template Component in the template ComponentDefinition.</rdfs:comment>
<rdfs:label xml:lang="en">variable</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#variableComponent -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#variableComponent">
<rdfs:domain rdf:resource="http://sbols.org/v2#CombinatorialDerivation"/>
<rdfs:range rdf:resource="http://sbols.org/v2#VariableComponent"/>
<tawny:name xml:lang="en">variableComponent</tawny:name>
<rdfs:comment xml:lang="en">The variableComponent property is OPTIONAL and MAY contain a set of VariableComponent objects.</rdfs:comment>
<rdfs:label xml:lang="en">variableComponent</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#variant -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#variant">
<rdfs:domain rdf:resource="http://sbols.org/v2#VariableComponent"/>
<rdfs:range rdf:resource="http://sbols.org/v2#ComponentDefinition"/>
<tawny:name xml:lang="en">variant</tawny:name>
<rdfs:comment xml:lang="en">The variants property is OPTIONAL and MAY contain zero or more URIs that each refer to a ComponentDefinition. This property specifies individual ComponentDefinition objects to serve as options when deriving a new Component from the template Component.</rdfs:comment>
<rdfs:label xml:lang="en">variant</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#variantCollection -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#variantCollection">
<rdfs:domain rdf:resource="http://sbols.org/v2#VariableComponent"/>
<rdfs:range rdf:resource="http://sbols.org/v2#Collection"/>
<tawny:name xml:lang="en">variantCollection</tawny:name>
<rdfs:comment xml:lang="en">This property is OPTIONAL and MAY contain zero or more URIs that each refer to a Collection. The members property of each Collection referred to in this way MUST NOT be empty. This property enables the convenient specification of existing groups of ComponentDefinition objects to serve as options when deriving a new Component from the template Component.</rdfs:comment>
<rdfs:label xml:lang="en">variantCollection</rdfs:label>
</owl:ObjectProperty>
<!-- http://sbols.org/v2#variantDerivation -->
<owl:ObjectProperty rdf:about="http://sbols.org/v2#variantDerivation">
<rdfs:domain rdf:resource="http://sbols.org/v2#VariableComponent"/>
<rdfs:range rdf:resource="http://sbols.org/v2#CombinatorialDerivation"/>
<tawny:name xml:lang="en">variantDerivation</tawny:name>
<rdfs:comment xml:lang="en">The variantDerivations property is OPTIONAL and MAY contain zero or more URIs that each refer to a CombinatorialDerivation. This property enables the convenient specification of ComponentDefinition objects derived in accordance with another CombinatorialDerivation to serve as options when deriving a new Component from the template Component. </rdfs:comment>
<rdfs:label xml:lang="en">variantDerivation</rdfs:label>
</owl:ObjectProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Data properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://sbols.org/v2#at -->
<owl:DatatypeProperty rdf:about="http://sbols.org/v2#at">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://sbols.org/v2#Cut"/>
<tawny:name xml:lang="en">at</tawny:name>
<rdfs:comment xml:lang="en">specifies a discrete position that that corresponds to the index of a character in the elements String of a Sequence.</rdfs:comment>
<rdfs:label xml:lang="en">at</rdfs:label>
</owl:DatatypeProperty>
<!-- http://sbols.org/v2#displayId -->
<owl:DatatypeProperty rdf:about="http://sbols.org/v2#displayId">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://sbols.org/v2#Identified"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<tawny:name xml:lang="en">displayId</tawny:name>
<rdfs:comment xml:lang="en">The displayId property is an OPTIONAL identifier with a data type of String. This property is intended to be an intermediate between name and identity that is machine-readable, but more human-readable than the full URI of an identity.</rdfs:comment>
<rdfs:label xml:lang="en">displayId</rdfs:label>
</owl:DatatypeProperty>
<!-- http://sbols.org/v2#elements -->
<owl:DatatypeProperty rdf:about="http://sbols.org/v2#elements">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://sbols.org/v2#Sequence"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<tawny:name xml:lang="en">elements</tawny:name>
<rdfs:comment xml:lang="en">The elements property is a REQUIRED String of characters that represents the constituents of a biological or chemical molecule. For example, these characters could represent the nucleotide bases of a molecule of DNA, the amino acid residues of a protein, or the atoms and chemical bonds of a small molecule.</rdfs:comment>
<rdfs:label xml:lang="en">elements</rdfs:label>
</owl:DatatypeProperty>
<!-- http://sbols.org/v2#end -->
<owl:DatatypeProperty rdf:about="http://sbols.org/v2#end">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://sbols.org/v2#Range"/>
<tawny:name xml:lang="en">end</tawny:name>
<rdfs:comment xml:lang="en">Specifies the inclusive ending position of the Range.</rdfs:comment>
<rdfs:label xml:lang="en">end</rdfs:label>
</owl:DatatypeProperty>
<!-- http://sbols.org/v2#hash -->
<owl:DatatypeProperty rdf:about="http://sbols.org/v2#hash">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://sbols.org/v2#Attachment"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<tawny:name xml:lang="en">hash</tawny:name>
<rdfs:comment xml:lang="en">The hash property is OPTIONAL and MAY contain a SHA-1 hash of the file contents represented as a hexadecimal digest.</rdfs:comment>
<rdfs:label xml:lang="en">hash</rdfs:label>
</owl:DatatypeProperty>
<!-- http://sbols.org/v2#size -->
<owl:DatatypeProperty rdf:about="http://sbols.org/v2#size">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://sbols.org/v2#Attachment"/>
<tawny:name xml:lang="en">size</tawny:name>
<rdfs:comment xml:lang="en">The size property is OPTIONAL and MAY contain a long indicating the file size in bytes.</rdfs:comment>
<rdfs:label xml:lang="en">size</rdfs:label>
</owl:DatatypeProperty>
<!-- http://sbols.org/v2#start -->
<owl:DatatypeProperty rdf:about="http://sbols.org/v2#start">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://sbols.org/v2#Range"/>
<tawny:name xml:lang="en">start</tawny:name>
<rdfs:comment xml:lang="en">Specifies the inclusive starting position of the Range.</rdfs:comment>
<rdfs:label xml:lang="en">start</rdfs:label>
</owl:DatatypeProperty>
<!-- http://sbols.org/v2#version -->
<owl:DatatypeProperty rdf:about="http://sbols.org/v2#version">
<rdf:type rdf:resource="http://www.w3.org/2002/07/owl#FunctionalProperty"/>
<rdfs:domain rdf:resource="http://sbols.org/v2#Identified"/>
<rdfs:range rdf:resource="http://www.w3.org/2001/XMLSchema#string"/>
<tawny:name xml:lang="en">version</tawny:name>
<rdfs:comment xml:lang="en">The version property is OPTIONAL and has a data type of String. This property can be used to compare two SBOL objects with the same persistentIdentity.</rdfs:comment>
<rdfs:label xml:lang="en">version</rdfs:label>
</owl:DatatypeProperty>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://identifiers.org/chebi/CHEBI:35224 -->
<owl:Class rdf:about="http://identifiers.org/chebi/CHEBI:35224"/>
<!-- http://identifiers.org/so/SO:0000057 -->
<owl:Class rdf:about="http://identifiers.org/so/SO:0000057"/>
<!-- http://identifiers.org/so/SO:0000139 -->
<owl:Class rdf:about="http://identifiers.org/so/SO:0000139"/>
<!-- http://identifiers.org/so/SO:0000141 -->
<owl:Class rdf:about="http://identifiers.org/so/SO:0000141"/>
<!-- http://identifiers.org/so/SO:0000167 -->
<owl:Class rdf:about="http://identifiers.org/so/SO:0000167"/>
<!-- http://identifiers.org/so/SO:0000234 -->
<owl:Class rdf:about="http://identifiers.org/so/SO:0000234"/>
<!-- http://identifiers.org/so/SO:0000280 -->
<owl:Class rdf:about="http://identifiers.org/so/SO:0000280"/>
<!-- http://identifiers.org/so/SO:0000316 -->
<owl:Class rdf:about="http://identifiers.org/so/SO:0000316"/>
<!-- http://identifiers.org/so/SO:0000704 -->
<owl:Class rdf:about="http://identifiers.org/so/SO:0000704"/>
<!-- http://sbols.org/v2#Access -->
<owl:Class rdf:about="http://sbols.org/v2#Access">
<owl:equivalentClass>
<owl:Class>
<owl:unionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://sbols.org/v2#private"/>
<rdf:Description rdf:about="http://sbols.org/v2#public"/>
</owl:unionOf>
</owl:Class>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://sbols.org/v2#SBOLVocabulary"/>
<tawny:name xml:lang="en">Access</tawny:name>
<rdfs:comment xml:lang="en">Not represented in SBOL directly. It is used in the OWL representation to enforce choosing an access type using one of its subclasses.</rdfs:comment>
<rdfs:label xml:lang="en">Access</rdfs:label>
</owl:Class>
<!-- http://sbols.org/v2#Attachment -->
<owl:Class rdf:about="http://sbols.org/v2#Attachment">
<rdfs:subClassOf rdf:resource="http://sbols.org/v2#TopLevel"/>
<tawny:name xml:lang="en">Attachment</tawny:name>
<rdfs:comment xml:lang="en">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.</rdfs:comment>
<rdfs:label xml:lang="en">Attachment</rdfs:label>
</owl:Class>
<!-- http://sbols.org/v2#CDS -->
<owl:Class rdf:about="http://sbols.org/v2#CDS">
<owl:equivalentClass>
<owl:Restriction>
<owl:onProperty rdf:resource="http://sbols.org/v2#role"/>
<owl:someValuesFrom rdf:resource="http://identifiers.org/so/SO:0000316"/>
</owl:Restriction>
</owl:equivalentClass>
<rdfs:subClassOf rdf:resource="http://sbols.org/v2#DNA"/>
<tawny:name xml:lang="en">CDS</tawny:name>
<rdfs:comment xml:lang="en">CDS DNA component</rdfs:comment>
<rdfs:label xml:lang="en">CDS</rdfs:label>
</owl:Class>
<!-- http://sbols.org/v2#Collection -->
<owl:Class rdf:about="http://sbols.org/v2#Collection">
<rdfs:subClassOf rdf:resource="http://sbols.org/v2#TopLevel"/>
<tawny:name xml:lang="en">Collection</tawny:name>
<rdfs:comment xml:lang="en">Groups together a set of TopLevel objects that have something in common.</rdfs:comment>
<rdfs:label xml:lang="en">Collection</rdfs:label>
</owl:Class>
<!-- http://sbols.org/v2#CombinatorialDerivation -->
<owl:Class rdf:about="http://sbols.org/v2#CombinatorialDerivation">
<rdfs:subClassOf rdf:resource="http://sbols.org/v2#TopLevel"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://sbols.org/v2#template"/>
<owl:someValuesFrom rdf:resource="http://sbols.org/v2#ComponentDefinition"/>
</owl:Restriction>
</rdfs:subClassOf>
<tawny:name xml:lang="en">CombinatorialDerivation</tawny:name>
<rdfs:comment xml:lang="en">The purpose of the CombinatorialDerivation class is to specify combinatorial genetic designs without having to specify every possible design variant. For example, a CombinatorialDerivation can be used to specify a library of reporter gene variants that include different promoters and RBSs without having to specify a ComponentDefinition for every possible combination of promoter, RBS, and CDS in the library. ComponentDefinition objects that realize a CombinatorialDerivation can be derived in accordance with the class properties template, variableComponents, and strategy.</rdfs:comment>
<rdfs:label xml:lang="en">CombinatorialDerivation</rdfs:label>
</owl:Class>