-
Notifications
You must be signed in to change notification settings - Fork 0
/
Fields.tsv
We can make this file beautiful and searchable if this error is corrected: No tabs found in this TSV file in line 0.
8952 lines (8952 loc) · 455 KB
/
Fields.tsv
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/ICEO_0000133
http__//purl.obolibrary.org/obo/ICEO_0000134
http__//www.w3.org/2004/02/skos/core#relatedMatch
http__//purl.obolibrary.org/obo/ICEO_0000135
http__//purl.obolibrary.org/obo/ICEO_0000136
edge_http__//edamontology.org/obsolete_since
lowercase_http__//purl.obolibrary.org/obo/remark
edge_http__//purl.bioontology.org/ontology/HGNC/chromosomal_location
edge_http__//purl.obolibrary.org/obo/TEMP#realized_by
str_http__//purl.obolibrary.org/obo/mod#Source
http__//edamontology.org/repository
whitespace_edge_http__//purl.obolibrary.org/obo/SCDO_0000468
http__//purl.obolibrary.org/obo/OHPI_0000009
lowercase_http__//purl.bioontology.org/ontology/npo#synonym
http__//purl.obolibrary.org/obo/OHPI_0000008
lowercase_http__//purl.org/ccf/creator_first_name
edge_http__//www.geneontology.org/formats/oboInOwl#is_cyclic
lowercase_http__//purl.bioontology.org/ontology/npo#dBXrefID
lowercase_http__//purl.obolibrary.org/obo/fbbt#attributionURL
whitespace_https__//schema.org/source
whitespace_http__//purl.obolibrary.org/MCO_0000118
http__//www.lungmap.net/ontologies/database#display
str_https__//w3id.org/biolink/vocab/denormalized
whitespace_edge_http__//purl.obolibrary.org/obo/OGG_0000000030
whitespace_edge_http__//www.geneontology.org/formats/oboInOwl#consider
whitespace_http__//purl.obolibrary.org/obo/PCL_0010063
edge_http__//www.wurvoc.org/vocabularies/WV/logo
str_http__//purl.org/dc/elements/1.1/rights
edge_http__//www.w3.org/2002/07/owl#incompatibleWith
edge_http__//purl.org/dc/terms/subject
whitespace_http__//www.geneontology.org/formats/oboInOwl#treat-xrefs-as-reverse-genus-differentia
http__//ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#P90
edge_http__//purl.obolibrary.org/obo/in_minimal_requirements_subset
lowercase_http__//purl.obolibrary.org/obo/uberon/core#fma_set_term
edge_http__//purl.obolibrary.org/obo/INO_0000087
http__//ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#P98
http__//ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#P97
edge_tags
str_http__//usefulinc.com/ns/doap#documenter
str_pull_request_added
whitespace_http__//purl.obolibrary.org/obo/OBO_REL_0000034
edge_http__//evs.nci.nih.gov/ftp1/NDF-RT/NDF-RT.owl#Level
whitespace_edge_http__//purl.obolibrary.org/obo/SCDO_0000481
whitespace_edge_http__//purl.obolibrary.org/obo/RO_0002423
str_creator
http__//purl.obolibrary.org/obo/def
whitespace_edge_http__//purl.obolibrary.org/obo/OGG_0000000029
whitespace_http__//purl.obolibrary.org/obo/PCL_0010053
lowercase_http__//www.w3.org/2002/07/owl#disjointWith
whitespace_edge_http__//purl.obolibrary.org/obo/ceph#external_definition
whitespace_http__//purl.obolibrary.org/obo/PCL_0010052
edge_http__//purl.obolibrary.org/obo/OBI_0000295
http__//evs.nci.nih.gov/ftp1/NDF-RT/NDF-RT.owl#NUI
whitespace_http__//purl.obolibrary.org/obo/PCL_0010055
str_http__//www.w3.org/2002/07/owl#backwardCompatibleWith
whitespace_http__//purl.obolibrary.org/obo/PCL_0010054
str_http__//www.biomodels.net/kisao/KISAO#isImplementedIn
whitespace_http__//purl.obolibrary.org/obo/PCL_0010057
whitespace_edge_http__//www.jcvi.org/framework/nsf2_full_mtg#species_source
whitespace_http__//purl.obolibrary.org/obo/PCL_0010056
whitespace_http__//purl.obolibrary.org/obo/PCL_0010059
whitespace_http__//purl.obolibrary.org/obo/PCL_0010058
edge_http__//www.geneontology.org/formats/oboInOwl#remark
http__//xmlns.com/foaf/0.1/homepage
whitespace_http__//purl.obolibrary.org/obo/PCL_0010060
lowercase_http__//www.ebi.ac.uk/efo/definition
whitespace_http__//purl.obolibrary.org/obo/PCL_0010062
str_http__//www.wurvoc.org/vocabularies/WV/illustration
whitespace_http__//purl.obolibrary.org/obo/PCL_0010061
whitespace_edge_http__//purl.obolibrary.org/obo/SCDO_0000486
whitespace_edge_http__//purl.obolibrary.org/obo/SCDO_0000484
edge_http__//purl.org/dc/elements/1.1/contributor
whitespace_edge_http__//purl.obolibrary.org/obo/SCDO_0000482
whitespace_edge_http__//purl.obolibrary.org/obo/OGG_0000000015
whitespace_http__//www.geneontology.org/formats/oboInOwl#?mat-version
whitespace_edge_http__//purl.obolibrary.org/obo/SCDO_0000470
whitespace_http__//www.w3.org/ns/prov#wasRevisionOf
http__//www.geneontology.org/formats/oboInOWL#hasBroadSynonym
whitespace_edge_http__//purl.obolibrary.org/obo/OGG_0000000019
str_http__//purl.obolibrary.org/obo/IAO_0000028
whitespace_edge_http__//purl.obolibrary.org/obo/OGG_0000000017
whitespace_edge_http__//purl.obolibrary.org/obo/OGG_0000000018
whitespace_oboSlims
whitespace_edge_http__//www.ebi.ac.uk/efo/obsoleted_in_version
lowercase_https__//www.wikidata.org/wiki/Property__P1844
edge_http__//www.bioassayontology.org/bao/#submitted_by
https__//www.wikidata.org/wiki/Property__P3938
str_integration_server
lowercase_http__//www.geneontology.org/formats/oboInOwl#data-version
whitespace_edge_http__//purl.obolibrary.org/obo/SCDO_0000479
whitespace_http__//purl.obolibrary.org/obo/PCL_0010051
whitespace_edge_https__//schema.org/volumeNumber
whitespace_edge_http__//purl.obolibrary.org/obo/SCDO_0000472
whitespace_edge_http__//www.wurvoc.org/vocabularies/WV/illustration
lowercase_http__//purl.obolibrary.org/obo/mondo#curated_content_resource
edge_http__//evs.nci.nih.gov/ftp1/NDF-RT/NDF-RT.owl#FDA_UNII
whitespace_edge_http__//www.geneontology.org/formats/oboInOwl#hasHumanReadableId
str_http__//www.geneontology.org/formats/oboInOwl#hasDbXRef
edge_http__//edamontology.org/created_in
https__//schema.org/source
str_http__//purl.org/dc/elements/1.1/issued
edge_http__//purl.obolibrary.org/obo/ICEO_0000338
edge_http__//purl.obolibrary.org/obo/ICEO_0000337
https__//schema.org/inverseOf
edge_http__//purl.obolibrary.org/obo/ICEO_0000339
edge_http__//purl.obolibrary.org/obo/ICEO_0000336
edge_http__//purl.obolibrary.org/obo/ICEO_0000335
str_http__//www.lesfleursdunormal.fr/static/_downloads/owlready_ontology.owl#python_name
whitespace_http__//purl.obolibrary.org/obo/is_metadata_tag
whitespace_numberOfEntities
edge_http__//www.orpha.net/ORDO/Orphanet_C022
edge_http__//purl.obolibrary.org/obo/OBI_0000299
edge_http__//purl.obolibrary.org/obo/ICEO_0000341
edge_http__//purl.obolibrary.org/obo/vo/external/external_byhand.owl#definition_editor
edge_http__//purl.obolibrary.org/obo/ICEO_0000340
edge_http__//purl.obolibrary.org/obo/ICEO_0000342
hasHierarchicalParents
whitespace_http__//purl.obolibrary.org/obo/transitive_over
http__//purl.obolibrary.org/obo/pato#seeAlso
whitespace_edge_http__//schema.org/inverseOf
edge_http__//purl.obolibrary.org/obo/INO_0000036
edge_http__//www.referent-tracking.com/RTS_00000002
http__//www.ebi.ac.uk/efo/PO_definition_citation
edge_http__//www.referent-tracking.com/RTS_00000001
edge_http__//www.orpha.net/ORDO/Orphanet_C055
http__//purl.obolibrary.org/obo/remark
https__//w3id.org/semapv/vocab/crossSpeciesExactMatch
http__//www.geneontology.org/formats/oboInOwl#creation_date
str_http__//purl.obolibrary.org/obo/mondo#curated_content_resource
lowercase_http__//www.w3.org/20000/01/rdf-schema#label
whitespace_edge_http__//purl.obolibrary.org/obo/RO_0002475
https__//www.wikidata.org/wiki/Property__P1323
lowercase_https__//www.wikidata.org/wiki/Property__P1889
edge_http__//purl.org/dc/elements/1.1/rights
str_https__//schema.org/alumniOf
edge_http__//www.w3.org/ns/prov#dm
edge_http__//purl.obolibrary.org/obo/IAO_0100001
edge_https__//www.wikidata.org/wiki/Property__P4229
whitespace_edge_http__//purl.obolibrary.org/obo/date
whitespace_https__//www.wikidata.org/wiki/Property__P2561
whitespace_edge_http__//www.geneontology.org/formats/oboInOWL#hasNarrowSynonym
lowercase_http__//purl.obolibrary.org/obo/FOBI_040233
lowercase_http__//purl.obolibrary.org/obo/FOBI_040232
lowercase_http__//purl.obolibrary.org/obo/FOBI_040235
lowercase_http__//purl.obolibrary.org/obo/FOBI_040237
lowercase_http__//purl.obolibrary.org/obo/FOBI_040236
lowercase_http__//purl.obolibrary.org/obo/FOBI_040238
str_http__//semanticscience.org/resource/example
whitespace_edge_http__//purl.obolibrary.org/obo/MFOEM_000165
whitespace_edge_https__//www.wikidata.org/wiki/Property__P1394
edge_http__//edamontology.org#subset
whitespace_http__//purl.org/dc/terms/date
whitespace_edge_http__//purl.obolibrary.org/obo/SCDO_1000288
str_http__//purl.obolibrary.org/obo/specificities_
whitespace_https__//schema.org/startDate
http__//purl.org/dc/terms/identifier
http__//purl.obolibrary.org/obo/database_cross_reference
whitespace_ontologyIri
edge_http__//semanticscience.org/resource/equivalentTo
whitespace_edge_http__//www.ebi.ac.uk/efo/TADS_definition_citation
str_https__//www.wikidata.org/wiki/Property__P2596
whitespace_http__//n2o.neo/custom/cell_set_label
edge_http__//www.geneontology.org/formats/oboInOwl#hasSynonymType
whitespace_http__//purl.obolibrary.org/MCO_0000190
https__//bio.scai.fraunhofer.de/ontology/epilepsy#fromEpSO
lowercase_numberOfProperties
edge_http__//purl.obolibrary.org/obo/maxAbsorption_
whitespace_edge_http__//purl.obolibrary.org/obo/spacerLength_
whitespace_http__//purl.obolibrary.org/obo/IAO_subset
lowercase_http__//purl.obolibrary.org/obo/OHD_0000360
http__//purl.obolibrary.org/obo/IAO_subset
edge_http__//purl.obolibrary.org/obo/INO_0000006
lowercase_http__//purl.org/ccf/x_scaling
lowercase_http__//purl.org/linguistics/gold/ReflexivePronoun
lowercase_http__//data.bioontology.org/metadata/prefixIRI
http__//griis.ca/GRIIS_comment
whitespace_edge_http__//edamontology.org/is_refactor_candidate
str_https__//www.wikidata.org/wiki/Property__P2561
whitespace_edge_http__//www.ebi.ac.uk/efo/PO_definition_citation
edge_http__//purl.allotrope.org/ontologies/property#AFX_0001166
edge_https__//w3id.org/biolink/vocab/description
http__//purl.obolibrary.org/obo/OMRSE_00002027
http__//purl.obolibrary.org/obo/OMRSE_00002025
whitespace_hierarchicalProperty
http__//purl.obolibrary.org/obo/OMRSE_00002026
str_http__//www.jcvi.org/framework/nsf2_full_mtg#tdc_id
whitespace_edge_http__//purl.org/sig/ont/fma/definition
whitespace_http__//purl.obolibrary.org/obo/gaz#overlapped_by
http__//purl.obolibrary.org/obo/CIDO_0000041
edge_https__//www.wikidata.org/wiki/Property__P486
str_http__//semanticscience.org/ontology/cheminf-core.owl#short_name
edge_http__//purl.obolibrary.org/obo/mod#TermSpec
str_http__//purl.obolibrary.org/obo/OHD_0000273
http__//purl.obolibrary.org/obo/CIDO_0000044
whitespace_http__//purl.obolibrary.org/obo/specificities_
http__//purl.obolibrary.org/obo/IAO_created_by
lowercase_description
whitespace_edge_http__//purl.obolibrary.org/obo/xlmod#minSpacerLength
edge_http__//www.geneontology.org/formats/oboInOwl#created_by
edge_http__//xmlns.com/foaf/0.1/mbox
whitespace_http__//purl.obolibrary.org/obo/oba#not_measured_in_taxon
whitespace_edge_http__//purl.obolibrary.org/obo/OGG_0000000004
whitespace_edge_http__//purl.obolibrary.org/obo/OGG_0000000005
whitespace_edge_http__//purl.obolibrary.org/obo/OGG_0000000008
str_http__//purl.obolibrary.org/obo/IAO_0000039
whitespace_edge_http__//purl.obolibrary.org/obo/OGG_0000000009
whitespace_edge_http__//purl.obolibrary.org/obo/OGG_0000000006
whitespace_edge_http__//evs.nci.nih.gov/ftp1/NDF-RT/NDF-RT.owl#Display_Name
whitespace_edge_http__//purl.obolibrary.org/obo/OGG_0000000007
edge_http__//purl.org/dc/terms/creator
whitespace_http__//purl.org/dc/elements/1.1/abstract
edge_http__//purl.bioontology.org/ontology/HGNC/gene_group
http__//schema.org/contributor
lowercase_https__//www.wikidata.org/wiki/Property__P1813
whitespace_http__//purl.obolibrary.org/obo/ado#CommentOnDefinition
whitespace_edge_http__//www.orpha.net/ORDO/Orphanet_C022
str_http__//edamontology.org/obsolete_since
str_http__//purl.org/ccf/y_translation
whitespace_http__//schema.org/isPartOf
whitespace_https__//www.wikidata.org/wiki/Property__P2596
edge_http__//www.geneontology.org/formats/oboInOwl#http__//purl.obolibrary.org/obo/IAO_0000412
lowercase_http__//purl.obolibrary.org/obo/AISM_0000171
edge_http__//www.geneontology.org/formats/oboInOwl#editor_notes
edge_http__//purl.obolibrary.org/obo/OPMI_0000434
str_http__//purl.obolibrary.org/obo/VO_0005500
edge_https__//bio.scai.fraunhofer.de/ontology/epilepsy#fromEPILONT
whitespace_edge_https__//schema.org/endDate
str_http__//purl.obolibrary.org/obo/MRO_sequence
edge_http__//www.obofoundry.org/ro/ro.owl#part_of
http__//purl.obolibrary.org/obo/secondaryBaseSpecificities_
edge_http__//purl.obolibrary.org/obo/chmo#isDefinedBy
edge_https__//schema.org/pageEnd
whitespace_http__//purl.obolibrary.org/obo/comment
whitespace_http__//www.geneontology.org/formats/oboInOwl#id
https__//schema.org/identifier
whitespace_edge_http__//purl.org/ccf/y_translation
lowercase_http__//purl.org/ccf/ccf_asctb_type
lowercase_http__//www.w3.org/2002/07/owl#equivalentProperty
str_http__//www.geneontology.org/formats/oboInOwl#treat-xrefs-as-is_a
whitespace_base_uri
lowercase_https__//schema.org/issueNumber
whitespace_edge_releases
str_http__//www.geneontology.org/formats/oboInOwl#savedBy
edge_http__//www.w3.org/2002/07/owl#propertyDisjointWith
edge_http__//purl.org/dc/terms/abstract
whitespace_edge_http__//purl.obolibrary.org/obo/TEMP#has_role
edge_http__//purl.obolibrary.org/obo/MRO_0001984
lowercase_http__//purl.obolibrary.org/obo/OOSTT_00000030
edge_http__//purl.obolibrary.org/obo/MRO_0001985
edge_http__//purl.obolibrary.org/obo/MRO_0001986
whitespace_edge_http__//purl.org/dc/elements/1.1/modified
whitespace_http__//purl.obolibrary.org/obo/envo#disconnected_from
whitespace_edge_http__//purl.obolibrary.org/obo/secondarySpecificities_
whitespace_edge_http__//www.orpha.net/ORDO/Orphanet_C017
whitespace_edge_http__//www.orpha.net/ORDO/Orphanet_C016
lowercase_http__//purl.org/ccf/creator_orcid
whitespace_edge_https__//www.wikidata.org/wiki/Property__P2699
http__//purl.obolibrary.org/obo/CIDO_0000009
http__//purl.org/ccf/y_dimension
lowercase_http__//purl.obolibrary.org/obo/COB_based_on
str_http__//www.geneontology.org/formats/oboInOwl#hasOBONamespace
lowercase_in_foundry
lowercase_http__//www.geneontology.org/formats/oboInOWL#xref
edge_http__//purl.obolibrary.org/obo/foaf_depicted_by
https__//schema.org/endDate
lowercase_http__//purl.obolibrary.org/obo/IAO_0000136
whitespace_http__//purl.org/ccf/ccf_is_provisional
edge_http__//purl.org/ccf/x_rotation
edge_http__//purl.obolibrary.org/obo/omp#usage
str_http__//purl.bioontology.org/ontology/npo#DesignNote
whitespace_edge_http__//purl.org/dc/terms/issue
str_http__//n2o.neo/custom/cell_set_additional_aliases
str_http__//www.w3.org/2002/07/owl#disjointWith
whitespace_http__//www.geneontology.org/formats/oboInOwl#treat-xrefs-as-is_a
edge_http__//purl.obolibrary.org/obo/chebi/charge
whitespace_edge_http__//purl.obolibrary.org/obo/BFO_0000050
https__//www.wikidata.org/wiki/Q1823134
lowercase_hasPreferredRoot
edge_http__//purl.obolibrary.org/obo/secondarySpecificities_
lowercase_https__//www.lipidmaps.org/ontology/abbrev
lowercase_http__//purl.org/dc/terms/publisher
http__//purl.obolibrary.org/obo/creation_date
edge_http__//purl.obolibrary.org/obo/OBCS_0000221
lowercase_http__//purl.obolibrary.org/obo/REO_0000140
str_http__//purl.org/dc/elements/1.1/date
lowercase_http__//purl.obolibrary.org/obo/REO_0000144
str_https__//www.wikidata.org/wiki/Property__P3841
edge_http__//ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#A8
edge_http__//ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#A7
edge_http__//ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#A6
http__//purl.obolibrary.org/obo/uberon#dubious_for_taxon
edge_http__//ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#A5
lowercase_http__//purl.obolibrary.org/obo/IAO_0000111
whitespace_edge_http__//www.ontology-of-units-of-measure.org/resource/om-2/LaTeXSymbol
lowercase_http__//purl.obolibrary.org/obo/NCIT_NHC0
http__//purl.obolibrary.org/obo/AfPO_0000089
http__//purl.obolibrary.org/obo/is_metadata_tag
lowercase_http__//purl.obolibrary.org/obo/IAO_0000112
lowercase_http__//purl.obolibrary.org/obo/IAO_0000115
whitespace_edge_http__//purl.obolibrary.org/obo/NCIT_A1
lowercase_http__//purl.obolibrary.org/obo/IAO_0000114
lowercase_http__//purl.obolibrary.org/obo/IAO_0000117
str_http__//www.jcvi.org/framework/nsf2_full_mtg#prefixIRI
whitespace_edge_http__//purl.obolibrary.org/obo/NCIT_A3
whitespace_http__//purl.obolibrary.org/obo/OBI_GSCID_BRC_Field_ID
lowercase_http__//purl.obolibrary.org/obo/IAO_0000116
whitespace_edge_http__//purl.obolibrary.org/obo/NCIT_A2
http__//purl.org/dc/terms/requires
lowercase_http__//purl.obolibrary.org/obo/IAO_0000119
whitespace_edge_http__//purl.obolibrary.org/obo/NCIT_A5
whitespace_http__//purl.obolibrary.org/obo/FOBI_050002
edge_http__//purl.org/dc/terms/coverage
lowercase_http__//purl.obolibrary.org/obo/IAO_0000118
whitespace_edge_http__//purl.obolibrary.org/obo/NCIT_A4
whitespace_http__//purl.obolibrary.org/obo/FOBI_050003
whitespace_edge_http__//purl.obolibrary.org/obo/NCIT_A7
whitespace_http__//purl.obolibrary.org/obo/FOBI_050000
whitespace_http__//purl.obolibrary.org/obo/TEMP#has_role
whitespace_edge_http__//purl.obolibrary.org/obo/NCIT_A6
whitespace_http__//purl.obolibrary.org/obo/FOBI_050001
whitespace_edge_http__//purl.obolibrary.org/obo/NCIT_A9
whitespace_edge_http__//purl.obolibrary.org/obo/NCIT_A8
http__//schema.org/headline
http__//www.w3.org/2000/01/rdf-schema#definition
whitespace_edge_http__//www.geneontology.org/formats/oboInOwl#is_cyclic
edge_http__//purl.org/ccf/file_url
edge_http__//www.ebi.ac.uk/efo/galen_definition_citation
lowercase_http__//purl.obolibrary.org/obo/VO_0003560
http__//purl.org/dc/terms/dateSubmitted
edge_https__//schema.org/address
lowercase_http__//purl.obolibrary.org/obo/IAO_0000125
edge_http__//purl.org/ccf/ccf_asctb_type
http__//purl.obolibrary.org/obo/GENO_0000905
edge_http__//champ-project.org/images/ontology/cao.owl#CAO_000050
edge_http__//www.geneontology.org/formats/oboInOwl#creation_dat
http__//purl.obolibrary.org/obo/VO_0003099
whitespace_http__//www.geneontology.org/formats/oboInOwl#default-namespace
edge_http__//xmlns.com/foaf/0.1/depiction
str_https__//schema.org/contributor
whitespace_reasoner
whitespace_edge_http__//www.orpha.net/ORDO/Orphanet_C055
lowercase_http__//purl.obolibrary.org/obo/VO_0003558
lowercase_http__//purl.obolibrary.org/obo/VO_0003557
whitespace_https__//www.wikidata.org/wiki/Property__P3938
edge_http__//purl.obolibrary.org/obo/AfPO_0000152
whitespace_http__//purl.obolibrary.org/obo/PORO_0000995
edge_http__//purl.bioontology.org/ontology/npo#code
whitespace_layout
whitespace_http__//www.geneontology.org/formats/oboInOwl#is_metadata_tag
edge_http__//purl.unep.org/sdg/SDGIO_00000064
edge_http__//purl.org/ccf/file_format
str_http__//purl.obolibrary.org/obo/SCDO_0001033
whitespace_edge_http__//www.w3.org/2000/01/rdf-schema#range
http__//purl.org/dc/terms/alternative
whitespace_http__//purl.obolibrary.org/obo/mod#Source
whitespace_http__//purl.obolibrary.org/obo/ado#from_Alzheimer_Ontology
edge_http__//www.ebi.ac.uk/efo/EFO_URI
whitespace_http__//www.w3.org/2003/g/data-view#namespaceTransformation
edge_https__//www.wikidata.org/wiki/Property__P461
whitespace_edge_http__//purl.obolibrary.org/obo/chebi/smiles
whitespace_edge_ontology_purl
whitespace_http__//www.ontology-of-units-of-measure.org/resource/om-2/alternativeLabel
edge_http__//purl.obolibrary.org/obo/IAO_0000700
whitespace_http__//purl.obolibrary.org/obo/format-version
lowercase_http__//purl.obolibrary.org/obo/mod#FormalCharge
lowercase_http__//purl.obolibrary.org/obo/GENEPIO_0000162
whitespace_http__//purl.org/dc/terms/isReplacedBy
lowercase_oio__hasOBONamespace
lowercase_http__//purl.org/dc/elements/1.1/description
whitespace_edge_http__//www.ebi.ac.uk/efo/ArrayExpress_label
http__//purl.org/dc/terms/isPartOf
edge_http__//www.geneontology.org/formats/oboInOwl#treat-xrefs-as-reverse-genus-differentia
http__//purl.obolibrary.org/obo/IAO_0000589
whitespace_edge_http__//purl.obolibrary.org/obo/OMRSE_00002026
whitespace_edge_http__//purl.obolibrary.org/obo/OMRSE_00002025
whitespace_edge_http__//purl.obolibrary.org/obo/OMRSE_00002027
whitespace_edge_http__//www.lesfleursdunormal.fr/static/_downloads/owlready_ontology.owl#python_name
whitespace_http__//www.ebi.ac.uk/efo/Wikipedia_definition_citation
edge_http__//semanticscience.org/resource/broaderThan
lowercase_http__//purl.obolibrary.org/obo/ceph#external_definition
edge_http__//schema.org/assesses
lowercase_http__//www.w3.org/ns/prov#sharesDefinitionWith
edge_http__//purl.org/dc/terms/publisher
str_http__//www.w3.org/2002/07/owl#propertyChainAxiom
whitespace_http__//evs.nci.nih.gov/ftp1/NDF-RT/NDF-RT.owl#MeSH_Definition
http__//purl.obolibrary.org/obo/IAO_0000598
whitespace_https__//www.wikidata.org/wiki/Property__P1323
lowercase_http__//purl.bioontology.org/ontology/HGNC/prev_symbol
whitespace_http__//purl.obolibrary.org/obo/core#provenance_notes
edge_http__//usefulinc.com/ns/doap#bug-database
str_http__//purl.obolibrary.org/obo/OHD_0000234
edge_http__//purl.org/dc/elements/1.1/issued
str_http__//www.w3.org/2004/02/skos/core#closeMatch
http__//purl.org/ccf/x_translation
whitespace_edge_https__//www.wikidata.org/wiki/Property__P1402
whitespace_http__//www.w3.org/2002/07/owl#inverseOf
lowercase_http__//www.geneontology.org/formats/oboInOwl#hasScope
edge_http__//purl.obolibrary.org/obo/dcterms_creator
http__//www.ebi.ac.uk/efo/PATO_definition_citation
whitespace_edge_http__//purl.obolibrary.org/obo/CLO_0037192
edge_http__//edamontology.org/deprecation_comment
edge_http__//purl.org/dc/elements/1.1/subject
edge_http__//purl.obolibrary.org/obo/mmusdv#end_dpb
http__//purl.obolibrary.org/obo/TEMP#preceded_by
edge_imported
edge_http__//purl.obolibrary.org/obo/mmusdv#end_dpc
str_http__//purl.org/ccf/placement_for
lowercase_http__//purl.obolibrary.org/obo/ICO_0000321
edge_https__//schema.org/editor
lowercase_http__//purl.obolibrary.org/obo/monoIsotopicMass_
http__//purl.obolibrary.org/obo/SCDO_1000518
http__//purl.obolibrary.org/obo/SCDO_1000517
str_http__//www.geneontology.org/formats/oboInOwl#hasHumanReadableId
edge_http__//purl.org/dc/terms/hasVersion
whitespace_http__//purl.obolibrary.org/obo/is_reflexive
str_definition_property
whitespace_edge_http__//purl.org/dc/elements/1.1/subject
str_http__//purl.obolibrary.org/obo/OMRSE_00002027
http__//purl.obolibrary.org/obo/upa#uniprot_super_pathway
http__//purl.obolibrary.org/obo/SCDO_1000519
http__//purl.obolibrary.org/obo/OGSF_0001031
edge_http__//schema.org/image
http__//purl.obolibrary.org/obo/OGI.owl#isAdjacentBefore
whitespace_edge_http__//purl.obolibrary.org/obo/vo/external/external_byhand.owl#definition_citation
edge_http__//purl.org/dc/terms/description
whitespace_edge_pull_request_added
whitespace_http__//purl.obolibrary.org/obo/VO_0010151
whitespace_http__//purl.obolibrary.org/obo/VO_0010152
exportsTo
str_http__//purl.obolibrary.org/obo/OMRSE_00002025
lowercase_http__//semanticscience.org/resource/example
str_http__//purl.obolibrary.org/obo/OMRSE_00002026
whitespace_edge_http__//purl.obolibrary.org/MCO_0000382
http__//purl.obolibrary.org/obo/MFOMD_0000014
whitespace_edge_http__//scipion.i2pc.es/ontology/CRYOEM_0000114
whitespace_edge_http__//scipion.i2pc.es/ontology/CRYOEM_0000115
whitespace_edge_http__//scipion.i2pc.es/ontology/CRYOEM_0000112
whitespace_edge_http__//scipion.i2pc.es/ontology/CRYOEM_0000113
str_http__//evs.nci.nih.gov/ftp1/NDF-RT/NDF-RT.owl#UMLS_CUI
whitespace_http__//www.geneontology.org/formats/oboInOwl#consider
edge_http__//purl.org/dc/terms/created
http__//purl.org/dc/elements/1.1/conformsTo
str_http__//purl.obolibrary.org/obo/CEPH_0001032
whitespace_edge_http__//scipion.i2pc.es/ontology/CRYOEM_0000118
str_http__//purl.obolibrary.org/obo/FOBI_040238
whitespace_edge_http__//scipion.i2pc.es/ontology/CRYOEM_0000119
whitespace_http__//n2o.neo/custom/cell_set_additional_aliases
str_http__//purl.obolibrary.org/obo/FOBI_040237
whitespace_edge_http__//scipion.i2pc.es/ontology/CRYOEM_0000116
str_http__//purl.obolibrary.org/obo/FOBI_040236
whitespace_edge_http__//scipion.i2pc.es/ontology/CRYOEM_0000117
str_http__//purl.obolibrary.org/obo/FOBI_040235
str_http__//purl.obolibrary.org/obo/FOBI_040233
edge_https__//w3id.org/biolink/vocab/opposite_of
str_http__//purl.obolibrary.org/obo/FOBI_040232
http__//purl.obolibrary.org/obo/vto#has_rank
http__//purl.obolibrary.org/obo/ICEO_0000063
whitespace_edge_canonical
str_http__//purl.obolibrary.org/obo/IAO_created_by
http__//purl.obolibrary.org/obo/vo/external/external_byhand.owl#bioportal_provenance
whitespace_edge_http__//www.w3.org/2004/02/skos/core#closeMatch
http__//purl.obolibrary.org/obo/ICEO_0000062
https__//www.wikidata.org/wiki/Property__P2699
edge_http__//purl.obolibrary.org/obo/RO_0002423
lowercase_http__//purl.obolibrary.org/obo/doubletDeltaMass_
whitespace_edge_http__//purl.obolibrary.org/obo/MRO_0036980
edge_http__//purl.obolibrary.org/obo/OBI_0000312
whitespace_http__//purl.org/dc/terms/references
whitespace_edge_http__//purl.obolibrary.org/obo/envo#disconnected_from
whitespace_http__//www.jcvi.org/framework/nsf2_full_mtg#part_of
http__//purl.obolibrary.org/obo/MFOMD_0000037
whitespace_edge_is_obsolete
edge_creator
http__//purl.obolibrary.org/obo/OGSF_0001008
whitespace_http__//www.ebi.ac.uk/efo/creator
lowercase_http__//schema.org/inverseOf
whitespace_edge_http__//purl.obolibrary.org/obo/hsapdv#start_mpb
https__//www.wikidata.org/wiki/Property__P1394
lowercase_http__//purl.obolibrary.org/obo/OBO_REL#_has_role
whitespace_edge_http__//purl.obolibrary.org/obo/core#provenance_notes
whitespace_edge_http__//purl.org/dc/elements/1.1/creator
http__//purl.obolibrary.org/obo/MRO_accession
whitespace_http__//semanticscience.org/resource/equivalentTo
http__//purl.obolibrary.org/obo/specificities_
whitespace_edge_http__//purl.org/vocab/vann/preferredNamespaceUri
whitespace_http__//purl.obolibrary.org/obo/IAO_0000424
http__//www.ontology-of-units-of-measure.org/resource/om-2/commonlyHasUnit
whitespace_http__//purl.obolibrary.org/obo/IAO_0000425
whitespace_http__//purl.obolibrary.org/obo/IAO_0000426
whitespace_http__//purl.obolibrary.org/obo/IAO_0000427
http__//purl.obolibrary.org/obo/MFOMD_0000069
whitespace_http__//purl.obolibrary.org/obo/mmusdv#start_dpf
lowercase_http__//purl.obolibrary.org/obo/mondo#should_conform_to
whitespace_http__//www.w3.org/ns/prov#editorialNote
lowercase_http__//purl.unep.org/sdg/SDGIO_00010069
edge_http__//purl.org/linguistics/gold/PersonalPronoun
whitespace_edge_http__//purl.org/dc/terms/relation
whitespace_edge_https__//schema.org/datePublished
http__//purl.obolibrary.org/obo/CID_Fragment_
whitespace_http__//purl.obolibrary.org/obo/mmusdv#start_dpc
whitespace_http__//purl.obolibrary.org/obo/mmusdv#start_dpb
whitespace_http__//purl.obolibrary.org/obo/vbo#hasdomesticationstatus
edge_http__//purl.obolibrary.org/obo/RO_0002475
str_http__//scipion.i2pc.es/ontology/CRYOEM_0000113
str_http__//scipion.i2pc.es/ontology/CRYOEM_0000112
str_http__//purl.org/dc/terms/relation
http__//edamontology.org/isdebtag
http__//purl.obolibrary.org/obo/OGSF_0001032
whitespace_edge_http__//purl.unep.org/sdg/SDGIO_00000064
edge_http__//purl.org/dc/elements/1.1/modified
whitespace_http__//purl.obolibrary.org/obo/Wikipedia#_Gestational_age
whitespace_importsFrom
http__//www.w3.org/2000/01/rdf-schema#subClassOf
http__//purl.obolibrary.org/obo/ICEO_0000024
lowercase_http__//edamontology.org/comment_handle
str_http__//scipion.i2pc.es/ontology/CRYOEM_0000120
http__//purl.obolibrary.org/obo/ICEO_0000026
lowercase_http__//www.jcvi.org/framework/nsf2_full_mtg#has_soma_location_in
whitespace_http__//purl.obolibrary.org/obo/chmo#non-mining_synonym
edge_http__//www.w3.org/2000/01/rdf-schema#subClassOf
whitespace_http__//purl.obolibrary.org/obo/VSO#IAO_0000412
whitespace_edge_https__//schema.org/nationality
whitespace_http__//purl.obolibrary.org/obo/IAO_0000412
edge_https__//schema.org/supersededBy
str_http__//scipion.i2pc.es/ontology/CRYOEM_0000115
whitespace_edge_http__//purl.obolibrary.org/obo/IAO_created_by
str_http__//scipion.i2pc.es/ontology/CRYOEM_0000114
str_http__//scipion.i2pc.es/ontology/CRYOEM_0000117
str_http__//scipion.i2pc.es/ontology/CRYOEM_0000116
str_http__//scipion.i2pc.es/ontology/CRYOEM_0000119
whitespace_edge_http__//www.geneontology.org/formats/oboInOwl#?format-version
str_http__//scipion.i2pc.es/ontology/CRYOEM_0000118
str_http__//purl.obolibrary.org/obo/IAO_0000119
str_http__//purl.obolibrary.org/obo/IAO_0000118
str_http__//purl.obolibrary.org/obo/IAO_0000117
str_http__//purl.obolibrary.org/obo/IAO_0000116
str_http__//purl.obolibrary.org/obo/IAO_0000115
str_http__//purl.obolibrary.org/obo/IAO_0000114
whitespace_http__//purl.obolibrary.org/obo/OGG_0000000008
whitespace_https__//www.wikidata.org/wiki/Property__P1190
str_http__//purl.obolibrary.org/obo/IAO_0000112
whitespace_http__//purl.obolibrary.org/obo/OGG_0000000009
str_http__//purl.obolibrary.org/obo/IAO_0000111
edge_https__//schema.org/birthDate
definitionProperty
whitespace_http__//purl.obolibrary.org/obo/OGG_0000000015
whitespace_http__//purl.org/dc/terms/title
whitespace_http__//purl.obolibrary.org/obo/INO_0000006
whitespace_http__//purl.obolibrary.org/obo/OGG_0000000017
whitespace_http__//purl.obolibrary.org/obo/OGG_0000000018
http__//ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#required
lowercase_language
edge_http__//www.w3.org/ns/prov#n
lowercase_http__//griis.ca/GRIIS_comment
whitespace_edge_http__//purl.obolibrary.org/obo/SCDO_0000340
whitespace_type
edge_http__//purl.obolibrary.org/obo/TEMP#precedes
whitespace_http__//purl.obolibrary.org/obo/mmusdv#has_stage_marker
edge_http__//www.geneontology.org/formats/oboInOwl#comment
lowercase_http__//purl.org/dc/terms/abstract
str_http__//purl.obolibrary.org/obo/IAO_0000125
str_http__//purl.obolibrary.org/obo/waveLengthRange_
whitespace_http__//purl.obolibrary.org/obo/OGG_0000000019
whitespace_edge_http__//purl.enanomapper.net/onto/internal/npo-ext.owl#code
lowercase_https__//www.wikidata.org/wiki/Property__P1748
http__//purl.obolibrary.org/obo/chmo#isDefinedBy
lowercase_http__//www.w3.org/2000/01/rdf-schema#domain
lowercase_https__//w3id.org/biolink/vocab/denormalized
whitespace_http__//purl.obolibrary.org/obo/OGG_0000000029
edge_activity_status
lowercase_http__//purl.obolibrary.org#Definition
str_http__//purl.obolibrary.org/obo/IAO_0000136
lowercase_https__//bio.scai.fraunhofer.de/ontology/epilepsy#fromESSO
str_https__//schema.org/pageEnd
lowercase_http__//purl.obolibrary.org/obo/hsapdv#start_dpf
whitespace_http__//purl.obolibrary.org/obo/creation_date
whitespace_http__//purl.obolibrary.org/obo/IAO_0000600
edge_http__//purl.obolibrary.org/obo/VO_1000000
whitespace_http__//purl.obolibrary.org/obo/IAO_0000601
edge_http__//purl.obolibrary.org/obo/VO_1000001
whitespace_edge_http__//purl.obolibrary.org/obo/SCDO_0000363
whitespace_http__//purl.obolibrary.org/obo/IAO_0000602
whitespace_http__//purl.obolibrary.org/obo/OGG_0000000030
http__//usefulinc.com/ns/doap#homepage
whitespace_http__//purl.obolibrary.org/obo/IAO_0000604
edge_http__//purl.obolibrary.org/obo/mco.owl/MCO_0000382
http__//purl.obolibrary.org/obo/ICEO_0000222
edge_http__//purl.obolibrary.org/obo/ado#from_Alzheimer_Ontology
https__//www.wikidata.org/wiki/Property__P1402
lowercase_relatedTo
whitespace_http__//purl.obolibrary.org/obo/INO_0000036
lowercase_http__//purl.obolibrary.org/obo/hsapdv#has_stage_marker
whitespace_http__//www.lungmap.net/ontologies/database#definition
lowercase_http__//ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#required
http__//purl.obolibrary.org/obo/tto#has_rank
whitespace_edge_http__//purl.obolibrary.org/obo/RO_0002560
lowercase_http__//purl.obolibrary.org/obo/creation_date
lowercase_http__//www.w3.org/2004/02/skos/core#narrowMatch
whitespace_edge_http__//purl.obolibrary.org/obo/RO_0002561
http__//www.lungmap.net/ontologies/database#has_domain
whitespace_https__//schema.org/nationality
whitespace_edge_http__//purl.obolibrary.org/obo/monoIsotopicMass_
str_hasPreferredRoot
lowercase_http__//www.w3.org/2004/02/skos/core#broadMatch
whitespace_http__//purl.org/ccf/has_object_reference
str_http__//purl.org/ccf/ccf_biomarker_type
whitespace_edge_http__//purl.obolibrary.org/obo/RO_0002575
http__//purl.obolibrary.org/obo/OPMI_0000364
lowercase_http__//www.ebi.ac.uk/efo/PMID_definition_citation
whitespace_edge_http__//scipion.i2pc.es/ontology/CRYOEM_0000120
str_http__//purl.obolibrary.org/obo/MFOMD_0000069
whitespace_edge_http__//ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#P108
lowercase_http__//www.geneontology.org/formats/oboInOwl#default-namespace
whitespace_edge_http__//ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#P107
whitespace_edge_http__//ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#P106
http__//purl.obolibrary.org/obo/format-version
str_https__//bio.scai.fraunhofer.de/ontology/epilepsy#fromILAE
whitespace_edge_http__//purl.obolibrary.org/obo/RO_0002579
lowercase_https__//schema.org/pageStart
whitespace_edge_http__//purl.obolibrary.org/obo/chmo#isDefinedBy
whitespace_http__//www.geneontology.org/formats/oboInOwl#hasAlternativeId
edge_http__//semanticscience.org/resource/hasSynonym
str_http__//www.geneontology.org/formats/oboInOwl#http__//purl.obolibrary.org/obo/IAO_0000412
whitespace_edge_http__//purl.obolibrary.org/obo/RO_0002581
whitespace_edge_http__//www.lungmap.net/ontologies/database#has_abbreviation
whitespace_http__//www.w3.org/2002/07/owl#incompatibleWith
edge_http__//semanticscience.org/resource/CHEMINF_000412
whitespace_http__//purl.obolibrary.org/obo/CID_Fragment_
edge_http__//www.jcvi.org/framework/nsf2_full_mtg#species_id
edge_http__//purl.org/ccf/creator_orcid
str_is_obsolete
http__//www.geneontology.org/formats/oboInOwl#mat-version
str_http__//purl.obolibrary.org/obo/VO_0010151
str_http__//purl.obolibrary.org/obo/VO_0010152
whitespace_edge_http__//evs.nci.nih.gov/ftp1/NDF-RT/NDF-RT.owl#MeSH_Definition
lowercase_http__//purl.obolibrary.org/obo/hsapdv#editor_notes
edge_http__//edamontology.org/is_deprecation_candidate
str_http__//purl.obolibrary.org/obo/NCIT_required
whitespace_http__//purl.obolibrary.org/obo/MRO_accession
http__//www.ebi.ac.uk/efo/gwas_trait
http__//www.w3.org/2000/01/rdf-schema#isDefinedBy
edge_http__//www.ebi.ac.uk/efo/XAO_definition_citation
whitespace_http__//purl.obolibrary.org/obo/AERO_0000106
http__//purl.obolibrary.org/obo/hsapdv#end_ypb
str_http__//www.geneontology.org/formats/oboInOwl#hasOBOFormatVersion
lowercase_https__//w3id.org/biolink/vocab/canonical_predicate
http__//purl.obolibrary.org/obo/oba#measured_in_taxon
edge_http__//www.ebi.ac.uk/efo/NIFSTD_definition_citation
lowercase_http__//evs.nci.nih.gov/ftp1/NDF-RT/NDF-RT.owl#UMLS_CUI
edge_http__//purl.obolibrary.org/obo/transitive_over
edge_http__//purl.obolibrary.org/obo/uberon/core#fma_set_term
http__//www.ebi.ac.uk/efo/KUPO_definition_citation
lowercase_http__//purl.obolibrary.org/obo/MFOMD_0000069
lowercase_http__//www.ontology-of-units-of-measure.org/resource/om-2/hasDimension
edge_http__//purl.org/sig/ont/fma/synonym
str_http__//purl.obolibrary.org/obo/NCIT_NHC0
edge_http__//purl.obolibrary.org/obo/VSO#IAO_0000412
http__//purl.obolibrary.org/obo/VO_0003162
http__//purl.obolibrary.org/obo/VO_0003161
http__//purl.obolibrary.org/obo/VO_0003160
str_http__//purl.allotrope.org/ontologies/property#AFX_0002798
str_https__//bio.scai.fraunhofer.de/ontology/epilepsy#CommentOnDefinition
whitespace_edge_http__//purl.obolibrary.org/obo/specificities_
str_http__//purl.allotrope.org/ontologies/property#AFX_0002796
whitespace_edge_http__//semanticscience.org/resource/hasSynonym
whitespace_http__//purl.org/ccf/file_name
http__//purl.obolibrary.org/obo/AfPO_0000152
whitespace_http__//purl.obolibrary.org/obo/CLAO_0001602
http__//www.geneontology.org/formats/oboInOwl#editor_notes
http__//purl.obolibrary.org/obo/VO_0003159
http__//purl.obolibrary.org/obo/VO_0003158
edge_domain
lowercase_http__//purl.obolibrary.org/obo/mod#DiffAvg
whitespace_http__//purl.obolibrary.org/obo/spacerLength_
whitespace_http__//www.wurvoc.org/vocabularies/WV/logo
http__//www.w3.org/2004/02/skos/core#prefLabel
lowercase_http__//www.geneontology.org/formats/oboInOwl#created_by
whitespace_edge_http__//usefulinc.com/ns/doap#revision
whitespace_edge_https__//www.wikidata.org/wiki/Property__P2596
lowercase_exportsTo
whitespace_http__//purl.obolibrary.org/obo/AISM_0000171
str_https__//www.wikidata.org/wiki/Property__P1149
str_http__//www.ontology-of-units-of-measure.org/resource/om-2/symbol
http__//www.geneontology.org/formats/oboInOwl#inSubset
http__//edamontology.org/next_id
http__//purl.obolibrary.org/obo/VO_0003147
http__//purl.obolibrary.org/obo/VO_0003146
lowercase_http__//purl.org/linguistics/gold/PossessivePronoun
edge_https__//schema.org/image
whitespace_edge_http__//ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#P175
lowercase_http__//purl.obolibrary.org/obo/is_reflexive
str_http__//purl.obolibrary.org/obo/OAE_0001849
whitespace_http__//usefulinc.com/ns/doap#release
str_https__//swisslipids.org/rdf/SLM_rankPreference
edge_http__//schema.org/headline
edge_http__//purl.org/ccf/y_rotation
lowercase_https__//www.wikidata.org/wiki/Property__P6572
edge_http__//www.w3.org/2003/g/data-view#namespaceTransformation
http__//purl.obolibrary.org/obo/TEMP#realized_by
str_http__//www.geneontology.org/formats/oboInOwl#NamespaceIdRule
uri
lowercase_http__//edamontology.org/created_in
whitespace_http__//purl.obolibrary.org/obo/VO_0005438
edge_http__//purl.obolibrary.org/obo/hsapdv#end_mpb
str_http__//edamontology.org/regex
edge_https__//bio.scai.fraunhofer.de/ontology/epilepsy#fromILAE
whitespace_edge_documentation
edge_http__//purl.obolibrary.org/obo/OCCO_00000117
edge_http__//purl.obolibrary.org/obo/OCCO_00000116
http__//purl.org/ccf/organ_side
edge_http__//purl.obolibrary.org/obo/UBPROP_0000007
edge_http__//purl.obolibrary.org/obo/UBPROP_0000008
edge_http__//purl.obolibrary.org/obo/UBPROP_0000009
edge_http__//purl.obolibrary.org/obo/UBPROP_0000003
edge_http__//purl.obolibrary.org/obo/UBPROP_0000004
whitespace_edge_synonym_property
edge_http__//purl.obolibrary.org/obo/UBPROP_0000005
whitespace_http__//purl.obolibrary.org/obo/uberon#sexually_homologous_to
edge_http__//purl.obolibrary.org/obo/UBPROP_0000006
edge_http__//purl.obolibrary.org/obo/UBPROP_0000001
edge_http__//purl.obolibrary.org/obo/UBPROP_0000002
http__//purl.obolibrary.org/obo/fbcv#attributionURL
whitespace_https__//www.wikidata.org/wiki/Property__P1149
whitespace_edge_https__//www.wikidata.org/wiki/Property__P2561
edge_http__//www.ontology-of-units-of-measure.org/resource/om-2/LaTeXCommand
str_http__//edamontology.org/is_refactor_candidate
lowercase_http__//purl.obolibrary.org/obo/MFOMD_0000014
lowercase_issue_requested
str_https__//www.wikidata.org/wiki/Property__P1190
http__//purl.obolibrary.org/obo/createdBy
edge_http__//purl.obolibrary.org/obo/UBPROP_0000014
edge_http__//purl.obolibrary.org/obo/UBPROP_0000015
whitespace_http__//purl.obolibrary.org/obo/vbo#breed_recognition_status
edge_http__//purl.obolibrary.org/obo/UBPROP_0000010
edge_http__//purl.obolibrary.org/obo/UBPROP_0000011
str_https__//schema.org/pagination
edge_http__//purl.obolibrary.org/obo/UBPROP_0000012
http__//purl.obolibrary.org/obo/VO_0003198
str_http__//schema.org/assesses
edge_http__//purl.obolibrary.org/obo/UBPROP_0000013
lowercase_http__//ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#A8
whitespace_http__//edamontology.org/next_id
lowercase_http__//ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#A7
lowercase_http__//ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#A6
lowercase_http__//ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#A5
edge_http__//purl.enanomapper.net/onto/ENM_8000222
http__//purl.obolibrary.org/obo/created_by
whitespace_replaced_by
whitespace_http__//purl.obolibrary.org/obo/created_by
http__//www.w3.org/2002/07/owl#differentFrom
whitespace_edge_http__//purl.obolibrary.org/obo/oba#not_measured_in_taxon
str_http__//purl.obolibrary.org/obo/mondo#should_conform_to
whitespace_edge_description
whitespace_http__//purl.obolibrary.org/obo/xlmod#minSpacerLength
lowercase_http__//purl.obolibrary.org/obo/ncbitaxon#has_rank
whitespace_edge_http__//usefulinc.com/ns/doap#bug-database
edge_http__//purl.obolibrary.org/obo/OHMI_0000031
whitespace_edge_http__//purl.org/sig/ont/fma/FMAID
whitespace_edge_http__//evs.nci.nih.gov/ftp1/NDF-RT/NDF-RT.owl#Status
whitespace_edge_isPreferredRoot
edge_http__//www.w3.org/2004/02/skos/core#example
lowercase_http__//purl.obolibrary.org/obo/MFOMD_0000037
whitespace_edge_http__//purl.obolibrary.org/obo/TEMP#realized_by
http__//www.geneontology.org/formats/oboInOwl#is_metadata_tag
whitespace_edge_http__//purl.obolibrary.org/obo/po#reference
lowercase_http__//purl.org/vocab/vann/preferredNamespaceUri
whitespace_edge_http__//www.w3.org/2004/02/skos/core#editorialNote
str_http__//purl.obolibrary.org/obo/mmusdv#start_mpb
whitespace_http__//purl.obolibrary.org/obo/OGG_0000000004
edge_https__//www.wikidata.org/wiki/Property__P3095
http__//www.ebi.ac.uk/efo/obsoleted_in_version
whitespace_http__//purl.obolibrary.org/obo/OGG_0000000005
http__//www.bioassayontology.org/bao/#submitted_by
whitespace_http__//purl.obolibrary.org/obo/OGG_0000000006
whitespace_http__//purl.obolibrary.org/obo/OGG_0000000007
edge_http__//purl.obolibrary.org/obo/baseSpecificities_
whitespace_edge_http__//www.ebi.ac.uk/efo/MESH_definition_citation
is_foundry
str_http__//n2o.neo/custom/cell_set_label
str_synonymProperty
whitespace_http__//purl.obolibrary.org/obo/VO_0005500
edge_http__//purl.obolibrary.org/obo/NCIT_P175
edge_http__//purl.obolibrary.org/obo/SCDO_1000519
lowercase_http__//schema.org/assesses
whitespace_http__//www.co-ode.org/patterns#createdBy
edge_http__//purl.obolibrary.org/obo/SCDO_1000517
edge_http__//purl.obolibrary.org/obo/SCDO_1000518
http__//purl.obolibrary.org/obo/IAO_0010000
lowercase_http__//www.jcvi.org/framework/nsf2_full_mtg#part_of
edge_http__//purl.obolibrary.org/obo/NCIT_P171
lowercase_http__//purl.org/dc/terms/description
whitespace_edge_http__//purl.obolibrary.org/obo/BFO_0000179
whitespace_http__//www.w3.org/2004/02/skos/core#definition
str_http__//rs.tdwg.org/dwc/terms/attributes/abcdEquivalence
whitespace_edge_http__//www.lungmap.net/ontologies/database#definition
http__//edamontology.org/deprecation_comment
lowercase_http__//purl.obolibrary.org/obo/IAO_0000028
whitespace_edge_http__//purl.obolibrary.org/obo/uberon/core#fma_set_term
lowercase_https__//schema.org/pageEnd
lowercase_http__//purl.org/dc/elements/1.1/isReferencedBy
whitespace_edge_http__//purl.obolibrary.org/obo/Wikipedia#_Gestational_age
whitespace_edge_http__//purl.obolibrary.org/obo/CLO_0037294
whitespace_http__//purl.org/dc/terms/source
str_http__//purl.org/ccf/ccf_located_in
whitespace_edge_http__//purl.obolibrary.org/obo/CLO_0037290
lowercase_http__//purl.obolibrary.org/obo/NCIT_required
http__//purl.obolibrary.org/obo/INO_0000036
whitespace_http__//ensembl.org/glossary/property/documentation
edge_http__//www.geneontology.org/formats/oboInOwl#shorthand
edge_preferredPrefix
whitespace_edge_http__//www.geneontology.org/formats/oboInOwl#seeAlso
http__//purl.obolibrary.org/obo/OBO_REL_influences
whitespace_edge_http__//www.w3.org/ns/prov#inverse
lowercase_http__//purl.org/sig/ont/fma/non-English_equivalent
whitespace_edge_http__//purl.org/dc/elements/1.1/source
whitespace_edge_http__//purl.obolibrary.org/obo/BFO_0000180
str_http__//schema.org/codeRepository
lowercase_http__//purl.obolibrary.org/obo/fypo#usage
releases
whitespace_edge_https__//www.wikidata.org/wiki/Property__P1323
whitespace_http__//purl.obolibrary.org/obo/MRO_0001985
whitespace_http__//purl.obolibrary.org/obo/MRO_0001986
whitespace_http__//www.w3.org/20000/01/rdf-schema#label
whitespace_edge_http__//purl.obolibrary.org/obo/CLO_0037275
whitespace_http__//purl.org/dc/elements/1.1/source
lowercase_http__//evs.nci.nih.gov/ftp1/NDF-RT/NDF-RT.owl#code
http__//www.geneontology.org/formats/oboInOWL#hasExactSynonym
edge_http__//purl.obolibrary.org/obo/NCIT_P167
whitespace_http__//purl.obolibrary.org/obo/MRO_0001984
edge_https__//www.wikidata.org/wiki/Property__P591
lowercase_https__//www.wikidata.org/wiki/Property__P5331
edge_https__//www.wikidata.org/wiki/Property__P594
whitespace_edge_http__//purl.obolibrary.org/obo/is_symmetric
str_http__//purl.obolibrary.org/obo/AISM_0000171
whitespace_synonymProperty
lowercase_http__//purl.obolibrary.org/obo/chmo#non-mining_synonym
lowercase_http__//purl.org/dc/terms/alternative
str_http__//purl.obolibrary.org/obo/mondo#excluded_subClassOf
whitespace_http__//www.lesfleursdunormal.fr/static/_downloads/owlready_ontology.owl#python_name
edge_http__//purl.obolibrary.org/obo/AfPO_0000089
whitespace_mailing_list
edge_http__//purl.obolibrary.org/obo/PCL_0010051
http__//edamontology.org/comment_handle
http__//purl.org/ccf/z_scaling
edge_http__//purl.obolibrary.org/obo/PCL_0010053
str_http__//purl.obolibrary.org/obo/mod#DiffMono
edge_http__//purl.obolibrary.org/obo/PCL_0010052
edge_http__//purl.obolibrary.org/obo/PCL_0010055
edge_http__//purl.obolibrary.org/obo/PCL_0010054
str_http__//www.bioassayontology.org/bao#BAO_0002666
edge_http__//purl.obolibrary.org/obo/PCL_0010057
edge_http__//purl.obolibrary.org/obo/PCL_0010056
str_hasDirectChildren
edge_http__//purl.obolibrary.org/obo/PCL_0010059
lowercase_http__//usefulinc.com/ns/doap#wiki
lowercase_numberOfEntities
whitespace_http__//purl.obolibrary.org/obo/SCDO_0001335
whitespace_https__//www.wikidata.org/wiki/Property__P3841
edge_http__//purl.obolibrary.org/obo/PCL_0010058
http__//purl.obolibrary.org/obo/INO_0000006
http__//purl.allotrope.org/ontologies/property#AFX_0001166
lowercase_http__//purl.obolibrary.org/obo/MRO_sequence
lowercase_http__//purl.obolibrary.org/obo/mmusdv#start_wpb
whitespace_edge_http__//purl.org/ccf/representation_of
http__//purl.obolibrary.org/obo/OBI_0000295
lowercase_http__//semanticscience.org/resource/SIO_000558
http__//purl.obolibrary.org/obo/namespace
edge_http__//purl.obolibrary.org/obo/PCL_0010060
edge_http__//purl.obolibrary.org/obo/gaz#overlapped_by
edge_http__//purl.obolibrary.org/obo/PCL_0010062
edge_http__//purl.obolibrary.org/obo/PCL_0010061
edge_http__//purl.obolibrary.org/obo/NCIT_P108
http__//purl.obolibrary.org/obo/uberon#sexually_homologous_to
edge_https__//www.wikidata.org/wiki/Property__P571
edge_http__//purl.obolibrary.org/obo/SCDO_0000929
edge_https__//www.wikidata.org/wiki/Property__P575
lowercase_http__//purl.obolibrary.org/obo/IAO_0000039
http__//schema.org/assesses
http__//purl.obolibrary.org/obo/T4FS_0000564
http__//purl.obolibrary.org/obo/T4FS_0000565
http__//purl.bioontology.org/ontology/HGNC/symbol
http__//purl.org/ccf/has_placement
str_http__//purl.obolibrary.org/obo/hsapdv#end_ypb
whitespace_edge_http__//purl.obolibrary.org/obo/mod#Formula
http__//purl.obolibrary.org/obo/edam#edam
str_http__//purl.obolibrary.org/obo/creation_date
lowercase_http__//www.lesfleursdunormal.fr/static/_downloads/owlready_ontology.owl#python_name
whitespace_edge_https__//www.wikidata.org/wiki/Property__P3938
lowercase_wikidata_template
whitespace_http__//www.ebi.ac.uk/efo/MIAA_definition_citation
layout
lowercase_http__//purl.allotrope.org/ontologies/property#AFX_0002796
whitespace_edge_http__//www.w3.org/ns/prov#unqualifiedForm
edge_http__//purl.org/dc/terms/requires
lowercase_http__//purl.allotrope.org/ontologies/property#AFX_0002798
http__//www.geneontology.org/formats/oboInOWL#xref
whitespace_edge_integration_server
whitespace_edge_http__//purl.org/ccf/ccf_is_provisional
edge_http__//purl.org/ccf/scaling_unit
whitespace_http__//purl.obolibrary.org/obo/OAE_0003232
edge_http__//purl.obolibrary.org/obo/RO_0002331
edge_http__//purl.org/ccf/z_dimension
isDefiningOntology
str_http__//purl.obolibrary.org/obo/MFOMD_0000014
whitespace_edge_http__//purl.obolibrary.org/obo/mod#MassAvg
http__//purl.obolibrary.org/obo/IAO_0000602
https__//www.wikidata.org/wiki/Property__P1477
whitespace_http__//purl.org/ccf/ccf_part_of
http__//purl.obolibrary.org/obo/IAO_0000600
str_http__//www.ebi.ac.uk/efo/reason_for_obsolescence
http__//purl.obolibrary.org/obo/IAO_0000601
http__//purl.obolibrary.org/obo/IAO_0000604
http__//purl.obolibrary.org/obo/SCDO_0000661
whitespace_http__//purl.obolibrary.org/obo/IAO_0000589
http__//purl.obolibrary.org/obo/SCDO_0000662
http__//purl.obolibrary.org/obo/hsapdv#start_mpb
lowercase_http__//purl.obolibrary.org/obo/SCDO_0001222
str_http__//www.biomodels.net/kisao/KISAO#isOrganizational
whitespace_edge_numberOfEntities
whitespace_http__//www.w3.org/ns/prov#component
whitespace_http__//www.ebi.ac.uk/efo/organizational_class
whitespace_edge_http__//purl.bioontology.org/ontology/HGNC/chromosomal_location
whitespace_http__//purl.org/ccf/consortium_name
whitespace_edge_http__//purl.obolibrary.org/obo/comment
edge_http__//purl.obolibrary.org/obo/RO_0002327
whitespace_edge_http__//purl.org/dc/terms/provenance
str_http__//purl.obolibrary.org/obo/ionMass_
edge_in_foundry_order
edge_http__//www.w3.org/2002/07/owl#deprecated
whitespace_http__//purl.obolibrary.org/obo/IAO_0000598
str_http__//purl.obolibrary.org/obo/upa#uniprot_super_pathway
str_http__//www.ebi.ac.uk/efo/GOC_definition_citation
https__//schema.org/dateCreated
whitespace_http__//www.geneontology.org/formats/oboInOwl#editor_note
edge_http__//purl.obolibrary.org/obo/NCIT_P106
edge_http__//purl.obolibrary.org/obo/NCIT_P107
edge_http__//purl.obolibrary.org/obo/NCIT_P102
lowercase_http__//purl.org/ccf/file_subpath
edge_http__//purl.obolibrary.org/obo/NCIT_P100
edge_http__//purl.obolibrary.org/obo/NCIT_P101
edge_http__//purl.obolibrary.org/obo/PCL_0010063
lowercase_http__//purl.obolibrary.org/obo/CEPH_0001032
ontology_purl
edge_http__//purl.org/ccf/x_dimension
edge_http__//schema.org/source
str_http__//purl.obolibrary.org/obo/MFOMD_0000037
http__//ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#A31
http__//purl.obolibrary.org/obo/spacerLength_
http__//ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#A32
whitespace_http__//purl.org/sig/ont/fma/RadLex_ID
edge_http__//www.w3.org/2000/01/rdf-schema#range
str_http__//www.ontology-of-units-of-measure.org/resource/om-2/alternativeSymbol
whitespace_edge_http__//purl.obolibrary.org/obo/OBI_0000312
http__//ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#A24
http__//ncicb.nci.nih.gov/xml/owl/EVS/Thesaurus.owl#A23
lowercase_http__//purl.org/dc/terms/rights
str_http__//purl.obolibrary.org/obo/format-version
whitespace_edge_http__//evs.nci.nih.gov/ftp1/NDF-RT/NDF-RT.owl#FDA_UNII
lowercase_http__//purl.org/ccf/ccf_ct_isa
edge_hierarchicalProperty
lowercase_numHierarchicalDescendants
whitespace_http__//purl.obolibrary.org/obo/MPIO_0000001
whitespace_http__//semanticscience.org/resource/hasSynonym
edge_http__//www.geneontology.org/formats/oboInOwl#hasDbXref
str_http__//www.ebi.ac.uk/efo/definition
replaced_by
whitespace_edge_https__//schema.org/inverseOf
whitespace_http__//purl.obolibrary.org/obo/IAO_created_by
whitespace_edge_synonymProperty
whitespace_edge_http__//purl.obolibrary.org/obo/OBI_9991118
str_http__//www.geneontology.org/formats/oboInOwl#treat-xrefs-as-genus-differentia
http__//usefulinc.com/ns/doap#audience
edge_http__//www.geneontology.org/formats/oboInOwl#hasScope
whitespace_http__//purl.obolibrary.org/obo/mco.owl/MCO_0000851
http__//purl.obolibrary.org/obo/REO_0000360
edge_http__//purl.org/ccf/has_extraction_set
whitespace_http__//purl.obolibrary.org/obo/oba#measured_in_taxon
lowercase_http__//purl.obolibrary.org/obo/OGI.owl#isWrittenBy
http__//purl.obolibrary.org/obo/gaz#proper_partof
lowercase_http__//www.ebi.ac.uk/efo/SRA_label
edge_http__//purl.obolibrary.org/obo/RO_0002377
edge_http__//purl.obolibrary.org/obo/RO_0002376
whitespace_edge_http__//purl.org/ccf/dimension_unit
whitespace_http__//purl.org/dc/elements/1.1/conformsTo
str_http__//www.w3.org/2004/02/skos/core#prefLabel
whitespace_edge_http__//purl.obolibrary.org/obo/IAO_0000700
edge_http__//purl.obolibrary.org/obo/RO_0002379
edge_http__//purl.obolibrary.org/obo/RO_0002378
whitespace_edge_http__//purl.obolibrary.org/obo/SCDO_0000303
whitespace_edge_http__//purl.obolibrary.org/obo/FOBI_050339
str_http__//www.ebi.ac.uk/efo/obsoleted_in_version
edge_http__//purl.obolibrary.org/obo/CIDO_0000178
str_http__//www.w3.org/ns/prov#n
whitespace_http__//purl.obolibrary.org/obo/fypo#seeAlso
http__//purl.obolibrary.org/obo/INO_0000087
str_http__//www.w3.org/20000/01/rdf-schema#label
lowercase_http__//purl.obolibrary.org/obo/go#creation_date
whitespace_http__//purl.org/pav/importedFrom
whitespace_http__//xmlns.com/foaf/0.1/mbox
whitespace_edge_http__//www.geneontology.org/formats/oboInOwl#hasDbXRef