-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprefer.obo
More file actions
3456 lines (3028 loc) · 166 KB
/
prefer.obo
File metadata and controls
3456 lines (3028 loc) · 166 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: releases/2026-03-10
idspace: dc http://purl.org/dc/elements/1.1/
idspace: oboInOwl http://www.geneontology.org/formats/oboInOwl#
idspace: swrl http://www.w3.org/2003/11/swrl#
idspace: swrlb http://www.w3.org/2003/11/swrlb#
idspace: terms http://purl.org/dc/terms/
idspace: uom https://w3id.org/uom/
ontology: prefer
property_value: dc:description "An ontology for PREcision FERmentation." xsd:string
property_value: dc:title "PREFER Ontology" xsd:string
property_value: IAO:0000700 BFO:0000019
property_value: IAO:0000700 BFO:0000023
property_value: IAO:0000700 BFO:0000040
property_value: IAO:0000700 IAO:0000003
property_value: IAO:0000700 PREFER:0000008
property_value: IAO:0000700 PREFER:0000015
property_value: IAO:0000700 PREFER:9000000
property_value: IAO:0000700 PREFER:9000001
property_value: IAO:0000700 PREFER:9000002
property_value: IAO:0000700 PREFER:9000003
property_value: owl:versionInfo "2026-03-10" xsd:string
property_value: terms:contributor https://orcid.org/0000-0001-7258-9596
property_value: terms:contributor https://orcid.org/0000-0002-9163-7730
property_value: terms:contributor https://orcid.org/0009-0009-0018-4253
property_value: terms:license http://creativecommons.org/licenses/by/4.0/
[Term]
id: APOLLO_SV:00000008
name: software development
def: "A planned process that has specified output a software product and that involves the creation of source code." []
is_a: COB:0000035
is_a: OBI:0000011 ! obsolete planned process
[Term]
id: APOLLO_SV:00000796
name: dataset creating
def: "A planned process that has a data set as its specified output." []
is_a: COB:0000035
is_a: OBI:0000011 ! obsolete planned process
intersection_of: OBI:0000011 ! obsolete planned process
intersection_of: OBI:0000299 IAO:0000100 ! has specified output data set
relationship: OBI:0000299 IAO:0000100 ! has specified output data set
[Term]
id: BAO_0000362
name: mammalian
def: "This includes animal models typically used in drug discovery for toxicity or pharmacology studies, such as mouse, rat (mammals)." []
is_a: BAO_0000510 ! vertebrate
[Term]
id: BAO_0000509
name: eukaryote
def: "This includes fungi, vertebrates and invertebrates. Eukaryotic cells have a well-defined nucleus and membrane enveloped organelles namely, mitochondria, endoplasmic reticulum, golgi apparatus, and lysosomes." []
is_a: BAO_0000658 ! cellular organisms
[Term]
id: BAO_0000510
name: vertebrate
def: "This includes animals having a vertebral column, and model organisms from this group include the zebrafish, mouse, rat, etc" []
is_a: BAO_0000659 ! metazoa
[Term]
id: BAO_0000551
name: organism
def: "The organism related to the target / meta-target of the bioassay. It includes both bacterium and eukaryote." []
is_a: BAO_0003114 ! assay biology component
[Term]
id: BAO_0000658
name: cellular organisms
def: "This includes all organisms which are made up of cells, e.g. bacteria, plants and animals." []
is_a: BAO_0000551 ! organism
[Term]
id: BAO_0000659
name: metazoa
def: "Metazoa comprises of animals, which are multicellular eukaryotic organisms. This includes those having a vertebral column (e.g. fish, frog, snake, bird, human) and those that do not (e.g. worm, fly, star fish, etc)." []
is_a: BAO_0000509 ! eukaryote
[Term]
id: BAO_0003114
name: assay biology component
[Term]
id: BFO:0000001
name: entity
[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
disjoint_from: BFO:0000003 ! occurrent
relationship: BFO:0000050 BFO:0000002 {all_only="true"} ! part of continuant
[Term]
id: BFO:0000003
name: occurrent
def: "An entity that has temporal parts and that happens, unfolds or develops through time." []
is_a: BFO:0000001 ! entity
relationship: BFO:0000050 BFO:0000003 {all_only="true"} ! part of occurrent
[Term]
id: BFO:0000004
name: independent continuant
is_a: BFO:0000002 ! continuant
disjoint_from: BFO:0000020 ! specifically dependent continuant
disjoint_from: BFO:0000031 ! generically dependent continuant
relationship: BFO:0000050 BFO:0000004 {all_only="true"} ! part of independent continuant
[Term]
id: BFO:0000015
name: process
is_a: BFO:0000003 ! occurrent
[Term]
id: BFO:0000016
name: disposition
is_a: BFO:0000017 ! realizable entity
disjoint_from: BFO:0000023 ! role
[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
disjoint_from: BFO:0000019 ! quality
relationship: BFO:0000050 BFO:0000017 {all_only="true"} ! part of realizable entity
[Term]
id: BFO:0000019
name: quality
is_a: BFO:0000020 ! specifically dependent continuant
relationship: BFO:0000050 BFO:0000019 {all_only="true"} ! part of quality
[Term]
id: BFO:0000020
name: specifically dependent continuant
is_a: BFO:0000002 ! continuant
disjoint_from: BFO:0000031 ! generically dependent continuant
relationship: BFO:0000050 BFO:0000020 {all_only="true"} ! part of specifically dependent continuant
[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
[Term]
id: BFO:0000031
name: generically dependent continuant
is_a: BFO:0000002 ! continuant
relationship: BFO:0000050 BFO:0000031 {all_only="true"} ! part of generically dependent continuant
[Term]
id: BFO:0000034
name: function
is_a: BFO:0000016 ! disposition
[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
[Term]
id: CHEBI:24431
name: chemical entity
namespace: chebi_ontology
def: "A chemical entity is a physical entity of interest in chemistry including molecular entities, parts thereof, and chemical substances." []
is_a: BFO:0000040 ! material entity
[Term]
id: CL:0000000
name: cell
comment: The definition of cell is intended to represent all cells, and thus a cell is defined as a material entity and not an anatomical structure, which implies that it is part of an organism (or the entirety of one).
xref: CALOHA:TS-2035
xref: FMA:68646
xref: GO:0005623
xref: KUPO:0000002
xref: MESH:D002477
xref: VHOG:0001533
xref: WBbt:0004017
xref: XAO:0003012
is_a: UBERON:0000061 ! anatomical structure
relationship: RO:0002162 NCBITaxon:131567 ! in taxon
[Term]
id: COB:0000035
disjoint_from: GO:0008150 ! biological_process
[Term]
id: GO:0003674
name: molecular_function
namespace: molecular_function
comment: Note that, in addition to forming the root of the molecular function ontology, this term is recommended for the annotation of gene products whose molecular function is unknown. When this term is used for annotation, it indicates that no information was available about the molecular function of the gene product annotated as of the date the annotation was made; the evidence code 'no data' (ND), is used to indicate this. Despite its name, this is not a type of 'function' in the sense typically defined by upper ontologies such as Basic Formal Ontology (BFO). It is instead a BFO:process carried out by a single gene product or complex.
synonym: "molecular function" EXACT []
is_a: BFO:0000015 ! process
disjoint_from: GO:0008150 ! biological_process
[Term]
id: GO:0006091
name: generation of precursor metabolites and energy
namespace: biological_process
synonym: "energy pathways" BROAD []
synonym: "metabolic energy generation" RELATED []
is_a: GO:0008152 ! metabolic process
[Term]
id: GO:0006113
name: fermentation
namespace: biological_process
comment: PMID:38821505 mentions exceptions regarding organic compounds and electron transport chain. Fermentation sub-processes exclude glycolysis to prevent redundancy with the glycolytic pathway.
xref: MetaCyc:Fermentation
xref: Wikipedia:Fermentation_(biochemistry)
is_a: GO:0015980 ! energy derivation by oxidation of organic compounds
[Term]
id: GO:0008150
name: biological_process
namespace: biological_process
comment: Note that, in addition to forming the root of the biological process ontology, this term is recommended for the annotation of gene products whose biological process is unknown. When this term is used for annotation, it indicates that no information was available about the biological process of the gene product annotated as of the date the annotation was made; the evidence code 'no data' (ND), is used to indicate this.
synonym: "biological process" EXACT []
synonym: "physiological process" EXACT []
synonym: "single organism process" RELATED []
synonym: "single-organism process" RELATED []
xref: Wikipedia:Biological_process
is_a: BFO:0000015 ! process
relationship: BFO:0000051 GO:0003674 ! has part molecular_function
[Term]
id: GO:0008152
name: metabolic process
namespace: biological_process
comment: Note that metabolic processes do not include single functions or processes such as protein-protein interactions, protein-nucleic acids, nor receptor-ligand interactions.
synonym: "metabolism" EXACT []
xref: Wikipedia:Metabolism
is_a: GO:0009987 ! cellular process
[Term]
id: GO:0009987
name: cellular process
namespace: biological_process
comment: This term should not be used for direct annotation. It should be possible to make a more specific annotation to one of the children of this term.
synonym: "cell growth and/or maintenance" NARROW []
synonym: "cell physiology" EXACT []
synonym: "cellular physiological process" EXACT []
synonym: "single-organism cellular process" RELATED []
is_a: GO:0008150 ! biological_process
[Term]
id: GO:0015980
name: energy derivation by oxidation of organic compounds
namespace: biological_process
synonym: "chemoorganotrophy" EXACT []
is_a: GO:0006091 ! generation of precursor metabolites and energy
[Term]
id: IAO:0000003
name: measurement unit label
def: "A measurement unit label is as a label that is part of a scalar measurement datum and denotes a unit of measure." []
is_a: IAO:0000009 ! datum label
[Term]
id: IAO:0000005
name: objective specification
def: "A directive information entity that describes an intended process endpoint. When part of a plan specification the concretization is realized in a planned process in which the bearer tries to effect the world so that the process endpoint is achieved." []
is_a: IAO:0000033 ! directive information entity
[Term]
id: IAO:0000007
name: action specification
def: "A directive information entity that describes an action the bearer will take." []
is_a: IAO:0000033 ! directive information entity
[Term]
id: IAO:0000009
name: datum label
def: "A label is a symbol that is part of some other datum and is used to either partially define the denotation of that datum or to provide a means for identifying the datum as a member of the set of data with the same label" []
is_a: IAO:0000030 ! information content entity
[Term]
id: IAO:0000010
name: software
def: "Software is a plan specification composed of a series of instructions that can be \ninterpreted by or directly executed by a processing unit." []
is_a: IAO:0000104 ! plan specification
[Term]
id: IAO:0000015
name: information carrier
def: "A quality of an information bearer that imparts the information content" []
is_a: BFO:0000019 ! quality
intersection_of: BFO:0000019 ! quality
intersection_of: RO:0000059 IAO:0000030 ! concretizes information content entity
relationship: RO:0000059 IAO:0000030 ! concretizes information content entity
[Term]
id: IAO:0000027
name: data item
def: "An information content entity that is intended to be a truthful statement about something (modulo, e.g., measurement precision or other systematic errors) and is constructed/acquired by a method which reliably tends to produce (approximately) truthful statements." []
is_a: IAO:0000030 ! information content entity
[Term]
id: IAO:0000030
name: information content entity
def: "A generically dependent continuant that is about some thing." []
is_a: BFO:0000031 ! generically dependent continuant
relationship: IAO:0000136 BFO:0000001 ! is about entity
[Term]
id: IAO:0000033
name: directive information entity
def: "An information content entity whose concretizations indicate to their bearer how to realize them in a process." []
is_a: IAO:0000030 ! information content entity
relationship: IAO:0000136 BFO:0000017 ! is about realizable entity
[Term]
id: IAO:0000037
name: dot plot
def: "A dot plot is a report graph which is a graphical representation of data where each data point is represented by a single dot placed on coordinates corresponding to data point values in particular dimensions." []
is_a: IAO:0000038 ! graph
[Term]
id: IAO:0000038
name: graph
def: "A diagram that presents one or more tuples of information by mapping those tuples in to a two dimensional space in a non arbitrary way." []
is_a: IAO:0000309 ! diagram
[Term]
id: IAO:0000064
name: algorithm
def: "A plan specification which describes the inputs and output of mathematical functions as well as workflow of execution for achieving an predefined objective. Algorithms are realized usually by means of implementation as computer programs for execution by automata." []
is_a: IAO:0000104 ! plan specification
[Term]
id: IAO:0000078
name: curation status specification
def: "The curation status of the term. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value." []
is_a: IAO:0000102 ! data about an ontology part
[Term]
id: IAO:0000096
name: source code module
def: "A source code module is a directive information entity that specifies, using a programming language, some algorithm." []
is_a: IAO:0000033 ! directive information entity
[Term]
id: IAO:0000098
name: data format specification
def: "A data format specification is the information content borne by the document published defining the specification.\nExample: The ISO document specifying what encompasses an XML document; The instructions in a XSD file" []
is_a: IAO:0000033 ! directive information entity
[Term]
id: IAO:0000100
name: data set
def: "A data item that is an aggregate of other data items of the same type that have something in common. Averages and distributions can be determined for data sets." []
is_a: IAO:0000027 ! data item
[Term]
id: IAO:0000101
name: image
def: "An image is an affine projection to a two dimensional surface, of measurements of some quality of an entity or entities repeated at regular intervals across a spatial range, where the measurements are represented as color and luminosity on the projected on surface." []
is_a: IAO:0000308 ! figure
[Term]
id: IAO:0000102
name: data about an ontology part
def: "Data about an ontology part is a data item about a part of an ontology, for example a term" []
is_a: IAO:0000027 ! data item
[Term]
id: IAO:0000104
name: plan specification
def: "A directive information entity with action specifications and objective specifications as parts, and that may be concretized as a realizable entity that, if realized, is realized in a process in which the bearer tries to achieve the objectives by taking the actions specified." []
comment: 2/3/2009 Comment from OBI review.\n\nAction specification not well enough specified.\nConditional specification not well enough specified.\nQuestion whether all plan specifications have objective specifications.\n\nRequest that IAO either clarify these or change definitions not to use them
is_a: IAO:0000033 ! directive information entity
relationship: BFO:0000051 IAO:0000005 ! has part objective specification
relationship: BFO:0000051 IAO:0000007 ! has part action specification
[Term]
id: IAO:0000178
name: material information bearer
def: "A material entity in which a concretization of an information content entity inheres." []
is_a: BFO:0000040 ! material entity
[Term]
id: IAO:0000179
name: histogram
def: "A histogram is a report graph which is a statistical description of a\ndistribution in terms of occurrence frequencies of different event classes." []
is_a: IAO:0000038 ! graph
[Term]
id: IAO:0000180
name: heatmap
def: "A heatmap is a report graph which is a graphical representation of data\nwhere the values taken by a variable(s) are shown as colors in a\ntwo-dimensional map." []
is_a: IAO:0000038 ! graph
[Term]
id: IAO:0000183
name: dendrogram
def: "A dendrogram is a report graph which is a tree diagram\nfrequently used to illustrate the arrangement of the clusters produced by a\nclustering algorithm." []
is_a: IAO:0000038 ! graph
[Term]
id: IAO:0000184
name: scatter plot
def: "A scatterplot is a graph which uses Cartesian coordinates to display values for two variables for a set of data. The data is displayed as a collection of points, each having the value of one variable determining the position on the horizontal axis and the value of the other variable determining the position on the vertical axis." []
is_a: IAO:0000038 ! graph
[Term]
id: IAO:0000225
name: obsolescence reason specification
def: "The reason for which a term has been deprecated. The allowed values come from an enumerated list of predefined terms. See the specification of these instances for more detailed definitions of each enumerated value." []
is_a: IAO:0000102 ! data about an ontology part
[Term]
id: IAO:0000308
name: figure
def: "An information content entity consisting of a two dimensional arrangement of information content entities such that the arrangement itself is about something." []
is_a: IAO:0000030 ! information content entity
[Term]
id: IAO:0000309
name: diagram
def: "A figure that expresses one or more propositions" []
is_a: IAO:0000308 ! figure
[Term]
id: IAO:0000310
name: document
def: "A collection of information content entities intended to be understood together as a whole" []
is_a: IAO:0000030 ! information content entity
[Term]
id: IAO:0000311
name: publication
def: "A document that is the output of a publishing process." []
comment: Revisit the term in Octorber 2020. Improve the defintion.
is_a: IAO:0000310 ! document
intersection_of: IAO:0000310 ! document
intersection_of: OBI:0000312 IAO:0000444 {all_only="true"} ! is specified output of publishing process
[Term]
id: IAO:0000409
name: denotator type
def: "A denotator type indicates how a term should be interpreted from an ontological perspective." []
is_a: IAO:0000102 ! data about an ontology part
[Term]
id: IAO:0000444
name: publishing process
def: "A planned process of making information, such as literature, music, and software etc., available to the public for sale or for free." []
is_a: OBI:0000011 ! obsolete planned process
[Term]
id: IAO:0000572
name: documenting
def: "A planned process in which a document is created or added to by including the specified input in it." []
is_a: COB:0000035
is_a: OBI:0000011 ! obsolete planned process
relationship: OBI:0000293 IAO:0000030 ! has specified input information content entity
relationship: OBI:0000299 IAO:0000310 ! has specified output document
[Term]
id: NCBITaxon:1
is_a: COB:0000022
[Term]
id: NCBITaxon:10239
is_a: NCBITaxon_Union:0000030 ! cellular organisms or viruses
[Term]
id: NCBITaxon:131567
is_a: NCBITaxon_Union:0000030 ! cellular organisms or viruses
[Term]
id: NCBITaxon:9606
name: Homo sapiens
is_a: BAO_0000362 ! mammalian
[Term]
id: NCBITaxon_Union:0000030
name: cellular organisms or viruses
is_a: NCBITaxon:1
union_of: NCBITaxon:10239
union_of: NCBITaxon:131567
[Term]
id: OBI:0000011
name: obsolete planned process
def: "A process that realizes a plan which is the concretization of a plan specification." []
is_a: BFO:0000015 ! process
is_a: oboInOwl:ObsoleteClass ! Obsolete Class
[Term]
id: OBI:0000014
name: regulator role
def: "a regulatory role involved with making and/or enforcing relevant legislation and governmental orders" []
is_a: OBI:0000017 ! regulatory role
[Term]
id: OBI:0000017
name: regulatory role
def: "a role which inheres in material entities and is realized in the processes of making, enforcing or being defined by legislation or orders issued by a governmental body." []
is_a: BFO:0000023 ! role
[Term]
id: OBI:0000018
name: material supplier role
def: "a role realized through the process of supplying materials such as animal subjects, reagents or other materials used in an investigation." []
is_a: OBI:0000947 ! service provider role
[Term]
id: OBI:0000023
name: classified data set
def: "A data set that is produced as the output of a class prediction data transformation and consists of a data set with assigned class labels." []
is_a: IAO:0000100 ! data set
relationship: OBI:0000312 OBI:0000663 ! is specified output of class prediction data transformation
[Term]
id: OBI:0000066
name: investigation
def: "a planned process that consists of parts: planning, study design execution, documentation and which produce conclusion(s)." []
is_a: COB:0000082
is_a: OBI:0000011 ! obsolete planned process
relationship: BFO:0000051 IAO:0000572 ! has part documenting
relationship: BFO:0000051 OBI:0000338 ! has part drawing a conclusion based on data
relationship: BFO:0000051 OBI:0000471 ! has part study design execution
[Term]
id: OBI:0000067
name: evaluant role
def: "a role that inheres in a material entity that is realized in an assay in which data is generated about the bearer of the evaluant role" []
is_a: BFO:0000023 ! role
relationship: BFO:0000054 OBI:0000070 {all_only="true"} ! realized in
relationship: RO:0000052 BFO:0000040 ! characteristic of material entity
[Term]
id: OBI:0000070
is_a: COB:0000035
is_a: OBI:0000011 ! obsolete planned process
disjoint_from: OBI:0000339 ! planning
disjoint_from: OBI:0200000 ! data transformation
relationship: BFO:0000055 OBI:0000067 ! realizes evaluant role
relationship: OBI:0000417 OBI:0000441 ! achieves_planned_objective assay objective
[Term]
id: OBI:0000112
name: specimen role
def: "A role borne by a material entity that is obtained during a specimen collection process and that can be realized by performing measurements or observations on the specimen." []
is_a: BFO:0000023 ! role
[Term]
id: OBI:0000202
name: investigation agent role
def: "A role borne by an entity and that is realized in a process that is part of an investigation in which an objective is achieved. These processes include, among others: planning, overseeing, funding, reviewing." []
comment: Philly2013: Historically, this role would have been borne only by humans or organizations. However, we now also want to enable investigations run by robot scientists such as ADAM (King et al, Science, 2009)
is_a: BFO:0000023 ! role
relationship: BFO:0000054 OBI:0000066 {all_only="true"} ! realized in investigation
[Term]
id: OBI:0000245
name: organization
def: "An entity that can bear roles, has members, and has a set of organization rules. Members of organizations are either organizations themselves or individual people. Members can bear specific organization member roles that are determined in the organization rules. The organization rules also determine how decisions are made on behalf of the organization by the organization members." []
is_a: BFO:0000040 ! material entity
[Term]
id: OBI:0000272
name: protocol
def: "A plan specification which has sufficient level of detail and quantitative information to communicate it between investigation agents, so that different investigation agents will reliably be able to independently reproduce the process." []
is_a: IAO:0000104 ! plan specification
[Term]
id: OBI:0000338
name: drawing a conclusion based on data
def: "A planned process in which data gathered in an investigation is evaluated in the context of existing knowledge with the objective to generate more general conclusions or to conclude that the data does not allow one to draw general conclusion" []
is_a: COB:0000035
is_a: OBI:0000011 ! obsolete planned process
relationship: OBI:0000293 IAO:0000027 ! has specified input data item
relationship: OBI:0000299 OBI:0001909 ! has specified output conclusion based on data
[Term]
id: OBI:0000339
name: planning
def: "a process of creating or modifying a plan specification" []
[Term]
id: OBI:0000441
name: assay objective
def: "an objective specification to determine a specified type of information about an evaluated entity (the material entity bearing evaluant role)" []
is_a: IAO:0000005 ! objective specification
[Term]
id: OBI:0000450
name: regulatory agency
def: "A regulatory agency is a organization that has responsibility over or for the legislation (acts and regulations) for a given sector of the government." []
is_a: OBI:0000245 ! organization
intersection_of: OBI:0000245 ! organization
intersection_of: RO:0000087 OBI:0000014 ! has role regulator role
relationship: RO:0000087 OBI:0000014 ! has role regulator role
[Term]
id: OBI:0000456
name: material transformation objective
def: "an objective specifiction that creates an specific output object from input materials." []
is_a: IAO:0000005 ! objective specification
[Term]
id: OBI:0000457
name: manufacturing
def: "A planned process with the objective to produce a processed material which will have a function for future use." []
is_a: COB:0000035
is_a: OBI:0000011 ! obsolete planned process
relationship: OBI:0000293 BFO:0000040 ! has specified input material entity
relationship: OBI:0000299 COB:0000026 ! has specified output
relationship: OBI:0000417 OBI:0000458 ! achieves_planned_objective manufacturing objective
[Term]
id: OBI:0000458
name: manufacturing objective
def: "is the objective to manufacture a material of a certain function (device)" []
is_a: OBI:0000456 ! material transformation objective
[Term]
id: OBI:0000471
name: study design execution
def: "a planned process that carries out a study design" []
is_a: COB:0000035
is_a: OBI:0000011 ! obsolete planned process
[Term]
id: OBI:0000571
name: manufacturer role
def: "Manufacturer role is a role which inheres in a person or organization and which is realized by a manufacturing process." []
is_a: BFO:0000023 ! role
relationship: BFO:0000054 OBI:0000457 {all_only="true"} ! realized in manufacturing
[Term]
id: OBI:0000648
name: clustered data set
def: "A data set that is produced as the output of a class discovery data transformation and consists of a data set with assigned discovered class labels." []
is_a: IAO:0000100 ! data set
relationship: OBI:0000312 OBI:0200175 ! is specified output of class discovery data transformation
[Term]
id: OBI:0000659
name: specimen collection process
def: "A planned process with the objective to obtain a material entity for potential use as an input upon which measurements or observations are performed." []
is_a: COB:0000035
is_a: OBI:0000011 ! obsolete planned process
intersection_of: COB:0000035
intersection_of: OBI:0000417 OBI:0000684 ! achieves_planned_objective specimen collection objective
relationship: OBI:0000293 BFO:0000040 ! has specified input material entity
relationship: OBI:0000299 OBI:0100051 ! has specified output specimen
relationship: OBI:0000417 OBI:0000684 ! achieves_planned_objective specimen collection objective
[Term]
id: OBI:0000663
name: class prediction data transformation
def: "A class prediction data transformation (sometimes called supervised classification) is a data transformation that has objective class prediction." []
is_a: OBI:0200000 ! data transformation
[Term]
id: OBI:0000684
name: specimen collection objective
def: "A objective specification that is fulfilled by obtaining a material entity for potential use as an input upon which measurements or observations are performed." []
is_a: IAO:0000005 ! objective specification
[Term]
id: OBI:0000700
name: support vector machine
def: "A support vector machine is a data transformation with a class prediction objective based on the construction of a separating hyperplane that maximizes the margin between two data sets of vectors in n-dimensional space." []
is_a: OBI:0000663 ! class prediction data transformation
relationship: OBI:0000417 OBI:0200179 ! achieves_planned_objective class prediction objective
[Term]
id: OBI:0000704
name: decision tree induction objective
def: "A decision tree induction objective is a data transformation objective in which a tree-like graph of edges and nodes is created and from which the selection of each branch requires that some type of logical decision is made." []
is_a: OBI:0200166 ! data transformation objective
[Term]
id: OBI:0000707
name: decision tree building data transformation
def: "A decision tree building data transformation is a data transformation that has objective decision tree induction." []
is_a: OBI:0200000 ! data transformation
relationship: OBI:0000417 OBI:0000704 ! achieves_planned_objective decision tree induction objective
[Term]
id: OBI:0000713
name: GenePattern software
def: "a software that provides access to more than 100 tools for gene expression analysis, proteomics, SNP analysis and common data processing tasks." []
is_a: IAO:0000010 ! software
[Term]
id: OBI:0000726
name: peak matching
def: "Peak matching is a data transformation performed on a dataset of a graph of ordered data points (e.g. a spectrum) with the objective of pattern matching local maxima above a noise threshold" []
is_a: OBI:0200000 ! data transformation
[Term]
id: OBI:0000727
name: k-nearest neighbors
def: "A k-nearest neighbors is a data transformation which achieves a class discovery or partitioning objective, in which an input data object with vector y is assigned to a class label based upon the k closest training data set points to y; where k is the largest value that class label is assigned." []
is_a: APOLLO_SV:00000796 ! dataset creating
is_a: OBI:0200171 ! partitioning data transformation
is_a: OBI:0200175 ! class discovery data transformation
relationship: OBI:0000299 OBI:0000648 ! has specified output clustered data set
relationship: OBI:0000417 OBI:0200178 ! achieves_planned_objective class discovery objective
[Term]
id: OBI:0000749
name: CART
def: "A CART (classification and regression trees) is a data transformation method for producing a classification or regression model with a tree-based structure." []
is_a: OBI:0000707 ! decision tree building data transformation
[Term]
id: OBI:0000792
name: statistical model validation
def: "A data transformation which assesses how the results of a statistical analysis will generalize to an independent data set." []
is_a: OBI:0200171 ! partitioning data transformation
relationship: OBI:0000417 OBI:0200188 ! achieves_planned_objective cross validation objective
[Term]
id: OBI:0000835
name: manufacturer
def: "A person or organization that has a manufacturer role." []
is_a: BFO:0000040 ! material entity
relationship: RO:0000087 OBI:0000571 ! has role manufacturer role
[Term]
id: OBI:0000947
name: service provider role
def: "is a role which inheres in a person or organization and is realized in in a planned process which provides access to training, materials or execution of protocols for an organization or person" []
is_a: BFO:0000023 ! role
relationship: BFO:0000054 COB:0000035 {all_only="true"} ! realized in
[Term]
id: OBI:0000953
name: processed specimen
def: "A specimen that has been intentionally physically modified." []
is_a: COB:0000026
is_a: OBI:0100051 ! specimen
[Term]
id: OBI:0000963
name: categorical label
def: "A label that is part of a categorical datum and that indicates the value of the data item on the categorical scale." []
is_a: IAO:0000009 ! datum label
[Term]
id: OBI:0001000
name: questionnaire
def: "A document with a set of printed or written questions with a choice of answers, devised for the purposes of a survey or statistical study." []
is_a: IAO:0000310 ! document
[Term]
id: OBI:0001468
name: cell specimen
def: "A specimen primarily composed of a cell or cells collected from a multicellular organism or a cell culture." []
is_a: OBI:0001479 ! specimen from organism
intersection_of: OBI:0001479 ! specimen from organism
intersection_of: BFO:0000051 CL:0000000 ! has part cell
relationship: BFO:0000051 CL:0000000 ! has part cell
[Term]
id: OBI:0001479
name: specimen from organism
def: "A specimen that derives from an anatomical part or substance arising from an organism. Examples of tissue specimen include tissue, organ, physiological system, blood, or body location (arm)." []
is_a: OBI:0100051 ! specimen
[Term]
id: OBI:0001909
name: conclusion based on data
def: "An information content entity that is inferred from data." []
is_a: IAO:0000030 ! information content entity
relationship: OBI:0000124 IAO:0000027 ! is_supported_by_data data item
relationship: OBI:0000312 OBI:0000338 ! is specified output of drawing a conclusion based on data
[Term]
id: OBI:0001930
name: categorical value specification
def: "A value specification that is specifies one category out of a fixed number of nominal categories" []
is_a: OBI:0001933 ! value specification
[Term]
id: OBI:0001933
name: value specification
def: "An information content entity that specifies a value within a classification scheme or on a quantitative scale." []
is_a: IAO:0000030 ! information content entity
[Term]
id: OBI:0001977
name: cytometry assay
def: "An assay that counts and/or measures characteristics of cells." []
is_a: OBI:0000070
[Term]
id: OBI:0002076
name: collection of specimens
def: "A material entity that has two or more specimens as its parts." []
is_a: BFO:0000040 ! material entity
intersection_of: BFO:0000040 ! material entity
intersection_of: RO:0002351 OBI:0100051 {all_only="true"} ! has member specimen
[Term]
id: OBI:0002205
name: histologic grade according to AJCC 7th edition
def: "A categorical value specification that is a histologic grade assigned to a tumor slide specimen according to the American Joint Committee on Cancer (AJCC) 7th Edition grading system." []
is_a: OBI:0001930 ! categorical value specification
[Term]
id: OBI:0002210
name: histologic grade according to the Fuhrman Nuclear Grading System
def: "A categorical value specification that is a histologic grade assigned to a tumor slide specimen according to the Fuhrman Nuclear Grading System." []
is_a: OBI:0001930 ! categorical value specification
[Term]
id: OBI:0002215
name: histologic grade for ovarian tumor
def: "A categorical value specification that is a histologic grade assigned to a ovarian tumor." []
is_a: OBI:0001930 ! categorical value specification
[Term]
id: OBI:0002216
name: histologic grade for ovarian tumor according to a two-tier grading system
def: "A histologic grade for ovarian tumor that is from a two-tier histological classification of tumors." []
is_a: OBI:0002215 ! histologic grade for ovarian tumor
[Term]
id: OBI:0002219
name: histologic grade for ovarian tumor according to the World Health Organization
def: "A histologic grade for ovarian tumor that is from a histological classification by the World Health Organization (WHO)." []
is_a: OBI:0002215 ! histologic grade for ovarian tumor
[Term]
id: OBI:0002224
name: pathologic primary tumor stage for colon and rectum according to AJCC 7th edition
def: "A categorical value specification that is a pathologic finding about one or more characteristics of colorectal cancer following the rules of the TNM American Joint Committee on Cancer (AJCC) version 7 classification system as they pertain to staging of the primary tumor. TNM pathologic primary tumor findings are based on clinical findings supplemented by histopathologic examination of one or more tissue specimens acquired during surgery." []
is_a: OBI:0001930 ! categorical value specification
[Term]
id: OBI:0002232
name: pathologic primary tumor stage for lung according to AJCC 7th edition
def: "A categorical value specification that is a pathologic finding about one or more characteristics of lung cancer following the rules of the TNM American Joint Committee on Cancer (AJCC) version 7 classification system as they pertain to staging of the primary tumor. TNM pathologic primary tumor findings are based on clinical findings supplemented by histopathologic examination of one or more tissue specimens acquired during surgery." []
is_a: OBI:0001930 ! categorical value specification
[Term]
id: OBI:0002243
name: pathologic primary tumor stage for kidney according to AJCC 7th edition
def: "A categorical value specification that is a pathologic finding about one or more characteristics of renal cancer following the rules of the TNM AJCC v7 classification system as they pertain to staging of the primary tumor. TNM pathologic primary tumor findings are based on clinical findings supplemented by histopathologic examination of one or more tissue specimens acquired during surgery." []
is_a: OBI:0001930 ! categorical value specification
[Term]
id: OBI:0002256
name: pathologic primary tumor stage for ovary according to AJCC 7th edition
def: "A categorical value specification that is a pathologic finding about one or more characteristics of ovarian cancer following the rules of the TNM AJCC v7 classification system as they pertain to staging of the primary tumor. TNM pathologic primary tumor findings are based on clinical findings supplemented by histopathologic examination of one or more tissue specimens acquired during surgery." []
is_a: OBI:0001930 ! categorical value specification
[Term]
id: OBI:0002270
name: pathologic lymph node stage for colon and rectum according to AJCC 7th edition
def: "A categorical value specification that is a pathologic finding about one or more characteristics of colorectal cancer following the rules of the TNM AJCC v7 classification system as they pertain to staging of regional lymph nodes." []
is_a: OBI:0001930 ! categorical value specification
[Term]
id: OBI:0002279
name: pathologic lymph node stage for lung according to AJCC 7th edition
def: "A categorical value specification that is a pathologic finding about one or more characteristics of lung cancer following the rules of the TNM AJCC v7 classification system as they pertain to staging of regional lymph nodes." []
is_a: OBI:0001930 ! categorical value specification
[Term]
id: OBI:0002284
name: pathologic lymph node stage for kidney according to AJCC 7th edition
def: "A categorical value specification that is a pathologic finding about one or more characteristics of renal cancer following the rules of the TNM AJCC v7 classification system as they pertain to staging of regional lymph nodes." []
is_a: OBI:0001930 ! categorical value specification
[Term]
id: OBI:0002287
name: pathologic lymph node stage for ovary according to AJCC 7th edition
def: "A categorical value specification that is a pathologic finding about one or more characteristics of ovarian cancer following the rules of the TNM AJCC v7 classification system as they pertain to staging of regional lymph nodes." []
is_a: OBI:0001930 ! categorical value specification
[Term]
id: OBI:0002290
name: pathologic distant metastases stage for colon according to AJCC 7th edition
def: "A categorical value specification that is a pathologic finding about one or more characteristics of colon cancer following the rules of the TNM AJCC v7 classification system as they pertain to distant metastases. TNM pathologic distant metastasis findings are based on clinical findings supplemented by histopathologic examination of one or more tissue specimens acquired during surgery." []
is_a: OBI:0001930 ! categorical value specification
[Term]
id: OBI:0002298
name: pathologic distant metastases stage for lung according to AJCC 7th edition
def: "A categorical value specification that is a pathologic finding about one or more characteristics of lung cancer following the rules of the TNM AJCC v7 classification system as they pertain to distant metastases. TNM pathologic distant metastasis findings are based on clinical findings supplemented by histopathologic examination of one or more tissue specimens acquired during surgery." []
is_a: OBI:0001930 ! categorical value specification
[Term]
id: OBI:0002306
name: pathologic distant metastases stage for kidney according to AJCC 7th edition
def: "A categorical value specification that is a pathologic finding about one or more characteristics of renal cancer following the rules of the TNM AJCC v7 classification system as they pertain to distant metastases. TNM pathologic distant metastasis findings are based on clinical findings supplemented by histopathologic examination of one or more tissue specimens acquired during surgery." []
is_a: OBI:0001930 ! categorical value specification
[Term]
id: OBI:0002310
name: pathologic distant metastases stage for ovary according to AJCC 7th edition
def: "A categorical value specification that is a pathologic finding about one or more characteristics of ovarian cancer following the rules of the TNM AJCC v7 classification system as they pertain to distant metastases. TNM pathologic distant metastasis findings are based on clinical findings supplemented by histopathologic examination of one or more tissue specimens acquired during surgery." []
is_a: OBI:0001930 ! categorical value specification
[Term]
id: OBI:0002314
name: clinical tumor stage group according to AJCC 7th edition
def: "A categorical value specification that is an assessment of the stage of a cancer according to the American Joint Committee on Cancer (AJCC) v7 staging systems." []
is_a: OBI:0001930 ! categorical value specification
[Term]
id: OBI:0002326
name: International Federation of Gynecology and Obstetrics cervical cancer stage value specification
def: "A categorical value specification that is an assessment of the stage of a gynecologic cancer according to the International Federation of Gynecology and Obstetrics (FIGO) staging systems." []
is_a: OBI:0001930 ! categorical value specification
[Term]
id: OBI:0002341
name: International Federation of Gynecology and Obstetrics ovarian cancer stage value specification
def: "A categorical value specification that is a pathologic finding about one or more characteristics of ovarian cancer following the rules of the FIGO classification system." []
is_a: OBI:0001930 ! categorical value specification
[Term]
id: OBI:0002356
name: performance status value specification
def: "A categorical value specification that is an assessment of a participant's performance status (general well-being and activities of daily life)." []
is_a: OBI:0001930 ! categorical value specification
[Term]
id: OBI:0002357
name: Eastern Cooperative Oncology Group score value specification
def: "A performance status value specification designed by the Eastern Cooperative Oncology Group to assess disease progression and its affect on the daily living abilities of the patient." []
is_a: OBI:0002356 ! performance status value specification
[Term]
id: OBI:0002363
name: Karnofsky score vaue specification
def: "A performance status value specification designed for classifying patients 16 years of age or older by their functional impairment." []
is_a: OBI:0002356 ! performance status value specification
[Term]
id: OBI:0002989
name: material supplier
def: "A person or organization that provides material supplies to other people or organizations." []
is_a: BFO:0000040 ! material entity
relationship: RO:0000087 OBI:0000018 ! has role material supplier role
[Term]
id: OBI:0100051
name: specimen
def: "A material entity that is collected for potential use as an input upon which measurements or observations are performed." []
is_a: BFO:0000040 ! material entity
intersection_of: BFO:0000040 ! material entity
intersection_of: RO:0000087 OBI:0000112 ! has role specimen role
relationship: RO:0000087 OBI:0000112 ! has role specimen role
[Term]
id: OBI:0200000
name: data transformation
def: "A completely executed planned process that produces output data from input data." []
is_a: COB:0000035
is_a: OBI:0000011 ! obsolete planned process
relationship: OBI:0000293 IAO:0000027 {all_only="true"} ! has specified input data item
relationship: OBI:0000417 OBI:0200166 ! achieves_planned_objective data transformation objective
[Term]
id: OBI:0200033
name: leave one out cross validation method
def: "is a data transformation : leave-one-out cross-validation (LOOCV) involves using a single observation from the original sample as the validation data, and the remaining observations as the training data. This is repeated such that each observation in the sample is used once as the validation data" []
is_a: OBI:0000792 ! statistical model validation
[Term]
id: OBI:0200041
name: k-means clustering
def: "A k-means clustering is a data transformation which achieves a class discovery or partitioning objective, which takes as input a collection of objects (represented as points in multidimensional space) and which partitions them into a specified number k of clusters. The algorithm attempts to find the centers of natural clusters in the data. The most common form of the algorithm starts by partitioning the input points into k initial sets, either at random or using some heuristic data. It then calculates the mean point, or centroid, of each set. It constructs a new partition by associating each point with the closest centroid. Then the centroids are recalculated for the new clusters, and the algorithm repeated by alternate applications of these two steps until convergence, which is obtained when the points no longer switch clusters (or alternatively centroids are no longer changed)." []
is_a: APOLLO_SV:00000796 ! dataset creating
is_a: OBI:0200171 ! partitioning data transformation
is_a: OBI:0200175 ! class discovery data transformation
relationship: OBI:0000299 OBI:0000648 ! has specified output clustered data set
relationship: OBI:0000417 OBI:0200178 ! achieves_planned_objective class discovery objective
[Term]
id: OBI:0200042
name: hierarchical clustering
def: "A hierarchical clustering is a data transformation which achieves a class discovery objective, which takes as input data item and builds a hierarchy of clusters. The traditional representation of this hierarchy is a tree (visualized by a dendrogram), with the individual input objects at one end (leaves) and a single cluster containing every object at the other (root)." []
is_a: APOLLO_SV:00000796 ! dataset creating
is_a: OBI:0200175 ! class discovery data transformation
relationship: OBI:0000299 OBI:0000648 ! has specified output clustered data set
relationship: OBI:0000417 OBI:0200178 ! achieves_planned_objective class discovery objective
[Term]
id: OBI:0200050
name: dimensionality reduction
def: "A dimensionality reduction is data partitioning which transforms each input m-dimensional vector (x_1, x_2, ..., x_m) into an output n-dimensional vector (y_1, y_2, ..., y_n), where n is smaller than m." []
is_a: APOLLO_SV:00000796 ! dataset creating
is_a: OBI:0200175 ! class discovery data transformation