forked from OBOFoundry/OBOFoundry.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ontologies.ttl
4264 lines (3424 loc) · 278 KB
/
ontologies.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
<http://purl.obolibrary.org/obo/bfo>
<http://purl.org/dc/elements/1.1/description> "The upper level ontology upon which OBO Foundry ontologies are built." ;
<http://purl.org/dc/elements/1.1/title> "Basic Formal Ontology" ;
<http://purl.org/dc/terms/1.1/license> <http://creativecommons.org/licenses/by/3.0/> ;
<http://purl.org/dc/terms/1.1/theme> "upper" ;
<http://usefulinc.com/ns/doap#bug-database> "https://github.com/BFO-ontology/BFO/issues" ;
<http://usefulinc.com/ns/doap#mailing-list> "https://groups.google.com/forum/#!forum/bfo-discuss" ;
<http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://bioportal.bioontology.org/ontologies/BFO?p=classes> ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/bfo.owl" ;
<http://www.w3.org/ns/dcat#contactPoint> _:b0 ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/bfo.owl> ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/bfo.obo> ;
<http://xmlns.com/foaf/0.1/homepage> <http://ifomis.org/bfo/> .
<http://creativecommons.org/licenses/by/3.0/>
<http://schema.org/logo> <http://mirrors.creativecommons.org/presskit/buttons/80x15/png/by.png> ;
<http://www.w3.org/2000/01/rdf-schema#label> "CC-BY" .
<http://bioportal.bioontology.org/ontologies/BFO?p=classes>
<http://purl.org/dc/elements/1.1/title> "BioPortal Browser" ;
<http://www.w3.org/2000/01/rdf-schema#label> "BioPortal" .
_:b0 <http://www.w3.org/2000/01/rdf-schema#label> "Barry Smith" ;
<http://xmlns.com/foaf/0.1/mbox> "[email protected]" .
<http://purl.obolibrary.org/obo/bfo.owl>
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/bfo.owl" .
<http://purl.obolibrary.org/obo/bfo.obo>
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/bfo.obo" .
<http://purl.obolibrary.org/obo/chebi>
<http://identifiers.org/alternatePrefix> "ChEBI" ;
<http://obofoundry.github.io/vocabulary/has_build_information> _:b1 ;
<http://purl.org/dc/elements/1.1/description> "A structured classification of molecular entities of biological interest focusing on 'small' chemical compounds." ;
<http://purl.org/dc/elements/1.1/title> "Chemical Entities of Biological Interest" ;
<http://purl.org/dc/terms/1.1/theme> "biochemistry" ;
<http://usefulinc.com/ns/doap#bug-database> "https://github.com/ebi-chebi/ChEBI/issues" ;
<http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://www.ebi.ac.uk/chebi/chebiOntology.do?treeView=true&chebiId=CHEBI:24431#graphView> ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/chebi.owl" ;
<http://www.w3.org/ns/dcat#contactPoint> _:b2 ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/chebi.owl> ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/chebi.obo> ;
<http://xmlns.com/foaf/0.1/account> <http://purl.obolibrary.org/obo/chebit> ;
<http://xmlns.com/foaf/0.1/homepage> <http://www.ebi.ac.uk/chebi> ;
<http://xmlns.com/foaf/0.1/page> <http://www.ebi.ac.uk/chebi/init.do?toolBarForward=userManual> .
_:b1 <http://obofoundry.github.io/vocabulary/method> "obo2owl" ;
<http://obofoundry.github.io/vocabulary/source_url> "ftp://ftp.ebi.ac.uk/pub/databases/chebi/ontology/chebi.obo" .
<http://www.ebi.ac.uk/chebi/chebiOntology.do?treeView=true&chebiId=CHEBI:24431#graphView>
<http://purl.org/dc/elements/1.1/title> "EBI CHEBI Browser" ;
<http://www.w3.org/2000/01/rdf-schema#label> "CHEBI" .
_:b2 <http://www.w3.org/2000/01/rdf-schema#label> "Gareth Owen" ;
<http://xmlns.com/foaf/0.1/mbox> "[email protected]" .
<http://purl.obolibrary.org/obo/chebi.owl>
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/chebi.owl" .
<http://purl.obolibrary.org/obo/chebi.obo>
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/chebi.obo" .
<http://purl.obolibrary.org/obo/doid>
<http://obofoundry.github.io/vocabulary/has_build_information> _:b3 ;
<http://purl.obolibrary.org/obo/IAO_0000136> <http://purl.obolibrary.org/obo/NCBITaxon_9606> ;
<http://purl.org/dc/elements/1.1/description> "An ontology for describing the classification of human diseases organized by etiology." ;
<http://purl.org/dc/elements/1.1/title> "Human Disease Ontology" ;
<http://purl.org/dc/terms/1.1/license> <https://creativecommons.org/publicdomain/zero/1.0/> ;
<http://purl.org/dc/terms/1.1/publication> <http://www.ncbi.nlm.nih.gov/pubmed/?term=25348409> ;
<http://purl.org/dc/terms/1.1/theme> "disease" ;
<http://usefulinc.com/ns/doap#bug-database> "https://github.com/DiseaseOntology/HumanDiseaseOntology/issues" ;
<http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://www.disease-ontology.org/> ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/doid.owl" ;
<http://www.w3.org/ns/dcat#contactPoint> _:b4 ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/doid.owl> ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/doid.obo> ;
<http://xmlns.com/foaf/0.1/account> <https://www.facebook.com/diseaseontology> ;
<http://xmlns.com/foaf/0.1/account> <http://purl.obolibrary.org/obo/diseaseontology> ;
<http://xmlns.com/foaf/0.1/homepage> <http://www.disease-ontology.org> .
_:b3 <http://obofoundry.github.io/vocabulary/method> "obo2owl" ;
<http://obofoundry.github.io/vocabulary/source_url> "https://raw.githubusercontent.com/DiseaseOntology/HumanDiseaseOntology/master/src/ontology/doid-non-classified.obo" .
<http://purl.obolibrary.org/obo/NCBITaxon_9606>
<http://www.w3.org/2000/01/rdf-schema#label> "Homo sapiens" .
<https://creativecommons.org/publicdomain/zero/1.0/>
<http://schema.org/logo> <http://mirrors.creativecommons.org/presskit/buttons/80x15/png/cc-zero.png> ;
<http://www.w3.org/2000/01/rdf-schema#label> "CC0 1.0 Universal" .
<http://www.ncbi.nlm.nih.gov/pubmed/?term=25348409>
<http://purl.org/dc/elements/1.1/title> "Disease Ontology 2015 update: an expanded and updated database of human diseases for linking biomedical knowledge through disease data" .
<http://www.disease-ontology.org/>
<http://purl.org/dc/elements/1.1/title> "DO Browser" ;
<http://www.w3.org/2000/01/rdf-schema#label> "DO" .
_:b4 <http://www.w3.org/2000/01/rdf-schema#label> "Lynn Schriml" ;
<http://xmlns.com/foaf/0.1/mbox> "[email protected]" .
<http://purl.obolibrary.org/obo/doid.owl>
<http://purl.org/dc/elements/1.1/title> "Disease Ontology inferred hierarchy that includes anatomy, cell of origin, infectious agent and phenotype axioms" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/doid.owl" .
<http://purl.obolibrary.org/obo/doid.obo>
<http://purl.org/dc/elements/1.1/title> "Disease Ontology asserted is_a hierarchy (this file is equivalent to DO's previous HumanDO.obo file)" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/doid.obo" .
<http://purl.obolibrary.org/obo/go>
<http://obofoundry.github.io/vocabulary/continuous_integration_server> "http://build.berkeleybop.org/view/GO" ;
<http://obofoundry.github.io/vocabulary/depends_on> <http://purl.obolibrary.org/obo/uberon> ;
<http://obofoundry.github.io/vocabulary/depends_on> <http://purl.obolibrary.org/obo/cl> ;
<http://obofoundry.github.io/vocabulary/depends_on> <http://purl.obolibrary.org/obo/ncbitaxon> ;
<http://obofoundry.github.io/vocabulary/depends_on> <http://purl.obolibrary.org/obo/ro> ;
<http://obofoundry.github.io/vocabulary/depends_on> <http://purl.obolibrary.org/obo/go/extensions/go-bridge-to-nifstd.owl> ;
<http://purl.obolibrary.org/obo/IAO_0000136> <http://purl.obolibrary.org/obo/NCBITaxon_1> ;
<http://purl.org/dc/elements/1.1/description> "An ontology for describing the function of genes and gene products" ;
<http://purl.org/dc/elements/1.1/title> "Gene Ontology" ;
<http://purl.org/dc/terms/1.1/license> <http://creativecommons.org/licenses/by/3.0/> ;
<http://purl.org/dc/terms/1.1/theme> "biology" ;
<http://usefulinc.com/ns/doap#bug-database> "https://github.com/geneontology/go-ontology/issues/" ;
<http://www.w3.org/2000/01/rdf-schema#label> "GO" ;
<http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://amigo.geneontology.org/amigo/term/GO:0008150#display-lineage-tab> ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/go.owl" ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/go.owl> ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/go/extensions/go-plus.owl> ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/go/extensions/go-taxon-groupings.owl> ;
<http://xmlns.com/foaf/0.1/account> <https://www.facebook.com/Gene-Ontology-305908656519/> ;
<http://xmlns.com/foaf/0.1/account> <http://purl.obolibrary.org/obo/news4go> .
<http://purl.obolibrary.org/obo/uberon>
<http://obofoundry.github.io/vocabulary/depends_on> <http://purl.obolibrary.org/obo/go> ;
<http://obofoundry.github.io/vocabulary/depends_on> <http://purl.obolibrary.org/obo/cl> ;
<http://obofoundry.github.io/vocabulary/depends_on> <http://purl.obolibrary.org/obo/chebi> ;
<http://obofoundry.github.io/vocabulary/depends_on> <http://purl.obolibrary.org/obo/pr> ;
<http://obofoundry.github.io/vocabulary/has_build_information> _:b5 ;
<http://purl.obolibrary.org/obo/IAO_0000136> <http://purl.obolibrary.org/obo/NCBITaxon_33208> ;
<http://purl.org/dc/elements/1.1/description> "An integrated cross-species anatomy ontology covering animals and bridging multiple species-specific ontologies" ;
<http://purl.org/dc/elements/1.1/title> "Uberon multi-species anatomy ontology" ;
<http://purl.org/dc/terms/1.1/license> <http://creativecommons.org/licenses/by/3.0/> ;
<http://purl.org/dc/terms/1.1/publication> <http://www.ncbi.nlm.nih.gov/pubmed/22293552> ;
<http://purl.org/dc/terms/1.1/publication> <http://www.ncbi.nlm.nih.gov/pubmed/25009735> ;
<http://purl.org/dc/terms/1.1/theme> "anatomy" ;
<http://rdf-vocabulary.ddialliance.org/discovery#fundedBy> "NIH R24OD011883" ;
<http://rdf-vocabulary.ddialliance.org/discovery#fundedBy> "NIH R01HG004838" ;
<http://rdf-vocabulary.ddialliance.org/discovery#fundedBy> "NIH P41HG002273" ;
<http://rdf-vocabulary.ddialliance.org/discovery#fundedBy> "NSF DEB-0956049" ;
<http://rdfs.org/ns/void#exampleResource> <http://purl.obolibrary.org/obo/UBERON_0002046> ;
<http://usefulinc.com/ns/doap#bug-database> "https://github.com/obophenotype/uberon/issues" ;
<http://usefulinc.com/ns/doap#mailing-list> "https://lists.sourceforge.net/lists/listinfo/obo-anatomy" ;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://www.w3.org/2002/07/owl#Ontology> ;
<http://www.w3.org/2000/01/rdf-schema#label> "Uberon" ;
<http://www.w3.org/2000/01/rdf-schema#seeAlso> "https://www.biosharing.org/bsg-000016" ;
<http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://rgd.mcw.edu/rgdweb/ontology/view.html?acc_id=UBERON:0001062> ;
<http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://amigo.geneontology.org/amigo/term/UBERON:0001062#display-lineage-tab> ;
<http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://bgee.org/?page=gene> ;
<http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://fantom.gsc.riken.jp/5/sstar/UBERON:0001890> ;
<http://www.w3.org/2000/01/rdf-schema#seeAlso> <https://knowledge-space.org/index.php/pages/view/UBERON:0000061> ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/uberon.owl" ;
<http://www.w3.org/ns/dcat#contactPoint> _:b6 ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/uberon.owl> ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/uberon/ext.owl> ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/uberon/basic.obo> ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-zfa.owl> ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/uberon/bridge/uberon-bridge-to-ma.owl> ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/uberon/composite-metazoan.owl> ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/uberon/composite-vertebrate.owl> ;
<http://xmlns.com/foaf/0.1/account> <http://purl.obolibrary.org/obo/+UberonOrg> ;
<http://xmlns.com/foaf/0.1/account> <http://purl.obolibrary.org/obo/uberanat> ;
<http://xmlns.com/foaf/0.1/homepage> <http://uberon.org> ;
<http://xmlns.com/foaf/0.1/page> <http://en.wikipedia.org/wiki/Uberon> .
<http://purl.obolibrary.org/obo/cl>
<http://obofoundry.github.io/vocabulary/continuous_integration_server> "http://build.berkeleybop.org/job/build-cl/" ;
<http://obofoundry.github.io/vocabulary/depends_on> <http://purl.obolibrary.org/obo/uberon> ;
<http://obofoundry.github.io/vocabulary/depends_on> <http://purl.obolibrary.org/obo/go> ;
<http://obofoundry.github.io/vocabulary/depends_on> <http://purl.obolibrary.org/obo/ro> ;
<http://obofoundry.github.io/vocabulary/depends_on> <http://purl.obolibrary.org/obo/chebi> ;
<http://obofoundry.github.io/vocabulary/depends_on> <http://purl.obolibrary.org/obo/pato> ;
<http://obofoundry.github.io/vocabulary/has_build_information> _:b7 ;
<http://purl.obolibrary.org/obo/IAO_0000136> <http://purl.obolibrary.org/obo/NCBITaxon_33208> ;
<http://purl.org/dc/elements/1.1/description> "The Cell Ontology is a structured controlled vocabulary for cell types in animals." ;
<http://purl.org/dc/elements/1.1/title> "Cell Ontology" ;
<http://purl.org/dc/terms/1.1/license> <http://creativecommons.org/licenses/by/3.0/> ;
<http://purl.org/dc/terms/1.1/theme> "cells" ;
<http://usefulinc.com/ns/doap#bug-database> "https://github.com/obophenotype/cell-ontology/issues" ;
<http://usefulinc.com/ns/doap#mailing-list> "https://lists.sourceforge.net/lists/listinfo/obo-cell-type" ;
<http://www.w3.org/2000/01/rdf-schema#label> "Cell Ontology" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/cl.owl" ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/cl.owl> ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/cl.obo> ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/cl/cl-basic.obo> .
<http://purl.obolibrary.org/obo/ncbitaxon>
<http://identifiers.org/preferredPrefix> "NCBITaxon" ;
<http://obofoundry.github.io/vocabulary/has_build_information> _:b8 ;
<http://purl.org/dc/elements/1.1/description> "An ontology representation of the NCBI organismal taxonomy" ;
<http://purl.org/dc/elements/1.1/source> "http://www.ncbi.nlm.nih.gov/taxonomy" ;
<http://purl.org/dc/elements/1.1/title> "NCBI organismal classification" ;
<http://purl.org/dc/terms/1.1/theme> "taxonomy" ;
<http://purl.org/pav/createdWith> "http://owltools.googlecode.com/" ;
<http://purl.org/pav/wasDerivedFrom> "ftp://ftp.ebi.ac.uk/pub/databases/taxonomy/taxonomy.dat" ;
<http://usefulinc.com/ns/doap#bug-database> "https://github.com/obophenotype/ncbitaxon/issues" ;
<http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://www.ncbi.nlm.nih.gov/Taxonomy/Browser/wwwtax.cgi> ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/ncbitaxon.owl" ;
<http://www.w3.org/ns/dcat#contactPoint> _:b9 ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/ncbitaxon.owl> ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/ncbitaxon.obo> ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/ncbitaxon/subsets/taxslim.owl> ;
<http://xmlns.com/foaf/0.1/homepage> <https://github.com/obophenotype/ncbitaxon> ;
<http://xmlns.com/foaf/0.1/page> <http://www.ncbi.nlm.nih.gov/taxonomy> .
<http://purl.obolibrary.org/obo/ro>
<http://obofoundry.github.io/vocabulary/has_build_information> _:b10 ;
<http://purl.org/dc/elements/1.1/description> "Relationship types shared across multiple ontologies" ;
<http://purl.org/dc/elements/1.1/title> "Relations Ontology" ;
<http://purl.org/dc/terms/1.1/license> <http://creativecommons.org/licenses/by/3.0/> ;
<http://purl.org/dc/terms/1.1/theme> "relations" ;
<http://usefulinc.com/ns/doap#bug-database> "https://github.com/oborel/obo-relations/issues" ;
<http://usefulinc.com/ns/doap#mailing-list> "https://lists.sourceforge.net/lists/listinfo/obo-relations" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/ro.owl" ;
<http://www.w3.org/ns/dcat#contactPoint> _:b11 ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/ro.owl> ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/ro.obo> ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/ro/core.owl> ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/ro/subsets/ro-interaction.owl> ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/ro/subsets/ro-eco.owl> ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/ro/subsets/ro-neuro.owl> ;
<http://xmlns.com/foaf/0.1/homepage> <https://github.com/oborel/obo-relations/> .
<http://purl.obolibrary.org/obo/go/extensions/go-bridge-to-nifstd.owl>
<http://purl.org/dc/elements/1.1/description> "Bridging axioms between nifstd and go" ;
<http://purl.org/dc/elements/1.1/title> "GO bridge to NIFSTD" ;
<http://purl.org/dc/terms/1.1/publication> <http://www.ncbi.nlm.nih.gov/pubmed/24093723> ;
<http://www.w3.org/1999/02/22-rdf-syntax-ns#type> <http://purl.obolibrary.org/obo/BridgeOntology> .
<http://www.ncbi.nlm.nih.gov/pubmed/24093723>
<http://purl.org/dc/elements/1.1/title> "The Gene Ontology (GO) Cellular Component Ontology: integration with SAO (Subcellular Anatomy Ontology) and other recent developments." .
<http://purl.obolibrary.org/obo/NCBITaxon_1>
<http://www.w3.org/2000/01/rdf-schema#label> "All life" .
<http://amigo.geneontology.org/amigo/term/GO:0008150#display-lineage-tab>
<http://purl.org/dc/elements/1.1/title> "Gene Ontology AmiGO 2 Browser" ;
<http://www.w3.org/2000/01/rdf-schema#label> "AmiGO" .
<http://purl.obolibrary.org/obo/go.owl>
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/go.owl" .
<http://purl.obolibrary.org/obo/go/extensions/go-plus.owl>
<http://purl.org/dc/elements/1.1/description> "The core ontology plus axioms connecting to select external ontologies" ;
<http://purl.org/dc/elements/1.1/title> "GO-Plus" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/go/extensions/go-plus.owl" .
<http://purl.obolibrary.org/obo/go/extensions/go-taxon-groupings.owl>
<http://purl.org/dc/elements/1.1/description> "Classes added to ncbitaxon for groupings such as prokaryotes" ;
<http://purl.org/dc/elements/1.1/title> "GO Taxon Groupings" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/go/extensions/go-taxon-groupings.owl" .
<http://purl.obolibrary.org/obo/obi>
<http://obofoundry.github.io/vocabulary/continuous_integration_server> "http://build.berkeleybop.org/job/build-obi/" ;
<http://obofoundry.github.io/vocabulary/has_build_information> _:b12 ;
<http://purl.org/dc/elements/1.1/description> "An integrated ontology for the description of life-science and clinical investigations" ;
<http://purl.org/dc/elements/1.1/title> "Ontology for Biomedical Investigations" ;
<http://purl.org/dc/terms/1.1/license> <http://creativecommons.org/licenses/by/3.0/> ;
<http://purl.org/dc/terms/1.1/theme> "experiments" ;
<http://usefulinc.com/ns/doap#bug-database> "http://purl.obofoundry.org/obo/obi/tracker" ;
<http://usefulinc.com/ns/doap#mailing-list> "http://groups.google.com/group/obi-users" ;
<http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://bioportal.bioontology.org/ontologies/OBI?p=classes> ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/obi.owl" ;
<http://www.w3.org/ns/dcat#contactPoint> _:b13 ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/obi.owl> ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/obi/obi_core.owl> ;
<http://xmlns.com/foaf/0.1/homepage> <http://obi-ontology.org> .
_:b12 <http://obofoundry.github.io/vocabulary/source_url> "http://purl.obofoundry.org/obo/obi/repository/trunk/src/ontology/branches/" .
<http://bioportal.bioontology.org/ontologies/OBI?p=classes>
<http://purl.org/dc/elements/1.1/title> "BioPortal Browser" ;
<http://www.w3.org/2000/01/rdf-schema#label> "BioPortal" .
_:b13 <http://www.w3.org/2000/01/rdf-schema#label> "Bjoern Peters" ;
<http://xmlns.com/foaf/0.1/mbox> "[email protected]" .
<http://purl.obolibrary.org/obo/obi.owl>
<http://purl.org/dc/elements/1.1/title> "OBI" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/obi.owl" .
<http://purl.obolibrary.org/obo/obi/obi_core.owl>
<http://purl.org/dc/elements/1.1/title> "OBI Core" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/obi/obi_core.owl" .
<http://purl.obolibrary.org/obo/pato>
<http://obofoundry.github.io/vocabulary/has_build_information> _:b14 ;
<http://purl.org/dc/elements/1.1/description> "An ontology of phenotypic qualities (properties, attributes or characteristics)" ;
<http://purl.org/dc/elements/1.1/title> "Phenotypic quality" ;
<http://purl.org/dc/terms/1.1/license> <http://creativecommons.org/licenses/by/3.0/> ;
<http://purl.org/dc/terms/1.1/theme> "phenotype" ;
<http://usefulinc.com/ns/doap#bug-database> "https://github.com/pato-ontology/pato/issues" ;
<http://www.w3.org/2000/01/rdf-schema#seeAlso> <https://bioportal.bioontology.org/ontologies/PATO> ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/pato.owl" ;
<http://www.w3.org/ns/dcat#contactPoint> _:b15 ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/pato.owl> ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/pato.obo> ;
<http://xmlns.com/foaf/0.1/homepage> <https://github.com/pato-ontology/pato/> .
_:b14 <http://obofoundry.github.io/vocabulary/method> "obo2owl" ;
<http://obofoundry.github.io/vocabulary/source_url> "https://raw.githubusercontent.com/pato-ontology/pato/master/pato.obo" .
<https://bioportal.bioontology.org/ontologies/PATO>
<http://purl.org/dc/elements/1.1/title> "BioPortal Ontology Browser" ;
<http://www.w3.org/2000/01/rdf-schema#label> "BioPortal" .
_:b15 <http://www.w3.org/2000/01/rdf-schema#label> "George Gkoutos" ;
<http://xmlns.com/foaf/0.1/mbox> "[email protected]" .
<http://purl.obolibrary.org/obo/pato.owl>
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/pato.owl" .
<http://purl.obolibrary.org/obo/pato.obo>
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/pato.obo" .
<http://purl.obolibrary.org/obo/po>
<http://obofoundry.github.io/vocabulary/has_build_information> _:b16 ;
<http://purl.obolibrary.org/obo/IAO_0000136> <http://purl.obolibrary.org/obo/NCBITaxon_33090> ;
<http://purl.org/dc/elements/1.1/description> "The Plant Ontology is a structured vocabulary and database resource that links plant anatomy, morphology and growth and development to plant genomics data." ;
<http://purl.org/dc/elements/1.1/title> "Plant Ontology" ;
<http://purl.org/dc/terms/1.1/license> <https://creativecommons.org/licenses/by/4.0/> ;
<http://purl.org/dc/terms/1.1/publication> <http://www.ncbi.nlm.nih.gov/pubmed/23220694> ;
<http://purl.org/dc/terms/1.1/publication> <http://www.ncbi.nlm.nih.gov/pubmed/22847540> ;
<http://purl.org/dc/terms/1.1/theme> "anatomy and development" ;
<http://usefulinc.com/ns/doap#bug-database> "https://github.com/Planteome/plant-ontology/issues" ;
<http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://browser.planteome.org/amigo> ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/po.owl" ;
<http://www.w3.org/ns/dcat#contactPoint> _:b17 ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/po.owl> ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/po.obo> ;
<http://xmlns.com/foaf/0.1/account> <http://purl.obolibrary.org/obo/planteome> ;
<http://xmlns.com/foaf/0.1/homepage> <http://browser.planteome.org/amigo> ;
<http://xmlns.com/foaf/0.1/page> <https://github.com/Planteome/plant-ontology> .
_:b16 <http://obofoundry.github.io/vocabulary/checkout> "git clone https://github.com/Planteome/plant-ontology.git" ;
<http://obofoundry.github.io/vocabulary/method> "vcs" .
<http://purl.obolibrary.org/obo/NCBITaxon_33090>
<http://www.w3.org/2000/01/rdf-schema#label> "Viridiplantae" .
<https://creativecommons.org/licenses/by/4.0/>
<http://schema.org/logo> <http://mirrors.creativecommons.org/presskit/buttons/80x15/png/by.png> ;
<http://www.w3.org/2000/01/rdf-schema#label> "CC-BY 4.0" ;
<http://www.w3.org/2000/01/rdf-schema#label> "CC-BY" .
<http://www.ncbi.nlm.nih.gov/pubmed/23220694>
<http://purl.org/dc/elements/1.1/title> "The plant ontology as a tool for comparative plant anatomy and genomic analyses." .
<http://www.ncbi.nlm.nih.gov/pubmed/22847540>
<http://purl.org/dc/elements/1.1/title> "Ontologies as integrative tools for plant science." .
<http://browser.planteome.org/amigo>
<http://purl.org/dc/elements/1.1/title> "Planteome browser" ;
<http://www.w3.org/2000/01/rdf-schema#label> "Planteome" .
_:b17 <http://www.w3.org/2000/01/rdf-schema#label> "Pankaj Jaiswal" ;
<http://xmlns.com/foaf/0.1/mbox> "[email protected]" .
<http://purl.obolibrary.org/obo/po.owl>
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/po.owl" .
<http://purl.obolibrary.org/obo/po.obo>
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/po.obo" .
<http://purl.obolibrary.org/obo/pr>
<http://obofoundry.github.io/vocabulary/has_build_information> _:b18 ;
<http://purl.org/dc/elements/1.1/description> "An ontological representation of protein-related entities" ;
<http://purl.org/dc/elements/1.1/title> "PRotein Ontology (PRO)" ;
<http://purl.org/dc/terms/1.1/license> <http://creativecommons.org/licenses/by/4.0/> ;
<http://purl.org/dc/terms/1.1/theme> "proteins" ;
<http://usefulinc.com/ns/doap#bug-database> "http://sourceforge.net/tracker/?group_id=266825&atid=1135711" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/pr.owl" ;
<http://www.w3.org/ns/dcat#contactPoint> _:b19 ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/pr.owl> ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/pr.obo> ;
<http://xmlns.com/foaf/0.1/homepage> <http://proconsortium.org> .
_:b18 <http://obofoundry.github.io/vocabulary/method> "obo2owl" ;
<http://obofoundry.github.io/vocabulary/source_url> "ftp://ftp.pir.georgetown.edu/databases/ontology/pro_obo/pro.obo" .
<http://creativecommons.org/licenses/by/4.0/>
<http://schema.org/logo> <http://mirrors.creativecommons.org/presskit/buttons/80x15/png/by.png> ;
<http://www.w3.org/2000/01/rdf-schema#label> "CC-BY" .
_:b19 <http://www.w3.org/2000/01/rdf-schema#label> "Darren Natale" ;
<http://xmlns.com/foaf/0.1/mbox> "[email protected]" .
<http://purl.obolibrary.org/obo/pr.owl>
<http://purl.org/dc/elements/1.1/description> "PRO after reasoning has been applied, OWL format." ;
<http://purl.org/dc/elements/1.1/title> "pro_reasoned.owl" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/pr.owl" .
<http://purl.obolibrary.org/obo/pr.obo>
<http://purl.org/dc/elements/1.1/description> "PRO after reasoning has been applied, OBO format." ;
<http://purl.org/dc/elements/1.1/title> "pro_reasoned.obo" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/pr.obo" .
<http://purl.obolibrary.org/obo/xao>
<http://obofoundry.github.io/vocabulary/has_build_information> _:b20 ;
<http://purl.obolibrary.org/obo/IAO_0000136> <http://purl.obolibrary.org/obo/NCBITaxon_8353> ;
<http://purl.org/dc/elements/1.1/description> "Anatomy and development of the African clawed frog (<i>Xenopus laevis</i>)." ;
<http://purl.org/dc/elements/1.1/title> "Xenopus anatomy and development" ;
<http://purl.org/dc/terms/1.1/license> <http://creativecommons.org/licenses/by/3.0/> ;
<http://purl.org/dc/terms/1.1/publication> <http://www.ncbi.nlm.nih.gov/pubmed/18817563> ;
<http://purl.org/dc/terms/1.1/publication> <http://www.ncbi.nlm.nih.gov/pubmed/24139024> ;
<http://purl.org/dc/terms/1.1/theme> "anatomy" ;
<http://usefulinc.com/ns/doap#bug-database> "https://github.com/xenopus-anatomy/xao/issues" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/xao.owl" ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/xao.owl> ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/xao.obo> ;
<http://xmlns.com/foaf/0.1/homepage> <http://www.xenbase.org/anatomy/xao.do?method=display> .
_:b20 <http://obofoundry.github.io/vocabulary/method> "obo2owl" ;
<http://obofoundry.github.io/vocabulary/source_url> "https://raw.githubusercontent.com/xenopus-anatomy/xao/master/xenopus_anatomy.obo" .
<http://purl.obolibrary.org/obo/NCBITaxon_8353>
<http://www.w3.org/2000/01/rdf-schema#label> "Xenopus" .
<http://www.ncbi.nlm.nih.gov/pubmed/18817563>
<http://purl.org/dc/elements/1.1/title> "An ontology for Xenopus anatomy and development." .
<http://www.ncbi.nlm.nih.gov/pubmed/24139024>
<http://purl.org/dc/elements/1.1/title> "Enhanced XAO: the ontology of Xenopus anatomy and development underpins more accurate annotation of gene expression and queries on Xenbase." .
<http://purl.obolibrary.org/obo/xao.owl>
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/xao.owl" .
<http://purl.obolibrary.org/obo/xao.obo>
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/xao.obo" .
<http://purl.obolibrary.org/obo/zfa>
<http://obofoundry.github.io/vocabulary/has_build_information> _:b21 ;
<http://purl.obolibrary.org/obo/IAO_0000136> <http://purl.obolibrary.org/obo/NCBITaxon_7954> ;
<http://purl.org/dc/elements/1.1/description> "A structured controlled vocabulary of the anatomy and development of the Zebrafish" ;
<http://purl.org/dc/elements/1.1/title> "Zebrafish anatomy and development" ;
<http://purl.org/dc/terms/1.1/license> <http://creativecommons.org/licenses/by/3.0/> ;
<http://purl.org/dc/terms/1.1/publication> <http://www.ncbi.nlm.nih.gov/pubmed/24568621> ;
<http://purl.org/dc/terms/1.1/theme> "anatomy" ;
<http://usefulinc.com/ns/doap#bug-database> "https://github.com/cerivs/zebrafish-anatomical-ontology/issues" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/zfa.owl" ;
<http://www.w3.org/ns/dcat#contactPoint> _:b22 ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/zfa.owl> ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/zfa.obo> ;
<http://xmlns.com/foaf/0.1/homepage> <http://zfin.org/zf_info/anatomy/dict/sum.html> .
_:b21 <http://obofoundry.github.io/vocabulary/method> "obo2owl" ;
<http://obofoundry.github.io/vocabulary/source_url> "https://raw.githubusercontent.com/cerivs/zebrafish-anatomical-ontology/master/src/zebrafish_anatomy.obo" .
<http://purl.obolibrary.org/obo/NCBITaxon_7954>
<http://www.w3.org/2000/01/rdf-schema#label> "Danio" .
<http://www.ncbi.nlm.nih.gov/pubmed/24568621>
<http://purl.org/dc/elements/1.1/title> "The zebrafish anatomy and stage ontologies: representing the anatomy and development of Danio rerio." .
_:b22 <http://www.w3.org/2000/01/rdf-schema#label> "ZFIN administrators" ;
<http://xmlns.com/foaf/0.1/mbox> "[email protected]" .
<http://purl.obolibrary.org/obo/zfa.owl>
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/zfa.owl" .
<http://purl.obolibrary.org/obo/zfa.obo>
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/zfa.obo" .
<http://purl.obolibrary.org/obo/aeo>
<http://obofoundry.github.io/vocabulary/has_build_information> _:b23 ;
<http://purl.org/dc/elements/1.1/description> "AEO is an ontology of anatomical structures that expands CARO, the Common Anatomy Reference Ontology" ;
<http://purl.org/dc/elements/1.1/title> "Anatomical Entity Ontology" ;
<http://purl.org/dc/terms/1.1/theme> "anatomy" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/aeo.owl" ;
<http://www.w3.org/ns/dcat#contactPoint> _:b24 ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/aeo.owl> ;
<http://xmlns.com/foaf/0.1/homepage> <https://github.com/obophenotype/human-developmental-anatomy-ontology/> .
_:b23 <http://obofoundry.github.io/vocabulary/checkout> "git clone https://github.com/obophenotype/human-developmental-anatomy-ontology.git" ;
<http://obofoundry.github.io/vocabulary/method> "vcs" .
_:b24 <http://www.w3.org/2000/01/rdf-schema#label> "Jonathan Bard" ;
<http://xmlns.com/foaf/0.1/mbox> "[email protected]" .
<http://purl.obolibrary.org/obo/aeo.owl>
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/aeo.owl" .
<http://purl.obolibrary.org/obo/aero>
<http://obofoundry.github.io/vocabulary/has_build_information> _:b25 ;
<http://purl.org/dc/elements/1.1/description> "The Adverse Event Reporting Ontology (AERO) is an ontology aimed at supporting clinicians at the time of data entry, increasing quality and accuracy of reported adverse events" ;
<http://purl.org/dc/elements/1.1/title> "Adverse Event Reporting Ontology" ;
<http://purl.org/dc/terms/1.1/license> <http://creativecommons.org/licenses/by/3.0/> ;
<http://purl.org/dc/terms/1.1/theme> "health" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/aero.owl" ;
<http://www.w3.org/ns/dcat#contactPoint> _:b26 ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/aero.owl> ;
<http://xmlns.com/foaf/0.1/homepage> <http://purl.obolibrary.org/obo/aero> .
_:b25 <http://obofoundry.github.io/vocabulary/method> "owl2obo" ;
<http://obofoundry.github.io/vocabulary/source_url> "http://purl.obolibrary.org/obo/aero.owl" .
_:b26 <http://www.w3.org/2000/01/rdf-schema#label> "Melanie Courtot" ;
<http://xmlns.com/foaf/0.1/mbox> "[email protected]" .
<http://purl.obolibrary.org/obo/aero.owl>
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/aero.owl" .
<http://purl.obolibrary.org/obo/agro>
<http://obofoundry.github.io/vocabulary/depends_on> <http://purl.obolibrary.org/obo/envo> ;
<http://obofoundry.github.io/vocabulary/depends_on> <http://purl.obolibrary.org/obo/uo> ;
<http://obofoundry.github.io/vocabulary/depends_on> <http://purl.obolibrary.org/obo/ro> ;
<http://obofoundry.github.io/vocabulary/depends_on> <http://purl.obolibrary.org/obo/pato> ;
<http://obofoundry.github.io/vocabulary/depends_on> <http://purl.obolibrary.org/obo/chebi> ;
<http://obofoundry.github.io/vocabulary/depends_on> <http://purl.obolibrary.org/obo/iao> ;
<http://obofoundry.github.io/vocabulary/has_build_information> _:b27 ;
<http://purl.org/dc/elements/1.1/description> "Ontology of agronomic practices, agronomic techniques, and agronomic variables used in agronomic experiments" ;
<http://purl.org/dc/elements/1.1/title> "Agronomy Ontology" ;
<http://purl.org/dc/terms/1.1/license> <https://creativecommons.org/licenses/by/4.0/> ;
<http://purl.org/dc/terms/1.1/theme> "agronomy" ;
<http://usefulinc.com/ns/doap#bug-database> "https://github.com/AgriculturalSemantics/agro/issues/" ;
<http://usefulinc.com/ns/doap#mailing-list> "https://groups.google.com/group/agronomyOntology" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/agro.owl" ;
<http://www.w3.org/ns/dcat#contactPoint> _:b28 ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/agro.owl> ;
<http://xmlns.com/foaf/0.1/homepage> <https://github.com/AgriculturalSemantics/agro> .
<http://purl.obolibrary.org/obo/envo>
<http://obofoundry.github.io/vocabulary/depends_on> <http://purl.obolibrary.org/obo/uberon> ;
<http://obofoundry.github.io/vocabulary/depends_on> <http://purl.obolibrary.org/obo/pco> ;
<http://obofoundry.github.io/vocabulary/depends_on> <http://purl.obolibrary.org/obo/ro> ;
<http://obofoundry.github.io/vocabulary/depends_on> <http://purl.obolibrary.org/obo/chebi> ;
<http://obofoundry.github.io/vocabulary/depends_on> <http://purl.obolibrary.org/obo/ncbitaxon> ;
<http://obofoundry.github.io/vocabulary/has_build_information> _:b29 ;
<http://purl.org/dc/elements/1.1/description> "Ontology of environmental features and habitats" ;
<http://purl.org/dc/elements/1.1/title> "Environment Ontology" ;
<http://purl.org/dc/terms/1.1/license> <http://creativecommons.org/licenses/by/3.0/> ;
<http://purl.org/dc/terms/1.1/publication> <http://www.dx.doi.org/10.1186/2041-1480-4-43> ;
<http://purl.org/dc/terms/1.1/publication> <http://doi.org/10.1186/s13326-016-0097-6> ;
<http://purl.org/dc/terms/1.1/theme> "environment" ;
<http://usefulinc.com/ns/doap#bug-database> "https://github.com/EnvironmentOntology/envo/issues/" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/envo.owl" ;
<http://www.w3.org/ns/dcat#contactPoint> _:b30 ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/envo.owl> ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/envo.obo> ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/subsets/envo-basic.obo> ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/subsets/EnvO-Lite-GSC.obo> ;
<http://xmlns.com/foaf/0.1/homepage> <http://environmentontology.org/> ;
<http://xmlns.com/foaf/0.1/page> <https://github.com/EnvironmentOntology/envo> .
<http://purl.obolibrary.org/obo/uo>
<http://obofoundry.github.io/vocabulary/has_build_information> _:b31 ;
<http://purl.org/dc/elements/1.1/description> "Metrical units for use in conjunction with PATO" ;
<http://purl.org/dc/elements/1.1/title> "Units of measurement" ;
<http://purl.org/dc/terms/1.1/license> <http://creativecommons.org/licenses/by/3.0/> ;
<http://purl.org/dc/terms/1.1/theme> "phenotype" ;
<http://usefulinc.com/ns/doap#bug-database> "https://github.com/bio-ontology-research-group/unit-ontology/issues" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/uo.owl" ;
<http://www.w3.org/ns/dcat#contactPoint> _:b32 ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/uo.owl> ;
<http://xmlns.com/foaf/0.1/homepage> <https://github.com/bio-ontology-research-group/unit-ontology> .
<http://purl.obolibrary.org/obo/iao>
<http://obofoundry.github.io/vocabulary/has_build_information> _:b33 ;
<http://purl.org/dc/elements/1.1/description> "An ontology of information entities." ;
<http://purl.org/dc/elements/1.1/title> "Information Artifact Ontology" ;
<http://purl.org/dc/terms/1.1/license> <http://creativecommons.org/licenses/by/3.0/> ;
<http://purl.org/dc/terms/1.1/theme> "information" ;
<http://usefulinc.com/ns/doap#bug-database> "https://github.com/information-artifact-ontology/IAO/issues" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/iao.owl" ;
<http://www.w3.org/ns/dcat#contactPoint> _:b34 ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/iao.owl> ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/iao/ontology-metadata.owl> ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/iao/dev/iao.owl> ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/iao/d-acts.owl> ;
<http://xmlns.com/foaf/0.1/homepage> <https://github.com/information-artifact-ontology/IAO/> .
_:b27 <http://obofoundry.github.io/vocabulary/checkout> "git clone https://github.com/AgriculturalSemantics/agro.git" ;
<http://obofoundry.github.io/vocabulary/method> "vcs" .
_:b28 <http://www.w3.org/2000/01/rdf-schema#label> "Marie-Angélique Laporte" ;
<http://xmlns.com/foaf/0.1/mbox> "[email protected]" .
<http://purl.obolibrary.org/obo/agro.owl>
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/agro.owl" .
<http://purl.obolibrary.org/obo/apo>
<http://obofoundry.github.io/vocabulary/has_build_information> _:b35 ;
<http://purl.obolibrary.org/obo/IAO_0000136> <http://purl.obolibrary.org/obo/NCBITaxon_4890> ;
<http://purl.org/dc/elements/1.1/description> "A structured controlled vocabulary for the phenotypes of Ascomycete fungi" ;
<http://purl.org/dc/elements/1.1/title> "Ascomycete phenotype ontology" ;
<http://purl.org/dc/terms/1.1/theme> "phenotype" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/apo.owl" ;
<http://www.w3.org/ns/dcat#contactPoint> _:b36 ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/apo.owl> ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/apo.obo> ;
<http://xmlns.com/foaf/0.1/homepage> <http://www.yeastgenome.org/> .
_:b35 <http://obofoundry.github.io/vocabulary/method> "obo2owl" ;
<http://obofoundry.github.io/vocabulary/source_url> "https://raw.githubusercontent.com/obophenotype/ascomycete-phenotype-ontology/master/apo.obo" .
<http://purl.obolibrary.org/obo/NCBITaxon_4890>
<http://www.w3.org/2000/01/rdf-schema#label> "Ascomycota" .
_:b36 <http://www.w3.org/2000/01/rdf-schema#label> "sgd-helpdesk" ;
<http://xmlns.com/foaf/0.1/mbox> "[email protected]" .
<http://purl.obolibrary.org/obo/apo.owl>
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/apo.owl" .
<http://purl.obolibrary.org/obo/apo.obo>
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/apo.obo" .
<http://purl.obolibrary.org/obo/bcgo>
<http://purl.org/dc/elements/1.1/description> "An application ontology built for beta cell genomics studies." ;
<http://purl.org/dc/elements/1.1/title> "Beta Cell Genomics Ontology" ;
<http://purl.org/dc/terms/1.1/license> <http://creativecommons.org/licenses/by/3.0/> ;
<http://usefulinc.com/ns/doap#bug-database> "https://github.com/obi-bcgo/bcgo/issues" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/bcgo.owl" ;
<http://www.w3.org/ns/dcat#contactPoint> _:b37 ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/bcgo.owl> ;
<http://xmlns.com/foaf/0.1/homepage> <https://github.com/obi-bcgo/bcgo> .
_:b37 <http://www.w3.org/2000/01/rdf-schema#label> "Jie Zheng" ;
<http://xmlns.com/foaf/0.1/mbox> "[email protected]" .
<http://purl.obolibrary.org/obo/bcgo.owl>
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/bcgo.owl" .
<http://purl.obolibrary.org/obo/bco>
<http://purl.org/dc/elements/1.1/description> "An ontology to support the interoperability of biodiversity data, including data on museum collections, environmental/metagenomic samples, and ecological surveys." ;
<http://purl.org/dc/elements/1.1/title> "Biological Collections Ontology" ;
<http://usefulinc.com/ns/doap#bug-database> "https://github.com/tucotuco/bco/issues" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/bco.owl" ;
<http://www.w3.org/ns/dcat#contactPoint> _:b38 ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/bco.owl> ;
<http://xmlns.com/foaf/0.1/homepage> <https://github.com/tucotuco/bco> .
_:b38 <http://www.w3.org/2000/01/rdf-schema#label> "Ramona Walls" ;
<http://xmlns.com/foaf/0.1/mbox> "[email protected]" .
<http://purl.obolibrary.org/obo/bco.owl>
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/bco.owl" .
<http://purl.obolibrary.org/obo/bspo>
<http://obofoundry.github.io/vocabulary/has_build_information> _:b39 ;
<http://purl.org/dc/elements/1.1/description> "An ontology for respresenting spatial concepts, anatomical axes, gradients, regions, planes, sides, and surfaces" ;
<http://purl.org/dc/elements/1.1/title> "Biological Spatial Ontology" ;
<http://purl.org/dc/terms/1.1/license> <http://creativecommons.org/licenses/by/3.0/> ;
<http://purl.org/dc/terms/1.1/publication> <http://www.ncbi.nlm.nih.gov/pubmed/25140222> ;
<http://purl.org/dc/terms/1.1/theme> "anatomy" ;
<http://usefulinc.com/ns/doap#bug-database> "https://github.com/obophenotype/biological-spatial-ontology/issues" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/bspo.owl" ;
<http://www.w3.org/ns/dcat#contactPoint> _:b40 ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/bspo.owl> ;
<http://xmlns.com/foaf/0.1/homepage> <https://github.com/obophenotype/biological-spatial-ontology> .
_:b39 <http://obofoundry.github.io/vocabulary/checkout> "git clone https://github.com/obophenotype/biological-spatial-ontology.git" ;
<http://obofoundry.github.io/vocabulary/method> "vcs" .
<http://www.ncbi.nlm.nih.gov/pubmed/25140222>
<http://purl.org/dc/elements/1.1/title> "Nose to tail, roots to shoots: spatial descriptors for phenotypic diversity in the Biological Spatial Ontology." .
_:b40 <http://www.w3.org/2000/01/rdf-schema#label> "Chris Mungall" ;
<http://xmlns.com/foaf/0.1/mbox> "[email protected]" .
<http://purl.obolibrary.org/obo/bspo.owl>
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/bspo.owl" .
<http://purl.obolibrary.org/obo/bto>
<http://obofoundry.github.io/vocabulary/has_build_information> _:b41 ;
<http://purl.org/dc/elements/1.1/description> "A structured controlled vocabulary for the source of an enzyme comprising tissues, cell lines, cell types and cell cultures." ;
<http://purl.org/dc/elements/1.1/title> "BRENDA tissue / enzyme source" ;
<http://purl.org/dc/terms/1.1/license> <http://www.brenda-enzymes.org/copy.php> ;
<http://purl.org/dc/terms/1.1/publication> <https://www.ncbi.nlm.nih.gov/pubmed/21030441> ;
<http://purl.org/dc/terms/1.1/theme> "anatomy" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/bto.owl" ;
<http://www.w3.org/ns/dcat#contactPoint> _:b42 ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/bto.owl> ;
<http://xmlns.com/foaf/0.1/homepage> <http://www.brenda-enzymes.info> ;
<http://xmlns.com/foaf/0.1/page> <https://en.wikipedia.org/wiki/BRENDA_tissue_ontology> .
_:b41 <http://obofoundry.github.io/vocabulary/method> "obo2owl" ;
<http://obofoundry.github.io/vocabulary/source_url> "http://www.brenda-enzymes.info/ontology/tissue/tree/update/update_files/BrendaTissueOBO" .
<http://www.brenda-enzymes.org/copy.php>
<http://www.w3.org/2000/01/rdf-schema#label> "BRENDA license" .
<https://www.ncbi.nlm.nih.gov/pubmed/21030441>
<http://purl.org/dc/elements/1.1/title> "The BRENDA Tissue Ontology (BTO): the first all-integrating ontology of all organisms for enzyme sources" .
_:b42 <http://www.w3.org/2000/01/rdf-schema#label> "Antje Chang" ;
<http://xmlns.com/foaf/0.1/mbox> "[email protected]" .
<http://purl.obolibrary.org/obo/bto.owl>
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/bto.owl" .
<http://purl.obolibrary.org/obo/caro>
<http://obofoundry.github.io/vocabulary/has_build_information> _:b43 ;
<http://purl.org/dc/elements/1.1/description> "An upper level ontology to facilitate interoperability between existing anatomy ontologies for different species" ;
<http://purl.org/dc/elements/1.1/title> "Common Anatomy Reference Ontology" ;
<http://purl.org/dc/terms/1.1/theme> "anatomy" ;
<http://usefulinc.com/ns/doap#bug-database> "https://github.com/obophenotype/caro/issues" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/caro.owl" ;
<http://www.w3.org/ns/dcat#contactPoint> _:b44 ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/caro.owl> ;
<http://xmlns.com/foaf/0.1/homepage> <https://github.com/obophenotype/caro/> .
_:b43 <http://obofoundry.github.io/vocabulary/method> "obo2owl" ;
<http://obofoundry.github.io/vocabulary/source_url> "http://obo.cvs.sourceforge.net/*checkout*/obo/obo/ontology/anatomy/caro/caro.obo" .
_:b44 <http://www.w3.org/2000/01/rdf-schema#label> "Melissa Haendel" ;
<http://xmlns.com/foaf/0.1/mbox> "[email protected]" .
<http://purl.obolibrary.org/obo/caro.owl>
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/caro.owl" .
<http://purl.obolibrary.org/obo/cdao>
<http://obofoundry.github.io/vocabulary/has_build_information> _:b45 ;
<http://purl.org/dc/elements/1.1/description> "a formalization of concepts and relations relevant to evolutionary comparative analysis" ;
<http://purl.org/dc/elements/1.1/title> "Comparative Data Analysis Ontology" ;
<http://purl.org/dc/terms/1.1/license> <https://creativecommons.org/publicdomain/zero/1.0/> ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/cdao.owl" ;
<http://www.w3.org/ns/dcat#contactPoint> _:b46 ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/cdao.owl> ;
<http://xmlns.com/foaf/0.1/homepage> <http://sourceforge.net/apps/mediawiki/cdao/index.php?title=Main_Page> .
_:b45 <http://obofoundry.github.io/vocabulary/method> "owl2obo" ;
<http://obofoundry.github.io/vocabulary/source_url> "http://purl.obolibrary.org/obo/cdao.owl" .
_:b46 <http://www.w3.org/2000/01/rdf-schema#label> "Jim Balhoff" ;
<http://xmlns.com/foaf/0.1/mbox> "[email protected]" .
<http://purl.obolibrary.org/obo/cdao.owl>
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/cdao.owl" .
<http://purl.obolibrary.org/obo/ceph>
<http://obofoundry.github.io/vocabulary/has_build_information> _:b47 ;
<http://purl.obolibrary.org/obo/IAO_0000136> <http://purl.obolibrary.org/obo/NCBITaxon_6605> ;
<http://purl.org/dc/elements/1.1/description> "An anatomical and developmental ontology for cephalopods" ;
<http://purl.org/dc/elements/1.1/title> "Cephalopod Ontology" ;
<http://purl.org/dc/terms/1.1/license> <http://creativecommons.org/licenses/by/3.0/> ;
<http://purl.org/dc/terms/1.1/theme> "anatomy" ;
<http://usefulinc.com/ns/doap#bug-database> "https://github.com/obophenotype/cephalopod-ontology/issues" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/ceph.owl" ;
<http://www.w3.org/ns/dcat#contactPoint> _:b48 ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/ceph.owl> ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/ceph.obo> ;
<http://xmlns.com/foaf/0.1/homepage> <https://github.com/obophenotype/cephalopod-ontology> .
_:b47 <http://obofoundry.github.io/vocabulary/checkout> "git clone https://github.com/obophenotype/cephalopod-ontology.git" ;
<http://obofoundry.github.io/vocabulary/method> "vcs" .
<http://purl.obolibrary.org/obo/NCBITaxon_6605>
<http://www.w3.org/2000/01/rdf-schema#label> "Cephalopod" .
_:b48 <http://www.w3.org/2000/01/rdf-schema#label> "Chris Mungall" ;
<http://xmlns.com/foaf/0.1/mbox> "[email protected]" .
<http://purl.obolibrary.org/obo/ceph.owl>
<http://purl.org/dc/elements/1.1/title> "main version" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/ceph.owl" .
<http://purl.obolibrary.org/obo/ceph.obo>
<http://purl.org/dc/elements/1.1/title> "oboformat edition" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/ceph.obo" .
<http://purl.obolibrary.org/obo/cheminf>
<http://obofoundry.github.io/vocabulary/has_build_information> _:b49 ;
<http://purl.org/dc/elements/1.1/description> "Includes terms for the descriptors commonly used in cheminformatics software applications and the algorithms which generate them." ;
<http://purl.org/dc/elements/1.1/title> "Chemical Information Ontology" ;
<http://purl.org/dc/terms/1.1/theme> "biochemistry" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/cheminf.owl" ;
<http://www.w3.org/ns/dcat#contactPoint> _:b50 ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/cheminf.owl> ;
<http://xmlns.com/foaf/0.1/homepage> <https://github.com/egonw/semanticchemistry> .
_:b49 <http://obofoundry.github.io/vocabulary/method> "owl2obo" ;
<http://obofoundry.github.io/vocabulary/source_url> "https://raw.githubusercontent.com/egonw/semanticchemistry/master/ontology/cheminf.owl" .
_:b50 <http://www.w3.org/2000/01/rdf-schema#label> "Egon Willighagen" ;
<http://xmlns.com/foaf/0.1/mbox> "[email protected]" .
<http://purl.obolibrary.org/obo/cheminf.owl>
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/cheminf.owl" .
<http://purl.obolibrary.org/obo/chmo>
<http://purl.org/dc/elements/1.1/description> "CHMO, the chemical methods ontology, describes methods used to" ;
<http://purl.org/dc/elements/1.1/title> "Chemical Methods Ontology" ;
<http://purl.org/dc/terms/1.1/license> <http://creativecommons.org/licenses/by/4.0> ;
<http://purl.org/dc/terms/1.1/theme> "health" ;
<http://usefulinc.com/ns/doap#bug-database> "https://github.com/rsc-ontologies/rsc-cmo/issues" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/chmo.owl" ;
<http://www.w3.org/ns/dcat#contactPoint> _:b51 ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/chmo.owl> ;
<http://xmlns.com/foaf/0.1/homepage> <https://github.com/rsc-ontologies/rsc-cmo> .
<http://creativecommons.org/licenses/by/4.0>
<http://schema.org/logo> <http://mirrors.creativecommons.org/presskit/buttons/80x15/png/by.png> ;
<http://www.w3.org/2000/01/rdf-schema#label> "CC-BY" .
_:b51 <http://www.w3.org/2000/01/rdf-schema#label> "Colin Batchelor" ;
<http://xmlns.com/foaf/0.1/mbox> "[email protected]" .
<http://purl.obolibrary.org/obo/chmo.owl>
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/chmo.owl" .
<http://purl.obolibrary.org/obo/cio>
<http://purl.org/dc/elements/1.1/description> "An ontology to capture confidence information about annotations." ;
<http://purl.org/dc/elements/1.1/title> "Confidence Information Ontology" ;
<http://usefulinc.com/ns/doap#bug-database> "https://github.com/BgeeDB/confidence-information-ontology" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/cio.owl" ;
<http://www.w3.org/ns/dcat#contactPoint> _:b52 ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/cio.owl> ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/cio.obo> ;
<http://xmlns.com/foaf/0.1/homepage> <https://github.com/BgeeDB/confidence-information-ontology> .
_:b52 <http://www.w3.org/2000/01/rdf-schema#label> "Frederic Bastian" ;
<http://xmlns.com/foaf/0.1/mbox> "[email protected]" .
<http://purl.obolibrary.org/obo/cio.owl>
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/cio.owl" .
<http://purl.obolibrary.org/obo/cio.obo>
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/cio.obo" .
_:b7 <http://obofoundry.github.io/vocabulary/checkout> "git clone https://github.com/obophenotype/cell-ontology.git" ;
<http://obofoundry.github.io/vocabulary/method> "vcs" .
<http://purl.obolibrary.org/obo/NCBITaxon_33208>
<http://www.w3.org/2000/01/rdf-schema#label> "Metazoa" .
<http://purl.obolibrary.org/obo/cl.owl>
<http://purl.org/dc/elements/1.1/description> "Complete ontology, plus inter-ontology axioms, and imports modules" ;
<http://purl.org/dc/elements/1.1/title> "Main CL OWL edition" ;
<http://purl.org/dc/terms/1.1/format> "owl-rdf/xml" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/cl.owl" .
<http://purl.obolibrary.org/obo/cl.obo>
<http://purl.org/dc/elements/1.1/description> "Complete ontology, plus inter-ontology axioms, and imports modules merged in" ;
<http://purl.org/dc/elements/1.1/title> "CL obo format edition" ;
<http://purl.org/dc/terms/1.1/format> "obo" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/cl.obo" .
<http://purl.obolibrary.org/obo/cl/cl-basic.obo>
<http://purl.org/dc/elements/1.1/description> "Basic version, no inter-ontology axioms" ;
<http://purl.org/dc/elements/1.1/title> "Basic CL" ;
<http://purl.org/dc/terms/1.1/format> "obo" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/cl/cl-basic.obo" .
<http://purl.obolibrary.org/obo/clo>
<http://obofoundry.github.io/vocabulary/depends_on> <http://purl.obolibrary.org/obo/uberon> ;
<http://obofoundry.github.io/vocabulary/depends_on> <http://purl.obolibrary.org/obo/cl> ;
<http://obofoundry.github.io/vocabulary/depends_on> <http://purl.obolibrary.org/obo/doid> ;
<http://obofoundry.github.io/vocabulary/depends_on> <http://purl.obolibrary.org/obo/ncbitaxon> ;
<http://purl.org/dc/elements/1.1/description> "An ontology to standardize and integrate cell line information and to support computer-assisted reasoning." ;
<http://purl.org/dc/elements/1.1/title> "Cell Line Ontology" ;
<http://purl.org/dc/terms/1.1/license> <http://creativecommons.org/licenses/by/3.0/> ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/clo.owl" ;
<http://www.w3.org/ns/dcat#contactPoint> _:b53 ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/clo.owl> ;
<http://xmlns.com/foaf/0.1/homepage> <http://www.clo-ontology.org> .
_:b53 <http://www.w3.org/2000/01/rdf-schema#label> "Sirarat Sarntivijai" ;
<http://xmlns.com/foaf/0.1/mbox> "[email protected]" .
<http://purl.obolibrary.org/obo/clo.owl>
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/clo.owl" .
<http://purl.obolibrary.org/obo/cmf>
<http://purl.org/dc/elements/1.1/title> "CranioMaxilloFacial ontology" ;
<http://www.w3.org/ns/dcat#contactPoint> _:b54 ;
<http://xmlns.com/foaf/0.1/homepage> <https://code.google.com/p/craniomaxillofacial-ontology/> .
_:b54 <http://www.w3.org/2000/01/rdf-schema#label> "[email protected]" ;
<http://xmlns.com/foaf/0.1/mbox> "Michael Grove" .
<http://purl.obolibrary.org/obo/cmo>
<http://obofoundry.github.io/vocabulary/has_build_information> _:b55 ;
<http://purl.org/dc/elements/1.1/description> "Morphological and physiological measurement records generated from clinical and model organism research and health programs." ;
<http://purl.org/dc/elements/1.1/title> "Clinical measurement ontology" ;
<http://purl.org/dc/terms/1.1/publication> <http://www.ncbi.nlm.nih.gov/pubmed/22654893> ;
<http://purl.org/dc/terms/1.1/publication> <http://www.ncbi.nlm.nih.gov/pubmed/24103152> ;
<http://purl.org/dc/terms/1.1/theme> "clinical" ;
<http://www.w3.org/2000/01/rdf-schema#seeAlso> <http://rgd.mcw.edu/rgdweb/ontology/view.html?acc_id=CMO:0000000> ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/cmo.owl" ;
<http://www.w3.org/ns/dcat#contactPoint> _:b56 ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/cmo.owl> ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/cmo.obo> ;
<http://xmlns.com/foaf/0.1/homepage> <http://rgd.mcw.edu/rgdweb/ontology/search.html> ;
<http://xmlns.com/foaf/0.1/page> <ftp://ftp.rgd.mcw.edu/pub/ontology/clinical_measurement/> .
_:b55 <http://obofoundry.github.io/vocabulary/method> "obo2owl" ;
<http://obofoundry.github.io/vocabulary/source_url> "ftp://ftp.rgd.mcw.edu/pub/ontology/clinical_measurement/clinical_measurement.obo" .
<http://www.ncbi.nlm.nih.gov/pubmed/22654893>
<http://purl.org/dc/elements/1.1/title> "Three ontologies to define phenotype measurement data." .
<http://www.ncbi.nlm.nih.gov/pubmed/24103152>
<http://purl.org/dc/elements/1.1/title> "The clinical measurement, measurement method and experimental condition ontologies: expansion, improvements and new applications." .
<http://rgd.mcw.edu/rgdweb/ontology/view.html?acc_id=CMO:0000000>
<http://purl.org/dc/elements/1.1/title> "RGD Ontology Browser" ;
<http://www.w3.org/2000/01/rdf-schema#label> "RGD" .
_:b56 <http://www.w3.org/2000/01/rdf-schema#label> "Mary Shimoyama" ;
<http://xmlns.com/foaf/0.1/mbox> "[email protected]" .
<http://purl.obolibrary.org/obo/cmo.owl>
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/cmo.owl" .
<http://purl.obolibrary.org/obo/cmo.obo>
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/cmo.obo" .
<http://purl.obolibrary.org/obo/cteno>
<http://obofoundry.github.io/vocabulary/depends_on> <http://purl.obolibrary.org/obo/uberon> ;
<http://obofoundry.github.io/vocabulary/depends_on> <http://purl.obolibrary.org/obo/ro> ;
<http://obofoundry.github.io/vocabulary/has_build_information> _:b57 ;
<http://purl.obolibrary.org/obo/IAO_0000136> <http://purl.obolibrary.org/obo/NCBITaxon_10197> ;
<http://purl.org/dc/elements/1.1/description> "An anatomical and developmental ontology for ctenophores (Comb Jellies)" ;
<http://purl.org/dc/elements/1.1/title> "Ctenophore Ontology" ;
<http://purl.org/dc/terms/1.1/license> <http://creativecommons.org/licenses/by/3.0/> ;
<http://purl.org/dc/terms/1.1/theme> "anatomy" ;
<http://usefulinc.com/ns/doap#bug-database> "https://github.com/obophenotype/ctenophore-ontology/issues" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/cteno.owl" ;
<http://www.w3.org/ns/dcat#contactPoint> _:b58 ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/cteno.owl> ;
<http://xmlns.com/foaf/0.1/homepage> <https://github.com/obophenotype/ctenophore-ontology> .
_:b57 <http://obofoundry.github.io/vocabulary/checkout> "git clone https://github.com/obophenotype/ctenophore-ontology.git" ;
<http://obofoundry.github.io/vocabulary/method> "vcs" .
<http://purl.obolibrary.org/obo/NCBITaxon_10197>
<http://www.w3.org/2000/01/rdf-schema#label> "Ctenophore" .
_:b58 <http://www.w3.org/2000/01/rdf-schema#label> "Chris Mungall" ;
<http://xmlns.com/foaf/0.1/mbox> "[email protected]" .
<http://purl.obolibrary.org/obo/cteno.owl>
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/cteno.owl" .
<http://purl.obolibrary.org/obo/cvdo>
<http://obofoundry.github.io/vocabulary/has_build_information> _:b59 ;
<http://purl.org/dc/elements/1.1/description> "An ontology to describe entities related to cardiovascular diseases" ;
<http://purl.org/dc/elements/1.1/title> "Cardiovascular Disease Ontology" ;
<http://purl.org/dc/terms/1.1/theme> "health" ;
<http://usefulinc.com/ns/doap#bug-database> "https://github.com/OpenLHS/CVDO/issues" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/cvdo.owl" ;
<http://www.w3.org/ns/dcat#contactPoint> _:b60 ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/cvdo.owl> ;
<http://xmlns.com/foaf/0.1/homepage> <https://github.com/OpenLHS/CVDO> .
_:b59 <http://obofoundry.github.io/vocabulary/method> "owl2obo" ;
<http://obofoundry.github.io/vocabulary/source_url> "http://purl.obolibrary.org/obo/cvdo.owl" .
_:b60 <http://www.w3.org/2000/01/rdf-schema#label> "Adrien Barton" ;
<http://xmlns.com/foaf/0.1/mbox> "[email protected]" .
<http://purl.obolibrary.org/obo/cvdo.owl>
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/cvdo.owl" .
<http://purl.obolibrary.org/obo/ddanat>
<http://obofoundry.github.io/vocabulary/has_build_information> _:b61 ;
<http://purl.obolibrary.org/obo/IAO_0000136> <http://purl.obolibrary.org/obo/NCBITaxon_44689> ;
<http://purl.org/dc/elements/1.1/description> "A structured controlled vocabulary of the anatomy of the slime-mould <i>Dictyostelium discoideum</i>." ;
<http://purl.org/dc/elements/1.1/title> "Dictyostelium discoideum anatomy" ;
<http://purl.org/dc/terms/1.1/theme> "anatomy" ;
<http://usefulinc.com/ns/doap#bug-database> "https://github.com/dictyBase/migration-data/issues" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/ddanat.owl" ;
<http://www.w3.org/ns/dcat#contactPoint> _:b62 ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/ddanat.owl> ;
<http://www.w3.org/ns/dcat#distribution> <http://purl.obolibrary.org/obo/ddanat.obo> ;
<http://xmlns.com/foaf/0.1/account> <http://purl.obolibrary.org/obo/dictybase> ;
<http://xmlns.com/foaf/0.1/homepage> <http://dictybase.org/> .
_:b61 <http://obofoundry.github.io/vocabulary/method> "obo2owl" ;
<http://obofoundry.github.io/vocabulary/source_url> "https://raw.githubusercontent.com/dictyBase/migration-data/master/ontologies/dicty_anatomy.obo" .
<http://purl.obolibrary.org/obo/NCBITaxon_44689>
<http://www.w3.org/2000/01/rdf-schema#label> "Dictyostelium discoideum" .
_:b62 <http://www.w3.org/2000/01/rdf-schema#label> "Rex Chisholm" ;
<http://xmlns.com/foaf/0.1/mbox> "[email protected]" .
<http://purl.obolibrary.org/obo/ddanat.owl>
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/ddanat.owl" .
<http://purl.obolibrary.org/obo/ddanat.obo>
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/ddanat.obo" .
<http://purl.obolibrary.org/obo/ddpheno>
<http://obofoundry.github.io/vocabulary/has_build_information> _:b63 ;
<http://purl.obolibrary.org/obo/IAO_0000136> <http://purl.obolibrary.org/obo/NCBITaxon_44689> ;
<http://purl.org/dc/elements/1.1/description> "A structured controlled vocabulary of phenotypes of the slime-mould <i>Dictyostelium discoideum</i>." ;
<http://purl.org/dc/elements/1.1/title> "Dictyostelium discoideum phenotype" ;
<http://purl.org/dc/terms/1.1/theme> "anatomy" ;
<http://www.w3.org/ns/dcat#accessURL> "http://purl.obolibrary.org/obo/ddpheno.owl" ;
<http://www.w3.org/ns/dcat#contactPoint> _:b64 ;