-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathDRAO-full.obo
More file actions
8235 lines (7335 loc) · 375 KB
/
DRAO-full.obo
File metadata and controls
8235 lines (7335 loc) · 375 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
format-version: 1.2
data-version: http://www.fairsharing.org/ontology/domain/DRAO/releases/2025-06-16/DRAO-full.owl
idspace: biomodels http://biomodels.net/SBO/
idspace: dce http://purl.org/dc/elements/1.1/
idspace: dcterms http://purl.org/dc/terms/
idspace: drao http://www.fairsharing.org/ontology/domain/
idspace: edam http://edamontology.org/
idspace: efo http://www.ebi.ac.uk/efo/
idspace: mamo http://identifiers.org/mamo/
idspace: oboInOwl http://www.geneontology.org/formats/oboInOwl#
idspace: orpha http://www.orpha.net/ORDO/
idspace: semsci http://semanticscience.org/resource/
idspace: swo http://www.ebi.ac.uk/swo/
idspace: swodata http://www.ebi.ac.uk/swo/data/
idspace: swointerface http://www.ebi.ac.uk/swo/interface/
ontology: http://www.fairsharing.org/ontology/domain/DRAO/DRAO-full.owl
property_value: dcterms:description "The Domain Resource Application Ontology (DRAO) contains terms from over 40 community ontologies, as listed at https://github.com/FAIRsharing/domain-ontology/blob/master/LicensingCompliance.md.\n\nThese ontologies were added to DRAO through semi-automated procedures using the ODK; full details are available at https://github.com/FAIRsharing/domain-ontology. Licensing information can be found at https://github.com/FAIRsharing/domain-ontology/blob/master/LicensingCompliance.md\n\nAgroVoc and PRIDE classes were manually added as required.\n\nOriginally developed for use within FAIRsharing.org\n\nLicensed under the Creative Commons Attribution 4.0 International (CC BY 4.0), https://creativecommons.org/licenses/by/4.0/" xsd:string
property_value: dcterms:license https://creativecommons.org/licenses/by/4.0/
property_value: dcterms:title "Domain Resource Application Ontology" xsd:string
property_value: owl:versionInfo "2025-06-16" xsd:string
[Term]
id: BFO:0000001
name: entity
property_value: IAO:0000412 http://purl.obolibrary.org/obo/bfo.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/clo.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/envo.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/iao.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/oae.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/obcs.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/obi.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/ogms.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/omrse.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/t4fs.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/vo.owl
[Term]
id: BFO:0000002
name: continuant
def: "An entity that exists in full at any time in which it exists at all, persists through time while maintaining its identity and has no temporal parts." []
is_a: BFO:0000001 ! entity
property_value: IAO:0000412 http://purl.obolibrary.org/obo/bfo.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chmo.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/cl.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/clo.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/envo.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/iao.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/obcs.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/obi.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/ogms.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/omrse.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/vo.owl
[Term]
id: BFO:0000003
name: occurent
def: "An entity that has temporal parts and that happens, unfolds or develops through time." []
is_a: BFO:0000001 ! entity
property_value: IAO:0000412 http://purl.obolibrary.org/obo/bfo.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/envo.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/iao.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/oae.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/obi.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/ogms.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/t4fs.owl
[Term]
id: BFO:0000004
name: independent continuant
def: "b is an independent continuant = Def. b is a continuant which is such that there is no c and no t such that b s-depends_on c at t. (axiom label in BFO2 Reference: [017-002])" []
is_a: BFO:0000002 ! continuant
property_value: IAO:0000412 http://purl.obolibrary.org/obo/bfo.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/clo.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/envo.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/obi.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/ogms.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/omrse.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/vo.owl
[Term]
id: BFO:0000015
name: process
def: "A process is an entity that exists in time by occurring or happening, has temporal parts and always involves and depends on some entity during the time it occurs." []
is_a: BFO:0000003 ! occurent
property_value: IAO:0000412 efo:efo.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/bfo.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chmo.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/envo.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/iao.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/oae.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/obi.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/ogms.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/t4fs.owl
[Term]
id: BFO:0000016
name: disposition
is_a: BFO:0000017 ! realizable entity
property_value: IAO:0000412 http://purl.obolibrary.org/obo/bfo.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/envo.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/ogms.owl
[Term]
id: BFO:0000017
name: realizable entity
def: "A specifically dependent continuant that inheres in continuant entities and are not exhibited in full at every time in which it inheres in an entity or group of entities. The exhibition or actualization of a realizable entity is a particular manifestation, functioning or process that occurs under certain circumstances." []
is_a: BFO:0000020 ! specifically dependent continuant
property_value: IAO:0000412 http://purl.obolibrary.org/obo/bfo.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/envo.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/obi.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/ogms.owl
[Term]
id: BFO:0000019
name: quality
is_a: BFO:0000020 ! specifically dependent continuant
property_value: IAO:0000412 http://purl.obolibrary.org/obo/bfo.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/ogms.owl
[Term]
id: BFO:0000020
name: specifically dependent continuant
def: "b is a relational specifically dependent continuant = Def. b is a specifically dependent continuant and there are n > 1 independent continuants c1, … cn which are not spatial regions are such that for all 1 i < j n, ci and cj share no common parts, are such that for each 1 i n, b s-depends_on ci at every time t during the course of b’s existence (axiom label in BFO2 Reference: [131-004])" []
is_a: BFO:0000002 ! continuant
property_value: IAO:0000412 http://purl.obolibrary.org/obo/bfo.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/envo.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/obi.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/ogms.owl
[Term]
id: BFO:0000023
name: role
def: "A realizable entity the manifestation of which brings about some result or end that is not essential to a continuant in virtue of the kind of thing that it is but that can be served or participated in by that kind of continuant in some kinds of natural, social or institutional contexts." []
is_a: BFO:0000017 ! realizable entity
property_value: IAO:0000412 http://purl.obolibrary.org/obo/obi.owl
[Term]
id: BFO:0000030
name: object
is_a: BFO:0000040 ! material entity
property_value: IAO:0000412 http://purl.obolibrary.org/obo/bfo.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/envo.owl
[Term]
id: BFO:0000031
name: generically dependent continuant
def: "A continuant that is dependent on one or other independent continuant bearers. For every instance of A requires some instance of (an independent continuant type) B but which instance of B serves can change from time to time." []
is_a: BFO:0000002 ! continuant
property_value: IAO:0000412 http://purl.obolibrary.org/obo/bfo.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chmo.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/iao.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/obcs.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/obi.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/ogms.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/stato.owl
[Term]
id: BFO:0000034
name: function
is_a: BFO:0000016 ! disposition
property_value: IAO:0000412 http://purl.obolibrary.org/obo/bfo.owl
[Term]
id: BFO:0000040
name: material entity
def: "An independent continuant that is spatially extended whose identity is independent of that of other entities and can be maintained through time." []
is_a: BFO:0000004 ! independent continuant
property_value: IAO:0000412 http://purl.obolibrary.org/obo/bfo.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/clo.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/envo.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/obi.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/ogms.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/omrse.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/uberon.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/vo.owl
[Term]
id: CHEBI:15339
name: acceptor
def: "A molecular entity that can accept an electron, a pair of electrons, an atom or a group from another molecular entity." []
subset: https://www.fairsharing.org
is_a: CHEBI:51086 ! chemical role
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:15358
name: histone
subset: https://www.fairsharing.org
is_a: CHEBI:33695 ! information biomacromolecule
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:15378
name: hydron
def: "The general name for the hydrogen nucleus, to be used without regard to the hydrogen nuclear mass (either for hydrogen in its natural abundance or where it is not desired to distinguish between the isotopes)." []
is_a: CHEBI:23906 ! monoatomic cation
is_a: CHEBI:33251 ! monoatomic hydrogen
is_a: CHEBI:36347 ! nuclear particle
is_a: CHEBI:36915 ! inorganic cation
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:15986
name: polynucleotide
def: "A nucleobase-containing molecular entity with a polymeric structure comprised of a linear sequence of 13 or more nucleotide residues." []
is_a: CHEBI:33695 ! information biomacromolecule
is_a: CHEBI:61120 ! nucleobase-containing molecular entity
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:16646
name: carbohydrate
def: "Any member of the class of organooxygen compounds that is a polyhydroxy-aldehyde or -ketone or a lactol resulting from their intramolecular condensation (monosaccharides); substances derived from these by reduction of the carbonyl group (alditols), by oxidation of one or more hydroxy groups to afford the corresponding aldehydes, ketones, or carboxylic acids, or by replacement of one or more hydroxy group(s) by a hydrogen atom; and polymeric products arising by intermolecular acetal formation between two or more such molecules (disaccharides, polysaccharides and oligosaccharides). Carbohydrates contain only carbon, hydrogen and oxygen atoms; prior to any oxidation or reduction, most have the empirical formula Cm(H2O)n. Compounds obtained from carbohydrates by substitution, etc., are known as carbohydrate derivatives and may contain other elements. Cyclitols are generally not regarded as carbohydrates." []
subset: https://www.fairsharing.org
is_a: CHEBI:78616 ! carbohydrates and carbohydrate derivatives
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:16670
name: peptide
def: "Amide derived from two or more amino carboxylic acid molecules (the same or different) by formation of a covalent bond from the carbonyl carbon of one to the nitrogen atom of another with formal loss of water. The term is usually applied to structures formed from alpha-amino acids, but it includes those derived from any amino carboxylic acid. X = OH, OR, NH2, NHR, etc." []
subset: https://www.fairsharing.org
is_a: CHEBI:37622 ! carboxamide
is_a: CHEBI:50047 ! organic amino compound
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:16991
name: deoxyribonucleic acid
def: "High molecular weight, linear polymers, composed of nucleotides containing deoxyribose and linked by phosphodiester bonds; DNA contain the genetic information of organisms." []
subset: https://www.fairsharing.org
is_a: CHEBI:33696 ! nucleic acid
property_value: IAO:0000118 "DNA" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/obi.owl
[Term]
id: CHEBI:17234
name: glucose
def: "An aldohexose used as a source of energy and metabolic intermediate." []
subset: https://www.fairsharing.org
is_a: CHEBI:16646 ! carbohydrate
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:17891
name: donor
def: "A molecular entity that can transfer (\"donate\") an electron, a pair of electrons, an atom or a group to another molecular entity." []
subset: https://www.fairsharing.org
is_a: CHEBI:51086 ! chemical role
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:18059
name: lipid
def: "'Lipids' is a loosely defined term for substances of biological origin that are soluble in nonpolar solvents. They consist of saponifiable lipids, such as glycerides (fats and oils) and phospholipids, as well as nonsaponifiable lipids, principally steroids." []
subset: https://www.fairsharing.org
is_a: CHEBI:50860 ! organic molecular entity
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:18111
name: ribosomal RNA
def: "RNA molecules which are essential structural and functional components of ribosomes, the subcellular units responsible for protein synthesis." []
subset: https://www.fairsharing.org
is_a: CHEBI:33697 ! ribonucleic acid
property_value: IAO:0000118 "rRNA" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:18154
name: polysaccharide
def: "A biomacromolecule consisting of large numbers of monosaccharide residues linked glycosidically. This term is commonly used only for those containing more than ten monosaccharide residues." []
subset: https://www.fairsharing.org
is_a: CHEBI:16646 ! carbohydrate
is_a: CHEBI:33694 ! biomacromolecule
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:23367
name: molecular entity
def: "Any constitutionally or isotopically distinct atom, molecule, ion, ion pair, radical, radical ion, complex, conformer etc., identifiable as a separately distinguishable entity." []
subset: https://www.fairsharing.org
is_a: CHEBI:24431 ! chemical entity
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/obi.owl
[Term]
id: CHEBI:23888
name: drug
def: "Any substance which when absorbed into a living organism may modify one or more of its functions. The term is generally accepted for a substance taken for a therapeutic purpose, but is also commonly used for abused substances." []
subset: https://www.fairsharing.org
is_a: CHEBI:33232 ! application
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:23906
name: monoatomic cation
is_a: CHEBI:24867 ! monoatomic ion
is_a: CHEBI:36916 ! cation
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:24431
name: chemical entity
def: "A chemical entity is a physical entity of interest in chemistry including molecular entities, parts thereof, and chemical substances." []
subset: https://www.fairsharing.org
is_a: BFO:0000030 ! object
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:24432
name: biological role
def: "A role played by the molecular entity or part thereof within a biological context." []
is_a: BFO:0000023 ! role
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:24532
name: organic heterocyclic compound
def: "A cyclic compound having as ring members atoms of carbon and at least of one other element." []
is_a: CHEBI:33285 ! heteroorganic entity
is_a: CHEBI:33832 ! organic cyclic compound
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:24636
name: proton
def: "Nuclear particle of charge number +1, spin 1/2 and rest mass of 1.007276470(12) u." []
subset: https://www.fairsharing.org
is_a: CHEBI:15378 ! hydron
is_a: CHEBI:33253 ! nucleon
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:24835
name: inorganic molecular entity
def: "A molecular entity that contains no carbon." []
is_a: CHEBI:23367 ! molecular entity
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:24867
name: monoatomic ion
is_a: CHEBI:24870 ! ion
is_a: CHEBI:33238 ! monoatomic entity
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:24870
name: ion
def: "A molecular entity having a net electric charge." []
is_a: CHEBI:23367 ! molecular entity
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:25212
name: metabolite
def: "Any intermediate or product resulting from metabolism. The term 'metabolite' subsumes the classes commonly known as primary and secondary metabolites." []
subset: https://www.fairsharing.org
is_a: CHEBI:24432 ! biological role
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:25367
name: molecule
def: "Any polyatomic entity that is an electrically neutral entity consisting of more than one atom." []
is_a: CHEBI:36357 ! polyatomic entity
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:25442
name: mycotoxin
def: "Poisonous substance produced by fungi." []
subset: https://www.fairsharing.org
is_a: CHEBI:27026 ! toxin
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:25608
name: nucleoside phosphate
def: "A nucleobase-containing molecular entity that is a nucleoside in which one or more of the sugar hydroxy groups has been converted into a mono- or poly-phosphate. The term includes both nucleotides and non-nucleotide nucleoside phosphates." []
is_a: CHEBI:25703 ! organic phosphate
is_a: CHEBI:37734 ! phosphoric ester
is_a: CHEBI:61120 ! nucleobase-containing molecular entity
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:25703
name: organic phosphate
is_a: CHEBI:25710 ! organophosphorus compound
is_a: CHEBI:26079 ! phosphoric acid derivative
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:25710
name: organophosphorus compound
def: "An organophosphorus compound is formally a compound containing at least one carbon-phosphorus bond, but the term is often extended to include esters and thioesters." []
is_a: CHEBI:26082 ! phosphorus molecular entity
is_a: CHEBI:33285 ! heteroorganic entity
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:26079
name: phosphoric acid derivative
is_a: CHEBI:36359 ! phosphorus oxoacid derivative
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:26082
name: phosphorus molecular entity
is_a: CHEBI:33302 ! pnictogen molecular entity
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:27026
name: toxin
def: "Poisonous substance produced by a biological organism such as a microbe, animal or plant." []
is_a: CHEBI:25212 ! metabolite
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:33232
name: application
def: "Intended use of the molecular entity or part thereof by humans." []
is_a: BFO:0000023 ! role
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:33238
name: monoatomic entity
def: "A monoatomic entity is a molecular entity consisting of a single atom." []
is_a: CHEBI:33259 ! elemental molecular entity
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:33251
name: monoatomic hydrogen
is_a: CHEBI:33238 ! monoatomic entity
is_a: CHEBI:33260 ! elemental hydrogen
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:33253
name: nucleon
def: "Heavy nuclear particle: proton or neutron." []
is_a: CHEBI:36347 ! nuclear particle
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:33259
name: elemental molecular entity
def: "A molecular entity all atoms of which have the same atomic number." []
is_a: CHEBI:23367 ! molecular entity
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:33260
name: elemental hydrogen
is_a: CHEBI:24835 ! inorganic molecular entity
is_a: CHEBI:33259 ! elemental molecular entity
is_a: CHEBI:33579 ! main group molecular entity
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:33281
name: antimicrobial agent
def: "A substance that kills or slows the growth of microorganisms, including bacteria, viruses, fungi and protozoans." []
subset: https://www.fairsharing.org
is_a: CHEBI:24432 ! biological role
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:33284
name: nutrient
def: "A nutrient is a food component that an organism uses to survive and grow." []
subset: https://www.fairsharing.org
is_a: CHEBI:52211 ! physiological role
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:33285
name: heteroorganic entity
def: "A heteroorganic entity is an organic molecular entity in which carbon atoms or organic groups are bonded directly to one or more heteroatoms." []
is_a: CHEBI:50860 ! organic molecular entity
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:33290
name: food
def: "A physiological role played by any substance of either plant, animal or artificial origin which contains essential body nutrients that can be ingested by an organism to provide energy, promote growth, and maintain the processes of life." []
subset: https://www.fairsharing.org
is_a: CHEBI:52211 ! physiological role
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:33302
name: pnictogen molecular entity
def: "A p-block molecular entity containing any pnictogen." []
is_a: CHEBI:33675 ! p-block molecular entity
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:33304
name: chalcogen molecular entity
def: "Any p-block molecular entity containing a chalcogen." []
is_a: CHEBI:33675 ! p-block molecular entity
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:33579
name: main group molecular entity
def: "A molecular entity containing one or more atoms from any of groups 1, 2, 13, 14, 15, 16, 17, and 18 of the periodic table." []
is_a: CHEBI:23367 ! molecular entity
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:33595
name: cyclic compound
def: "Any molecule that consists of a series of atoms joined together to form a ring." []
is_a: CHEBI:25367 ! molecule
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:33659
name: organic aromatic compound
is_a: CHEBI:33832 ! organic cyclic compound
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:33675
name: p-block molecular entity
def: "A main group molecular entity that contains one or more atoms of a p-block element." []
is_a: CHEBI:33579 ! main group molecular entity
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:33694
name: biomacromolecule
def: "A macromolecule formed by a living organism." []
is_a: CHEBI:36357 ! polyatomic entity
is_a: CHEBI:50860 ! organic molecular entity
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:33695
name: information biomacromolecule
is_a: CHEBI:33694 ! biomacromolecule
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:33696
name: nucleic acid
def: "A macromolecule made up of nucleotide units and hydrolysable into certain pyrimidine or purine bases (usually adenine, cytosine, guanine, thymine, uracil), D-ribose or 2-deoxy-D-ribose and phosphoric acid." []
subset: https://www.fairsharing.org
is_a: CHEBI:15986 ! polynucleotide
is_a: CHEBI:33839 ! macromolecule
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
property_value: IAO:0000412 http://purl.obolibrary.org/obo/obi.owl
[Term]
id: CHEBI:33697
name: ribonucleic acid
def: "High molecular weight, linear polymers, composed of nucleotides containing ribose and linked by phosphodiester bonds; RNA is central to the synthesis of proteins." []
subset: https://www.fairsharing.org
is_a: CHEBI:33696 ! nucleic acid
property_value: IAO:0000118 "RNA" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:33708
name: amino-acid residue
def: "When two or more amino acids combine to form a peptide, the elements of water are removed, and what remains of each amino acid is called an amino-acid residue." []
is_a: CHEBI:24431 ! chemical entity
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:33711
name: C-terminal amino-acid residue
def: "The residue in a peptide that has a free carboxyl group, or at least does not acylate another amino-acid residue, is called C-terminal." []
subset: https://www.fairsharing.org
is_a: CHEBI:33708 ! amino-acid residue
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:33712
name: N-terminal amino-acid residue
def: "The residue in a peptide that has an amino group that is free, or at least not acylated by another amino-acid residue, is called N-terminal." []
subset: https://www.fairsharing.org
is_a: CHEBI:33708 ! amino-acid residue
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:33832
name: organic cyclic compound
def: "Any organic molecule that consists of atoms connected in the form of a ring." []
is_a: CHEBI:33595 ! cyclic compound
is_a: CHEBI:72695 ! organic molecule
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:33833
name: heteroarene
def: "A heterocyclic compound formally derived from an arene by replacement of one or more methine (-C=) and/or vinylene (-CH=CH-) groups by trivalent or divalent heteroatoms, respectively, in such a way as to maintain the continuous pi-electron system characteristic of aromatic systems and a number of out-of-plane pi-electrons corresponding to the Hueckel rule (4n+2)." []
is_a: CHEBI:24532 ! organic heterocyclic compound
is_a: CHEBI:33659 ! organic aromatic compound
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:33839
name: macromolecule
def: "A macromolecule is a molecule of high relative molecular mass, the structure of which essentially comprises the multiple repetition of units derived, actually or conceptually, from molecules of low relative molecular mass." []
is_a: CHEBI:23367 ! molecular entity
property_value: IAO:0000118 "polymer" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/obi.owl
[Term]
id: CHEBI:33893
name: reagent
def: "A substance used in a chemical reaction to detect, measure, examine, or produce other substances." []
subset: https://www.fairsharing.org
is_a: CHEBI:33232 ! application
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:35352
name: organonitrogen compound
def: "Any heteroorganic entity containing at least one carbon-nitrogen bond." []
is_a: CHEBI:33285 ! heteroorganic entity
is_a: CHEBI:51143 ! nitrogen molecular entity
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:36342
name: subatomic particle
def: "A particle smaller than an atom." []
is_a: BFO:0000040 ! material entity
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:36347
name: nuclear particle
def: "A nucleus or any of its constituents in any of their energy states." []
is_a: CHEBI:36342 ! subatomic particle
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:36357
name: polyatomic entity
def: "Any molecular entity consisting of more than one atom." []
is_a: CHEBI:23367 ! molecular entity
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:36359
name: phosphorus oxoacid derivative
is_a: CHEBI:26082 ! phosphorus molecular entity
is_a: CHEBI:36357 ! polyatomic entity
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:36914
name: inorganic ion
is_a: CHEBI:24835 ! inorganic molecular entity
is_a: CHEBI:24870 ! ion
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:36915
name: inorganic cation
is_a: CHEBI:36914 ! inorganic ion
is_a: CHEBI:36916 ! cation
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:36916
name: cation
def: "A monoatomic or polyatomic species having one or more elementary charges of the proton." []
is_a: CHEBI:24870 ! ion
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:36962
name: organochalcogen compound
def: "An organochalcogen compound is a compound containing at least one carbon-chalcogen bond." []
is_a: CHEBI:33285 ! heteroorganic entity
is_a: CHEBI:33304 ! chalcogen molecular entity
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:36963
name: organooxygen compound
def: "An organochalcogen compound containing at least one carbon-oxygen bond." []
is_a: CHEBI:36962 ! organochalcogen compound
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:36976
name: nucleotide
def: "A nucleotide is a nucleoside phosphate resulting from the condensation of the 3 or 5 hydroxy group of a nucleoside with phosphoric acid." []
subset: https://www.fairsharing.org
is_a: CHEBI:25608 ! nucleoside phosphate
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:37622
name: carboxamide
def: "An amide of a carboxylic acid, having the structure RC(=O)NR2. The term is used as a suffix in systematic name formation to denote the -C(=O)NH2 group including its carbon atom." []
is_a: CHEBI:35352 ! organonitrogen compound
is_a: CHEBI:36963 ! organooxygen compound
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:37734
name: phosphoric ester
is_a: CHEBI:26079 ! phosphoric acid derivative
is_a: CHEBI:36963 ! organooxygen compound
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:4705
name: double-stranded DNA
is_a: CHEBI:16991 ! deoxyribonucleic acid
property_value: IAO:0000412 http://purl.obolibrary.org/obo/obi.owl
[Term]
id: CHEBI:50047
name: organic amino compound
def: "A compound formally derived from ammonia by replacing one, two or three hydrogen atoms by organyl groups." []
is_a: CHEBI:35352 ! organonitrogen compound
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:50406
name: probe
def: "A role played by a molecular entity used to study the microscopic environment." []
subset: https://www.fairsharing.org
is_a: CHEBI:33232 ! application
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:50803
name: nanoparticle
def: "A nanosized spherical or capsule-shaped structure." []
subset: https://www.fairsharing.org
is_a: CHEBI:36357 ! polyatomic entity
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:50860
name: organic molecular entity
def: "Any molecular entity that contains carbon." []
is_a: CHEBI:33675 ! p-block molecular entity
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:51086
name: chemical role
def: "A role played by the molecular entity or part thereof within a chemical context." []
is_a: BFO:0000023 ! role
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:51087
name: protecting group
def: "A group that is introduced into a molecule by chemical modification of a functional group in order to obtain chemoselectivity in a subsequent chemical reaction." []
subset: https://www.fairsharing.org
is_a: CHEBI:33232 ! application
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:51143
name: nitrogen molecular entity
is_a: CHEBI:33302 ! pnictogen molecular entity
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:52211
name: physiological role
is_a: CHEBI:24432 ! biological role
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:52214
name: ligand
def: "Any molecule or ion capable of binding to a central metal atom to form coordination complexes." []
subset: https://www.fairsharing.org
is_a: CHEBI:51086 ! chemical role
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:59132
name: antigen
def: "Any substance that stimulates an immune response in the body, such as through antibody production or by presentation to a T-cell receptor after binding to a major histocompability complex (MHC)." []
subset: https://www.fairsharing.org
is_a: CHEBI:24432 ! biological role
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:59163
name: biomarker
def: "A substance used as an indicator of a biological state." []
subset: https://www.fairsharing.org
is_a: CHEBI:33232 ! application
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:61120
name: nucleobase-containing molecular entity
def: "Any compound that has a nucleobase as a part." []
is_a: CHEBI:33833 ! heteroarene
is_a: CHEBI:51143 ! nitrogen molecular entity
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:72695
name: organic molecule
def: "Any molecule that consists of at least one carbon atom as part of the electrically neutral entity." []
is_a: CHEBI:25367 ! molecule
is_a: CHEBI:50860 ! organic molecular entity
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:78298
name: environmental contaminant
def: "Any minor or unwanted substance introduced into the environment that can have undesired effects." []
subset: https://www.fairsharing.org
is_a: CHEBI:51086 ! chemical role
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHEBI:78616
name: carbohydrates and carbohydrate derivatives
def: "Any organooxygen compound that is a polyhydroxy-aldehyde or -ketone, or a compound derived from one. Carbohydrates contain only carbon, hydrogen and oxygen and usually have an empirical formula Cm(H2O)n; carbohydrate derivatives may contain other elements by substitution or condensation." []
is_a: CHEBI:36963 ! organooxygen compound
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chebi.owl
[Term]
id: CHMO:0000067
name: microscopy
def: "Any technique where a microscope is used to view a small object (or specimen) by producing a magnified image." []
subset: https://www.fairsharing.org
is_a: OBI:0000185 ! imaging assay
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chmo.owl
[Term]
id: CHMO:0000068
name: electron microscopy
def: "Microscopy where the specimen is bombarded with a finely focused (<10 nm diameter) electron beam with an acceleration voltage 50-150 kV under vacuum. The interaction of the electrons with the specimen produces transmitted, secondary, backscattered and diffracted electrons and characteristic X-rays which are detected." []
subset: https://www.fairsharing.org
is_a: CHMO:0000067 ! microscopy
property_value: IAO:0000118 "EM" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chmo.owl
[Term]
id: CHMO:0000102
name: optical microscopy
def: "Microscopy where the specimen is illuminated with visible light and a system of lenses is used to produce an image." []
subset: https://www.fairsharing.org
is_a: CHMO:0000067 ! microscopy
property_value: IAO:0000118 "light microscopy" xsd:string
property_value: IAO:0000118 "OM" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chmo.owl
[Term]
id: CHMO:0000104
name: bright-field microscopy
def: "Microscopy where the specimen is illuminated with light transmitted from a source on the opposite side of the specimen from the objective." []
is_a: CHMO:0000102 ! optical microscopy
property_value: IAO:0000118 "bright field microscopy" xsd:string
property_value: IAO:0000118 "bright-field optical microscopy" xsd:string
property_value: IAO:0000118 "transmitted light microscopy" xsd:string
property_value: IAO:0000118 "transmitted-light microscopy" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chmo.owl
[Term]
id: CHMO:0000140
name: reciprocal-space method
def: "Any detection or measurement method for a set of points in reciprocal space." []
is_a: OBI:0000070 ! assay
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chmo.owl
[Term]
id: CHMO:0000141
name: diffraction method
def: "Any detection or measurement method where the structure of a crystal or molecule can be determined by directing a beam of particles or radiation at a sample and recording the resulting diffraction pattern." []
is_a: CHMO:0000140 ! reciprocal-space method
property_value: IAO:0000118 "crystallography" xsd:string
property_value: IAO:0000118 "diffraction analysis" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chmo.owl
[Term]
id: CHMO:0000156
name: X-ray diffraction
def: "A method for determining structure by directing a beam of X-rays at the sample and detecting the positions and intensities of the diffracted X-rays as a pattern of spots on a photographic plate." []
subset: https://www.fairsharing.org
is_a: CHMO:0000141 ! diffraction method
property_value: IAO:0000118 "X-ray analysis" xsd:string
property_value: IAO:0000118 "X-Ray crystallographic analysis" xsd:string
property_value: IAO:0000118 "X-ray crystallography" xsd:string
property_value: IAO:0000118 "X-ray diffraction analysis" xsd:string
property_value: IAO:0000118 "X-ray diffractometry" xsd:string
property_value: IAO:0000118 "X-ray structure determination" xsd:string
property_value: IAO:0000118 "XRD" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chmo.owl
[Term]
id: CHMO:0000228
name: spectroscopy
def: "The study of the interaction of a sample with radiation or particles for measurement or detection." []
subset: https://www.fairsharing.org
is_a: OBI:0000070 ! assay
property_value: IAO:0000118 "spectrometry" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chmo.owl
[Term]
id: CHMO:0000591
name: nuclear magnetic resonance spectroscopy
def: "Spectroscopy where the energy states of spin-active nuclei placed in a static magnetic field are interrogated by inducing transitions between the states via radio frequency irradiation." []
subset: https://www.fairsharing.org
is_a: CHMO:0001806 ! nuclear magnetic resonance method
property_value: IAO:0000118 "NMR" xsd:string
property_value: IAO:0000118 "NMR spectrometry" xsd:string
property_value: IAO:0000118 "NMR spectroscopy" xsd:string
property_value: IAO:0000118 "nuclear magnetic resonance (NMR) spectroscopy" xsd:string
property_value: IAO:0000118 "nuclear magnetic resonance spectrometry" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chmo.owl
[Term]
id: CHMO:0000656
name: Raman spectroscopy
def: "Spectroscopy where the Raman scattering of monochromatic light, usually from a laser in the visible, near infrared, or near ultraviolet range by a sample is detected." []
subset: https://www.fairsharing.org
is_a: CHMO:0002414 ! scattering spectroscopy
property_value: IAO:0000118 "Raman scattering spectrometry" xsd:string
property_value: IAO:0000118 "Raman scattering spectroscopy" xsd:string
property_value: IAO:0000118 "Raman spectrometry" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chmo.owl
[Term]
id: CHMO:0000793
name: assay output
def: "An information content entity that is output by an assay." []
is_a: IAO:0000027 ! data item
property_value: IAO:0000118 "experimental data" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chmo.owl
[Term]
id: CHMO:0000800
name: spectrum
def: "A plot of a measured quantity against some experimental parameter." []
subset: https://www.fairsharing.org
is_a: CHMO:0000793 ! assay output
property_value: IAO:0000118 "spectra" xsd:string
property_value: IAO:0000118 "spectrum plot" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chmo.owl
[Term]
id: CHMO:0000999
name: separation method
def: "A method that results in the separation of two or more components according to some property." []
is_a: OBI:0000094 ! material processing
property_value: IAO:0000118 "partition" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chmo.owl
[Term]
id: CHMO:0001000
name: chromatography
def: "A separation method where the components are distributed between two phases, one of which is stationary, while the other moves in a definite direction." []
subset: https://www.fairsharing.org
is_a: CHMO:0000999 ! separation method
property_value: IAO:0000118 "analytical chromatography" xsd:string
property_value: IAO:0000118 "chromatographic analysis" xsd:string
property_value: IAO:0000118 "preparative chromatography" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chmo.owl
[Term]
id: CHMO:0001001
name: column chromatography
def: "A chromatography method where the stationary bed is within a tube (of standard length 25 cm). The particles of the solid stationary phase or support coated with a liquid stationary phase may fill the whole inside volume of the tube (packed column) or be concentrated on or along the inside tube wall leaving an open, unrestricted path for the mobile phase in the middle part of the tube (open-tubular column)." []
is_a: CHMO:0001000 ! chromatography
property_value: IAO:0000118 "preparative column chromatography" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chmo.owl
[Term]
id: CHMO:0001002
name: gas chromatography
def: "Column chromatography where the mobile phase is a gas." []
subset: https://www.fairsharing.org
is_a: CHMO:0001001 ! column chromatography
property_value: IAO:0000118 "GC" xsd:string
property_value: IAO:0000412 http://purl.obolibrary.org/obo/chmo.owl
[Term]
id: CHMO:0001112
name: super-resolution bright-field microscopy
def: "Microscopy where the specimen is illuminated with light transmitted from a source on the opposite side of the specimen from the objective, and image resolution (which is normally limited by diffraction) is enhanced by processing the images with image restoration algorithms." []
subset: https://www.fairsharing.org
is_a: CHMO:0000104 ! bright-field microscopy
property_value: IAO:0000118 "super resolution bright field microscopy" xsd:string