forked from biolink/biolink-model
-
Notifications
You must be signed in to change notification settings - Fork 0
/
biolink-model.owl.ttl
10075 lines (9097 loc) · 480 KB
/
biolink-model.owl.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@prefix AGRKB: <https://www.alliancegenome.org/> .
@prefix CHADO: <http://gmod.org/wiki/Chado/> .
@prefix CHEMBL.MECHANISM: <https://www.ebi.ac.uk/chembl/mechanism/inspect/> .
@prefix CPT: <https://www.ama-assn.org/practice-management/cpt/> .
@prefix CTD: <http://ctdbase.org/> .
@prefix DGIdb: <https://www.dgidb.org/interaction_types> .
@prefix DOID-PROPERTY: <http://purl.obolibrary.org/obo/doid#> .
@prefix DrugCentral: <http://drugcentral.org/drugcard/> .
@prefix ECTO: <http://purl.obolibrary.org/obo/ECTO_> .
@prefix EDAM-DATA: <http://edamontology.org/data_> .
@prefix EFO: <http://www.ebi.ac.uk/efo/EFO_> .
@prefix ExO: <http://purl.obolibrary.org/obo/ExO_> .
@prefix FYPO: <http://purl.obolibrary.org/obo/FYPO_> .
@prefix GAMMA: <http://translator.renci.org/GAMMA_> .
@prefix GOP: <http://purl.obolibrary.org/obo/go#> .
@prefix GOREL: <http://purl.obolibrary.org/obo/GOREL_> .
@prefix GTEx: <https://www.gtexportal.org/home/gene/> .
@prefix HANCESTRO: <http://www.ebi.ac.uk/ancestro/ancestro_> .
@prefix HCPCS: <http://purl.bioontology.org/ontology/HCPCS/> .
@prefix HsapDv: <http://purl.obolibrary.org/obo/HsapDv_> .
@prefix IAO: <http://purl.obolibrary.org/obo/IAO_> .
@prefix INO: <http://purl.obolibrary.org/obo/INO_> .
@prefix LOINC: <http://loinc.org/rdf/> .
@prefix MAXO: <http://purl.obolibrary.org/obo/MAXO_> .
@prefix MESH: <http://id.nlm.nih.gov/mesh/> .
@prefix MI: <http://purl.obolibrary.org/obo/MI_> .
@prefix NBO-PROPERTY: <http://purl.obolibrary.org/obo/nbo#> .
@prefix NDDF: <http://purl.bioontology.org/ontology/NDDF/> .
@prefix OBAN: <http://purl.org/oban/> .
@prefix ORPHA: <http://www.orpha.net/ORDO/Orphanet_> .
@prefix PHAROS: <http://pharos.nih.gov> .
@prefix PathWhiz: <http://smpdb.ca/pathways/#> .
@prefix REPODB: <http://apps.chiragjpgroup.org/repoDB/> .
@prefix RO: <http://purl.obolibrary.org/obo/RO_> .
@prefix RXNORM: <http://purl.bioontology.org/ontology/RXNORM/> .
@prefix SEMMEDDB: <https://skr3.nlm.nih.gov/SemMedDB> .
@prefix SIO: <http://semanticscience.org/resource/SIO_> .
@prefix SNOMEDCT: <http://www.snomedbrowser.com/Codes/Details/> .
@prefix STY: <http://purl.bioontology.org/ontology/STY/> .
@prefix UBERGRAPH: <http://translator.renci.org/ubergraph-axioms.ofn#> .
@prefix UBERON_CORE: <http://purl.obolibrary.org/obo/uberon/core#> .
@prefix UBERON_NONAMESPACE: <http://purl.obolibrary.org/obo/core#> .
@prefix UMLSSG: <https://lhncbc.nlm.nih.gov/semanticnetwork/download/sg_archive/SemGroups-v04.txt> .
@prefix UO-PROPERTY: <http://purl.obolibrary.org/obo/uo#> .
@prefix VANDF: <https://www.nlm.nih.gov/research/umls/sourcereleasedocs/current/VANDF/> .
@prefix VMC: <https://github.com/ga4gh/vr-spec/> .
@prefix WBVocab: <http://bio2rdf.org/wormbase_vocabulary> .
@prefix WBbt: <http://purl.obolibrary.org/obo/WBBT_> .
@prefix WIKIDATA: <https://www.wikidata.org/wiki/> .
@prefix WIKIDATA_PROPERTY: <https://www.wikidata.org/wiki/Property:> .
@prefix XPO: <http://purl.obolibrary.org/obo/XPO_> .
@prefix biolink: <https://w3id.org/biolink/vocab/> .
@prefix bioschemas: <https://bioschemas.org/> .
@prefix dcat: <http://www.w3.org/ns/dcat#> .
@prefix dcid: <https://datacommons.org/browser/> .
@prefix dcmitype: <http://purl.org/dc/dcmitype/> .
@prefix dct: <http://purl.org/dc/terms/> .
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
@prefix gff3: <https://github.com/The-Sequence-Ontology/Specifications/blob/master/gff3.md#> .
@prefix gpi: <https://github.com/geneontology/go-annotation/blob/master/specs/gpad-gpi-2-0.md#> .
@prefix linkml: <https://w3id.org/linkml/> .
@prefix oboformat: <http://www.geneontology.org/formats/oboInOwl#> .
@prefix os: <https://github.com/cmungall/owlstar/blob/master/owlstar.ttl> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix pav: <http://purl.org/pav/> .
@prefix prov: <http://www.w3.org/ns/prov#> .
@prefix qud: <http://qudt.org/1.1/schema/qudt#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema1: <http://schema.org/> .
@prefix skos: <http://www.w3.org/2004/02/skos/core#> .
@prefix wgs: <http://www.w3.org/2003/01/geo/wgs84_pos> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<https://w3id.org/biolink/biolink-model> a owl:Ontology ;
rdfs:label "Biolink-Model" ;
IAO:0000700 biolink:Annotation,
biolink:CaseToEntityAssociationMixin,
biolink:CellLineToEntityAssociationMixin,
biolink:ChemicalEntityOrGeneOrGeneProduct,
biolink:ChemicalEntityOrProteinOrPolypeptide,
biolink:ChemicalEntityToEntityAssociationMixin,
biolink:ChemicalOrDrugOrTreatment,
biolink:DiseaseOrPhenotypicFeatureToEntityAssociationMixin,
biolink:DiseaseToEntityAssociationMixin,
biolink:Entity,
biolink:EntityToDiseaseOrPhenotypicFeatureAssociationMixin,
biolink:EntityToExposureEventAssociationMixin,
biolink:EntityToOutcomeAssociationMixin,
biolink:ExposureEventToEntityAssociationMixin,
biolink:FrequencyQualifierMixin,
biolink:GeneExpressionMixin,
biolink:GeneGroupingMixin,
biolink:GeneOntologyClass,
biolink:GeneToEntityAssociationMixin,
biolink:GenomicEntity,
biolink:GenotypeToEntityAssociationMixin,
biolink:MacromolecularMachineMixin,
biolink:MacromolecularMachineToEntityAssociationMixin,
biolink:MaterialSampleToEntityAssociationMixin,
biolink:ModelToDiseaseAssociationMixin,
biolink:OntologyClass,
biolink:OrganismTaxonToEntityAssociation,
biolink:Outcome,
biolink:PathologicalEntityMixin,
biolink:PhysicalEssenceOrOccurrent,
biolink:RelationshipQuantifier,
biolink:SubjectOfInvestigation,
biolink:ThingWithTaxon,
biolink:UnclassifiedOntologyClass,
biolink:VariantToEntityAssociationMixin ;
dct:license "https://creativecommons.org/publicdomain/zero/1.0/" ;
pav:version "3.0.3" ;
linkml:generation_date "2022-10-19T00:12:56" ;
linkml:metamodel_version "1.7.0" ;
linkml:source_file "biolink-model.yaml" ;
linkml:source_file_date "2022-10-19T00:08:28" ;
linkml:source_file_size 377861 .
biolink:Activity a owl:Class ;
rdfs:label "activity" ;
rdfs:subClassOf biolink:ActivityAndBehavior,
biolink:NamedThing ;
skos:definition "An activity is something that occurs over a period of time and acts upon or with entities; it may include consuming, processing, transforming, modifying, relocating, using, or generating entities." ;
skos:exactMatch STY:T052,
<http://purl.obolibrary.org/obo/NCIT_C43431>,
prov:Activity ;
skos:narrowMatch STY:T056,
STY:T057,
STY:T058,
STY:T062,
STY:T064,
STY:T065,
STY:T066 .
biolink:AnatomicalEntityToAnatomicalEntityOntogenicAssociation a owl:Class ;
rdfs:label "anatomical entity to anatomical entity ontogenic association" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:onClass biolink:AnatomicalEntity ;
owl:onProperty rdf:object ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:onClass biolink:AnatomicalEntity ;
owl:onProperty rdf:subject ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:onClass biolink:PredicateType ;
owl:onProperty rdf:predicate ;
owl:qualifiedCardinality 1 ],
biolink:AnatomicalEntityToAnatomicalEntityAssociation ;
skos:definition "A relationship between two anatomical entities where the relationship is ontogenic, i.e. the two entities are related by development. A number of different relationship types can be used to specify the precise nature of the relationship." .
biolink:AnatomicalEntityToAnatomicalEntityPartOfAssociation a owl:Class ;
rdfs:label "anatomical entity to anatomical entity part of association" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:onClass biolink:AnatomicalEntity ;
owl:onProperty rdf:subject ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:onClass biolink:AnatomicalEntity ;
owl:onProperty rdf:object ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:onClass biolink:PredicateType ;
owl:onProperty rdf:predicate ;
owl:qualifiedCardinality 1 ],
biolink:AnatomicalEntityToAnatomicalEntityAssociation ;
skos:definition "A relationship between two anatomical entities where the relationship is mereological, i.e the two entities are related by parthood. This includes relationships between cellular components and cells, between cells and tissues, tissues and whole organisms" .
biolink:Article a owl:Class ;
rdfs:label "article" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass linkml:String ;
owl:onProperty biolink:issue ],
[ a owl:Restriction ;
owl:onClass linkml:Uriorcurie ;
owl:onProperty biolink:published_in ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass linkml:String ;
owl:onProperty biolink:volume ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass linkml:String ;
owl:onProperty biolink:iso_abbreviation ],
biolink:Publication .
biolink:BehaviorToBehavioralFeatureAssociation a owl:Class ;
rdfs:label "behavior to behavioral feature association" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:FrequencyValue ;
owl:onProperty biolink:frequency_qualifier ],
[ a owl:Restriction ;
owl:onClass biolink:Behavior ;
owl:onProperty rdf:subject ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:SeverityValue ;
owl:onProperty biolink:severity_qualifier ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:Onset ;
owl:onProperty biolink:onset_qualifier ],
[ a owl:Restriction ;
owl:onClass biolink:BehavioralFeature ;
owl:onProperty rdf:object ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:BiologicalSex ;
owl:onProperty biolink:sex_qualifier ],
biolink:Association,
biolink:EntityToPhenotypicFeatureAssociationMixin ;
skos:definition "An association between an mixture behavior and a behavioral feature manifested by the individual exhibited or has exhibited the behavior." .
biolink:BehavioralExposure a owl:Class ;
rdfs:label "behavioral exposure" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:TimeType ;
owl:onProperty biolink:timepoint ],
biolink:Attribute,
biolink:ExposureEvent ;
skos:definition "A behavioral exposure is a factor relating to behavior impacting an individual." .
biolink:BehavioralOutcome a owl:Class ;
rdfs:label "behavioral outcome" ;
rdfs:subClassOf biolink:Outcome ;
skos:definition "An outcome resulting from an exposure event which is the manifestation of human behavior." .
biolink:BioticExposure a owl:Class ;
rdfs:label "biotic exposure" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:TimeType ;
owl:onProperty biolink:timepoint ],
biolink:Attribute,
biolink:ExposureEvent ;
skos:altLabel "bacterial exposure",
"viral exposure" ;
skos:definition "An external biotic exposure is an intake of (sometimes pathological) biological organisms (including viruses)." .
biolink:Book a owl:Class ;
rdfs:label "book" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:onClass linkml:String ;
owl:onProperty biolink:id ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:onClass linkml:String ;
owl:onProperty rdf:type ;
owl:qualifiedCardinality 1 ],
biolink:Publication ;
skos:definition "This class may rarely be instantiated except if use cases of a given knowledge graph support its utility." .
biolink:CaseToPhenotypicFeatureAssociation a owl:Class ;
rdfs:label "case to phenotypic feature association" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:FrequencyValue ;
owl:onProperty biolink:frequency_qualifier ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:Onset ;
owl:onProperty biolink:onset_qualifier ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:SeverityValue ;
owl:onProperty biolink:severity_qualifier ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:BiologicalSex ;
owl:onProperty biolink:sex_qualifier ],
biolink:Association,
biolink:CaseToEntityAssociationMixin,
biolink:EntityToPhenotypicFeatureAssociationMixin ;
skos:definition "An association between a case (e.g. individual patient) and a phenotypic feature in which the individual has or has had the phenotype." .
biolink:Cell a owl:Class ;
rdfs:label "cell" ;
rdfs:subClassOf biolink:AnatomicalEntity ;
skos:exactMatch MESH:D002477,
STY:T025,
<http://purl.obolibrary.org/obo/CL_0000000>,
<http://purl.obolibrary.org/obo/GO_0005623>,
SIO:010001,
WIKIDATA:Q7868 .
biolink:CellLineAsAModelOfDiseaseAssociation a owl:Class ;
rdfs:label "cell line as a model of disease association" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:onClass biolink:CellLine ;
owl:onProperty rdf:subject ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:FrequencyValue ;
owl:onProperty biolink:frequency_qualifier ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:SeverityValue ;
owl:onProperty biolink:severity_qualifier ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:Onset ;
owl:onProperty biolink:onset_qualifier ],
biolink:CellLineToDiseaseOrPhenotypicFeatureAssociation,
biolink:EntityToDiseaseAssociationMixin,
biolink:ModelToDiseaseAssociationMixin .
biolink:CellularOrganism a owl:Class ;
rdfs:label "cellular organism" ;
rdfs:subClassOf biolink:OrganismalEntity ;
skos:definition "" ;
skos:exactMatch <http://purl.obolibrary.org/obo/NCBITaxon_131567> .
biolink:ChemicalAffectsGeneAssociation a owl:Class ;
rdfs:label "chemical affects gene association" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:DirectionQualifierEnum ;
owl:onProperty biolink:subject_direction_qualifier ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:GeneOrGeneProductOrChemicalPartQualifierEnum ;
owl:onProperty biolink:object_part_qualifier ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass linkml:String ;
owl:onProperty biolink:qualified_predicate ],
[ a owl:Restriction ;
owl:onClass biolink:PredicateType ;
owl:onProperty rdf:predicate ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:AnatomicalEntity ;
owl:onProperty biolink:subject_context_qualifier ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:GeneOrGeneProductOrChemicalEntityAspectEnum ;
owl:onProperty biolink:subject_aspect_qualifier ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:CausalMechanismQualifierEnum ;
owl:onProperty biolink:causal_mechanism_qualifier ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:OrganismTaxon ;
owl:onProperty biolink:species_context_qualifier ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:AnatomicalEntity ;
owl:onProperty biolink:anatomical_context_qualifier ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:ChemicalEntityDerivativeEnum ;
owl:onProperty biolink:subject_derivative_qualifier ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:ChemicalOrGeneOrGeneProductFormEnum ;
owl:onProperty biolink:subject_form_or_variant_qualifier ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:ChemicalOrGeneOrGeneProductFormEnum ;
owl:onProperty biolink:object_form_or_variant_qualifier ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:AnatomicalEntity ;
owl:onProperty biolink:object_context_qualifier ],
[ a owl:Restriction ;
owl:onClass biolink:GeneOrGeneProduct ;
owl:onProperty rdf:object ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:GeneOrGeneProductOrChemicalPartQualifierEnum ;
owl:onProperty biolink:subject_part_qualifier ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:DirectionQualifierEnum ;
owl:onProperty biolink:object_direction_qualifier ],
[ a owl:Restriction ;
owl:onClass biolink:ChemicalEntity ;
owl:onProperty rdf:subject ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:GeneOrGeneProductOrChemicalEntityAspectEnum ;
owl:onProperty biolink:object_aspect_qualifier ],
biolink:Association ;
skos:definition "Describes an effect that a chemical has on a gene or gene product (e.g. an impact of on its abundance, activity, localization, processing, expression, etc.)" .
biolink:ChemicalEntityAssessesNamedThingAssociation a owl:Class ;
rdfs:label "chemical entity assesses named thing association" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:onClass biolink:NamedThing ;
owl:onProperty rdf:object ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:onClass biolink:PredicateType ;
owl:onProperty rdf:predicate ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:onClass biolink:ChemicalEntity ;
owl:onProperty rdf:subject ;
owl:qualifiedCardinality 1 ],
biolink:Association .
biolink:ChemicalEntityOrGeneOrGeneProductRegulatesGeneAssociation a owl:Class ;
rdfs:label "chemical entity or gene or gene product regulates gene association" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:onClass biolink:ChemicalEntityOrGeneOrGeneProduct ;
owl:onProperty rdf:subject ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:DirectionQualifierEnum ;
owl:onProperty biolink:object_direction_qualifier ],
[ a owl:Restriction ;
owl:onClass biolink:PredicateType ;
owl:onProperty rdf:predicate ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:onClass biolink:GeneOrGeneProduct ;
owl:onProperty rdf:object ;
owl:qualifiedCardinality 1 ],
biolink:Association ;
skos:definition "A regulatory relationship between two genes" .
biolink:ChemicalGeneInteractionAssociation a owl:Class ;
rdfs:label "chemical gene interaction association" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:AnatomicalEntity ;
owl:onProperty biolink:object_context_qualifier ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:GeneOrGeneProductOrChemicalPartQualifierEnum ;
owl:onProperty biolink:object_part_qualifier ],
[ a owl:Restriction ;
owl:onClass biolink:ChemicalEntity ;
owl:onProperty rdf:subject ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:ChemicalEntityDerivativeEnum ;
owl:onProperty biolink:subject_derivative_qualifier ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:AnatomicalEntity ;
owl:onProperty biolink:subject_context_qualifier ],
[ a owl:Restriction ;
owl:onClass biolink:GeneOrGeneProduct ;
owl:onProperty rdf:object ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:AnatomicalEntity ;
owl:onProperty biolink:anatomical_context_qualifier ],
[ a owl:Restriction ;
owl:onClass biolink:PredicateType ;
owl:onProperty rdf:predicate ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:ChemicalOrGeneOrGeneProductFormEnum ;
owl:onProperty biolink:subject_form_or_variant_qualifier ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:ChemicalOrGeneOrGeneProductFormEnum ;
owl:onProperty biolink:object_form_or_variant_qualifier ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:GeneOrGeneProductOrChemicalPartQualifierEnum ;
owl:onProperty biolink:subject_part_qualifier ],
biolink:Association,
biolink:ChemicalToEntityAssociationMixin ;
skos:definition "describes a physical interaction between a chemical entity and a gene or gene product. Any biological or chemical effect resulting from such an interaction are out of scope, and covered by the ChemicalAffectsGeneAssociation type (e.g. impact of a chemical on the abundance, activity, structure, etc, of either participant in the interaction)" ;
skos:exactMatch SIO:001257 .
biolink:ChemicalOrDrugOrTreatmentSideEffectDiseaseOrPhenotypicFeatureAssociation a owl:Class ;
rdfs:label "chemical or drug or treatment side effect disease or phenotypic feature association" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:onClass biolink:PredicateType ;
owl:onProperty rdf:predicate ;
owl:qualifiedCardinality 1 ],
biolink:ChemicalOrDrugOrTreatmentToDiseaseOrPhenotypicFeatureAssociation,
biolink:ChemicalToEntityAssociationMixin,
biolink:EntityToDiseaseOrPhenotypicFeatureAssociationMixin ;
skos:definition "This association defines a relationship between a chemical or treatment (or procedure) and a disease or phenotypic feature where the disesae or phenotypic feature is a secondary, typically (but not always) undesirable effect." .
biolink:ChemicalToChemicalDerivationAssociation a owl:Class ;
rdfs:label "chemical to chemical derivation association" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:onClass biolink:ChemicalEntity ;
owl:onProperty rdf:subject ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:onClass biolink:ChemicalEntity ;
owl:onProperty rdf:object ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:allValuesFrom biolink:MacromolecularMachineMixin ;
owl:onProperty biolink:catalyst_qualifier ],
[ a owl:Restriction ;
owl:onClass biolink:PredicateType ;
owl:onProperty rdf:predicate ;
owl:qualifiedCardinality 1 ],
biolink:ChemicalToChemicalAssociation ;
skos:definition """A causal relationship between two chemical entities, where the subject represents the upstream entity and the object represents the downstream. For any such association there is an implicit reaction:
IF
R has-input C1 AND
R has-output C2 AND
R enabled-by P AND
R type Reaction
THEN
C1 derives-into C2 <<catalyst qualifier P>>""" .
biolink:ChemicalToDiseaseOrPhenotypicFeatureAssociation a owl:Class ;
rdfs:label "chemical to disease or phenotypic feature association" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:onClass biolink:DiseaseOrPhenotypicFeature ;
owl:onProperty rdf:object ;
owl:qualifiedCardinality 1 ],
biolink:Association,
biolink:ChemicalToEntityAssociationMixin,
biolink:EntityToDiseaseOrPhenotypicFeatureAssociationMixin ;
skos:definition "An interaction between a chemical entity and a phenotype or disease, where the presence of the chemical gives rise to or exacerbates the phenotype." ;
skos:narrowMatch SIO:000993 .
biolink:ChemicalToGeneAssociation a owl:Class ;
rdfs:label "chemical to gene association" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:onClass biolink:GeneOrGeneProduct ;
owl:onProperty rdf:object ;
owl:qualifiedCardinality 1 ],
biolink:Association,
biolink:ChemicalToEntityAssociationMixin ;
skos:definition "An interaction between a chemical entity and a gene or gene product." .
biolink:ChemicalToPathwayAssociation a owl:Class ;
rdfs:label "chemical to pathway association" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:onClass biolink:Pathway ;
owl:onProperty rdf:object ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:onClass biolink:ChemicalEntity ;
owl:onProperty rdf:subject ;
owl:qualifiedCardinality 1 ],
biolink:Association,
biolink:ChemicalToEntityAssociationMixin ;
skos:definition "An interaction between a chemical entity and a biological process or pathway." ;
skos:exactMatch SIO:001250 .
biolink:ChiSquaredAnalysisResult a owl:Class ;
rdfs:label "chi squared analysis result" ;
rdfs:subClassOf biolink:StudyResult ;
skos:definition "A result of a chi squared analysis." .
biolink:ClinicalFinding a owl:Class ;
rdfs:label "clinical finding" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom biolink:ClinicalAttribute ;
owl:onProperty biolink:has_attribute ],
biolink:PhenotypicFeature ;
skos:definition "this category is currently considered broad enough to tag clinical lab measurements and other biological attributes taken as 'clinical traits' with some statistical score, for example, a p value in genetic associations." .
biolink:ClinicalMeasurement a owl:Class ;
rdfs:label "clinical measurement" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:onClass biolink:OntologyClass ;
owl:onProperty biolink:has_attribute_type ;
owl:qualifiedCardinality 1 ],
biolink:ClinicalAttribute ;
skos:definition "A clinical measurement is a special kind of attribute which results from a laboratory observation from a subject individual or sample. Measurements can be connected to their subject by the 'has attribute' slot." ;
skos:exactMatch EFO:0001444 .
biolink:ClinicalTrial a owl:Class ;
rdfs:label "clinical trial" ;
rdfs:subClassOf biolink:ClinicalEntity .
biolink:Cohort a owl:Class ;
rdfs:label "cohort" ;
rdfs:subClassOf biolink:StudyPopulation ;
skos:definition "A group of people banded together or treated as a group who share common characteristics. A cohort 'study' is a particular form of longitudinal study that samples a cohort, performing a cross-section at intervals through time." ;
skos:exactMatch WIKIDATA:Q1303415 ;
skos:narrowMatch STY:T097,
STY:T099,
STY:T100,
STY:T101 .
biolink:ComplexChemicalExposure a owl:Class ;
rdfs:label "complex chemical exposure" ;
rdfs:subClassOf biolink:Attribute ;
skos:definition "A complex chemical exposure is an intake of a chemical mixture (e.g. gasoline), other than a drug." .
biolink:ComplexMolecularMixture a owl:Class ;
rdfs:label "complex molecular mixture" ;
rdfs:subClassOf biolink:ChemicalMixture ;
skos:definition "A complex molecular mixture is a chemical mixture composed of two or more molecular entities with unknown concentration and stoichiometry." .
biolink:ConceptCountAnalysisResult a owl:Class ;
rdfs:label "concept count analysis result" ;
rdfs:subClassOf biolink:StudyResult ;
skos:definition "A result of a concept count analysis." .
biolink:ContributorAssociation a owl:Class ;
rdfs:label "contributor association" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom biolink:OntologyClass ;
owl:onProperty biolink:qualifiers ],
[ a owl:Restriction ;
owl:onClass biolink:InformationContentEntity ;
owl:onProperty rdf:subject ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:onClass biolink:Agent ;
owl:onProperty rdf:object ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:onClass biolink:PredicateType ;
owl:onProperty rdf:predicate ;
owl:qualifiedCardinality 1 ],
biolink:Association ;
skos:definition "Any association between an entity (such as a publication) and various agents that contribute to its realisation" .
biolink:DiseaseOrPhenotypicFeatureExposure a owl:Class ;
rdfs:label "disease or phenotypic feature exposure" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:TimeType ;
owl:onProperty biolink:timepoint ],
biolink:Attribute,
biolink:ExposureEvent,
biolink:PathologicalEntityMixin ;
skos:definition "A disease or phenotypic feature state, when viewed as an exposure, represents an precondition, leading to or influencing an outcome, e.g. HIV predisposing an individual to infections; a relative deficiency of skin pigmentation predisposing an individual to skin cancer." .
biolink:DiseaseOrPhenotypicFeatureOutcome a owl:Class ;
rdfs:label "disease or phenotypic feature outcome" ;
rdfs:subClassOf biolink:Outcome ;
skos:definition "Physiological outcomes resulting from an exposure event which is the manifestation of a disease or other characteristic phenotype." .
biolink:DiseaseOrPhenotypicFeatureToGeneticInheritanceAssociation a owl:Class ;
rdfs:label "disease or phenotypic feature to genetic inheritance association" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:onClass biolink:GeneticInheritance ;
owl:onProperty rdf:object ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:onClass biolink:PredicateType ;
owl:onProperty rdf:predicate ;
owl:qualifiedCardinality 1 ],
biolink:Association,
biolink:DiseaseOrPhenotypicFeatureToEntityAssociationMixin ;
skos:definition "An association between either a disease or a phenotypic feature and its mode of (genetic) inheritance." .
biolink:DiseaseOrPhenotypicFeatureToLocationAssociation a owl:Class ;
rdfs:label "disease or phenotypic feature to location association" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:onClass biolink:AnatomicalEntity ;
owl:onProperty rdf:object ;
owl:qualifiedCardinality 1 ],
biolink:Association,
biolink:DiseaseOrPhenotypicFeatureToEntityAssociationMixin ;
skos:definition "An association between either a disease or a phenotypic feature and an anatomical entity, where the disease/feature manifests in that site." .
biolink:DiseaseToExposureEventAssociation a owl:Class ;
rdfs:label "disease to exposure event association" ;
rdfs:subClassOf biolink:Association,
biolink:DiseaseToEntityAssociationMixin,
biolink:EntityToExposureEventAssociationMixin ;
skos:definition "An association between an exposure event and a disease." .
biolink:DiseaseToPhenotypicFeatureAssociation a owl:Class ;
rdfs:label "disease to phenotypic feature association" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:onClass biolink:Disease ;
owl:onProperty rdf:subject ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:Onset ;
owl:onProperty biolink:onset_qualifier ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:SeverityValue ;
owl:onProperty biolink:severity_qualifier ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:FrequencyValue ;
owl:onProperty biolink:frequency_qualifier ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:BiologicalSex ;
owl:onProperty biolink:sex_qualifier ],
[ a owl:Restriction ;
owl:onClass biolink:PhenotypicFeature ;
owl:onProperty rdf:object ;
owl:qualifiedCardinality 1 ],
biolink:Association,
biolink:DiseaseToEntityAssociationMixin,
biolink:EntityToPhenotypicFeatureAssociationMixin ;
skos:closeMatch dcid:DiseaseSymptomAssociation ;
skos:definition "An association between a disease and a phenotypic feature in which the phenotypic feature is associated with the disease in some way." .
biolink:DrugToGeneAssociation a owl:Class ;
rdfs:label "drug to gene association" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:onClass biolink:GeneOrGeneProduct ;
owl:onProperty rdf:object ;
owl:qualifiedCardinality 1 ],
biolink:Association,
biolink:DrugToEntityAssociationMixin ;
skos:definition "An interaction between a drug and a gene or gene product." ;
skos:relatedMatch SIO:001257 .
biolink:DrugToGeneInteractionExposure a owl:Class ;
rdfs:label "drug to gene interaction exposure" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom biolink:Gene ;
owl:onProperty biolink:has_gene_or_gene_product ],
biolink:DrugExposure,
biolink:GeneGroupingMixin ;
skos:definition "drug to gene interaction exposure is a drug exposure is where the interactions of the drug with specific genes are known to constitute an 'exposure' to the organism, leading to or influencing an outcome." .
biolink:DruggableGeneToDiseaseAssociation a owl:Class ;
rdfs:label "druggable gene to disease association" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:onClass biolink:PredicateType ;
owl:onProperty rdf:predicate ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:onClass biolink:GeneOrGeneProduct ;
owl:onProperty rdf:subject ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:allValuesFrom biolink:DruggableGeneCategoryEnum ;
owl:onProperty biolink:has_evidence ],
biolink:EntityToDiseaseAssociationMixin,
biolink:GeneToDiseaseAssociation,
biolink:GeneToEntityAssociationMixin .
biolink:EntityToDiseaseAssociation a owl:Class ;
rdfs:label "entity to disease association" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:FDAApprovalStatusEnum ;
owl:onProperty biolink:FDA_approval_status ],
biolink:Association .
biolink:EntityToPhenotypicFeatureAssociation a owl:Class ;
rdfs:label "entity to phenotypic feature association" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:FDAApprovalStatusEnum ;
owl:onProperty biolink:FDA_approval_status ],
biolink:Association .
biolink:EnvironmentalFeature a owl:Class ;
rdfs:label "environmental feature" ;
rdfs:subClassOf biolink:PlanetaryEntity ;
skos:exactMatch <http://purl.obolibrary.org/obo/ENVO_01000254> .
biolink:EnvironmentalFoodContaminant a owl:Class ;
rdfs:label "environmental food contaminant" ;
rdfs:subClassOf biolink:ChemicalEntity ;
skos:relatedMatch <http://purl.obolibrary.org/obo/CHEBI_78299> .
biolink:EnvironmentalProcess a owl:Class ;
rdfs:label "environmental process" ;
rdfs:subClassOf biolink:Occurrent,
biolink:PlanetaryEntity ;
skos:exactMatch <http://purl.obolibrary.org/obo/ENVO_02500000> .
biolink:EpidemiologicalOutcome a owl:Class ;
rdfs:label "epidemiological outcome" ;
rdfs:subClassOf biolink:Outcome ;
skos:definition "An epidemiological outcome, such as societal disease burden, resulting from an exposure event." ;
skos:relatedMatch <http://purl.obolibrary.org/obo/NCIT_C19291> .
biolink:Event a owl:Class ;
rdfs:label "event" ;
rdfs:subClassOf biolink:NamedThing ;
skos:definition "Something that happens at a given place and time." ;
skos:exactMatch STY:T051,
<http://purl.obolibrary.org/obo/NCIT_C25499> .
biolink:ExonToTranscriptRelationship a owl:Class ;
rdfs:label "exon to transcript relationship" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:onClass biolink:Exon ;
owl:onProperty rdf:subject ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:onClass biolink:Transcript ;
owl:onProperty rdf:object ;
owl:qualifiedCardinality 1 ],
biolink:SequenceFeatureRelationship ;
skos:definition "A transcript is formed from multiple exons" .
biolink:ExposureEventToOutcomeAssociation a owl:Class ;
rdfs:label "exposure event to outcome association" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:TimeType ;
owl:onProperty biolink:has_temporal_context ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:PopulationOfIndividualOrganisms ;
owl:onProperty biolink:has_population_context ],
biolink:Association,
biolink:EntityToOutcomeAssociationMixin,
biolink:ExposureEventToEntityAssociationMixin ;
skos:definition "An association between an exposure event and an outcome." .
biolink:ExposureEventToPhenotypicFeatureAssociation a owl:Class ;
rdfs:label "exposure event to phenotypic feature association" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:FrequencyValue ;
owl:onProperty biolink:frequency_qualifier ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:Onset ;
owl:onProperty biolink:onset_qualifier ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:BiologicalSex ;
owl:onProperty biolink:sex_qualifier ],
[ a owl:Restriction ;
owl:onClass biolink:ExposureEvent ;
owl:onProperty rdf:subject ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:SeverityValue ;
owl:onProperty biolink:severity_qualifier ],
biolink:Association,
biolink:EntityToPhenotypicFeatureAssociationMixin ;
skos:definition "Any association between an environment and a phenotypic feature, where being in the environment influences the phenotype." .
biolink:Food a owl:Class ;
rdfs:label "food" ;
rdfs:subClassOf biolink:ChemicalMixture ;
skos:definition "A substance consumed by a living organism as a source of nutrition" ;
skos:exactMatch STY:T168 .
biolink:FoodAdditive a owl:Class ;
rdfs:label "food additive" ;
rdfs:subClassOf biolink:ChemicalEntity ;
skos:relatedMatch <http://purl.obolibrary.org/obo/CHEBI_64047> .
biolink:GeneAsAModelOfDiseaseAssociation a owl:Class ;
rdfs:label "gene as a model of disease association" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:onClass biolink:GeneOrGeneProduct ;
owl:onProperty rdf:subject ;
owl:qualifiedCardinality 1 ],
biolink:EntityToDiseaseAssociationMixin,
biolink:GeneToDiseaseAssociation,
biolink:ModelToDiseaseAssociationMixin .
biolink:GeneFamily a owl:Class ;
rdfs:label "gene family" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:allValuesFrom biolink:Gene ;
owl:onProperty biolink:has_gene_or_gene_product ],
biolink:BiologicalEntity,
biolink:ChemicalEntityOrGeneOrGeneProduct,
biolink:GeneGroupingMixin ;
skos:altLabel "orthogroup",
"protein family" ;
skos:definition "any grouping of multiple genes or gene products related by common descent" ;
skos:exactMatch <http://purl.obolibrary.org/obo/NCIT_C26004>,
WIKIDATA:Q2278983 ;
skos:narrowMatch <http://purl.obolibrary.org/obo/NCIT_C20130>,
SIO:001380,
WIKIDATA:Q417841 .
biolink:GeneHasVariantThatContributesToDiseaseAssociation a owl:Class ;
rdfs:label "gene has variant that contributes to disease association" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:onClass biolink:GeneOrGeneProduct ;
owl:onProperty rdf:subject ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:SequenceVariant ;
owl:onProperty biolink:sequence_variant_qualifier ],
biolink:GeneToDiseaseAssociation .
biolink:GeneRegulatoryRelationship a owl:Class ;
rdfs:label "gene regulatory relationship" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:onClass biolink:PredicateType ;
owl:onProperty rdf:predicate ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:onClass biolink:GeneOrGeneProduct ;
owl:onProperty rdf:subject ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:onClass biolink:GeneOrGeneProduct ;
owl:onProperty rdf:object ;
owl:qualifiedCardinality 1 ],
biolink:Association ;
skos:definition "A regulatory relationship between two genes" .
biolink:GeneToExpressionSiteAssociation a owl:Class ;
rdfs:label "gene to expression site association" ;
rdfs:seeAlso "https://github.com/monarch-initiative/ingest-artifacts/tree/master/sources/BGee" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:onClass biolink:GeneOrGeneProduct ;
owl:onProperty rdf:subject ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:LifeStage ;
owl:onProperty biolink:stage_qualifier ],
[ a owl:Restriction ;
owl:onClass biolink:AnatomicalEntity ;
owl:onProperty rdf:object ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:onClass biolink:PredicateType ;
owl:onProperty rdf:predicate ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:OntologyClass ;
owl:onProperty biolink:quantifier_qualifier ],
biolink:Association ;
skos:definition "An association between a gene and a gene expression site, possibly qualified by stage/timing info." ;
skos:editorialNote "TBD: introduce subclasses for distinction between wild-type and experimental conditions?" .
biolink:GeneToGeneCoexpressionAssociation a owl:Class ;
rdfs:label "gene to gene coexpression association" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:DiseaseOrPhenotypicFeature ;
owl:onProperty biolink:phenotypic_state ],
[ a owl:Restriction ;
owl:onClass biolink:PredicateType ;
owl:onProperty rdf:predicate ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:LifeStage ;
owl:onProperty biolink:stage_qualifier ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:OntologyClass ;
owl:onProperty biolink:quantifier_qualifier ],
[ a owl:Restriction ;
owl:maxQualifiedCardinality 1 ;
owl:onClass biolink:AnatomicalEntity ;
owl:onProperty biolink:expression_site ],
biolink:GeneExpressionMixin,
biolink:GeneToGeneAssociation ;
skos:definition "Indicates that two genes are co-expressed, generally under the same conditions." .
biolink:GeneToGeneHomologyAssociation a owl:Class ;
rdfs:label "gene to gene homology association" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:onClass biolink:GeneOrGeneProduct ;
owl:onProperty rdf:subject ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:onClass biolink:PredicateType ;
owl:onProperty rdf:predicate ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:onClass biolink:GeneOrGeneProduct ;
owl:onProperty rdf:object ;
owl:qualifiedCardinality 1 ],
biolink:GeneToGeneAssociation ;
skos:definition "A homology association between two genes. May be orthology (in which case the species of subject and object should differ) or paralogy (in which case the species may be the same)" .
biolink:GeneToGeneProductRelationship a owl:Class ;
rdfs:label "gene to gene product relationship" ;
rdfs:subClassOf [ a owl:Restriction ;
owl:onClass biolink:Gene ;
owl:onProperty rdf:subject ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:onClass biolink:PredicateType ;
owl:onProperty rdf:predicate ;
owl:qualifiedCardinality 1 ],
[ a owl:Restriction ;
owl:onClass biolink:GeneProductMixin ;
owl:onProperty rdf:object ;
owl:qualifiedCardinality 1 ],
biolink:SequenceFeatureRelationship ;
skos:definition "A gene is transcribed and potentially translated to a gene product" .