-
Notifications
You must be signed in to change notification settings - Fork 0
/
SRAO-base.obo
4145 lines (3709 loc) · 257 KB
/
SRAO-base.obo
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/subject/SRAO/releases/2023-10-10/SRAO-base.owl
ontology: http://www.fairsharing.org/ontology/subject/SRAO/SRAO-base.owl
property_value: http://purl.org/dc/elements/1.1/creator "The FAIRsharing Team, [email protected]" xsd:string
property_value: http://purl.org/dc/elements/1.1/title "FAIRsharing Subject Ontology (SRAO)" xsd:string
property_value: http://purl.org/dc/elements/1.1/type IAO:8000001
property_value: http://purl.org/dc/terms/description "SRAO is a hierarchy of academic disciplines that draws from the re3data subject list as well as importing terms from 6 publicly-available ontologies. This hierarchy covers all of the humanities and natural sciences and, where external vocabularies could not be found, SRAO classes were created.\n\nThe initial hierarchy and class set came from FAIRsharing user requirements. Additional classes have been drawn from the following sources:\n\n1. the re3data subject categories as listed at http://www.re3data.org/browse/by-subject/\n2. NCIT (http://dx.doi.org/10.3233/978-1-60750-949-3-33, CC BY 4.0)\n3. the EDAM Topic hierarchy as available at http://edamontology.org (http://doi.org/10.1093/bioinformatics/btt113, CC BY-SA 4.0)\n4. AgroVoc (http://agrovoc.uniroma2.it/agrovoc/agrovoc/en/, CC BY 3.0 IGO)\n5. OMIT (https://doi.org/10.1371/journal.pone.0100855 and https://doi.org/10.1186/s13326-016-0064-2, CC BY 3.0)\n6. OBI (https://doi.org/10.1371/journal.pone.0154556, CC BY 3.0)\n7. PO (http://www.plantontology.org/, CC BY 4.0)\n\nModifications to the hierarchy have been performed to aid usability within FAIRsharing as well as to aid ontology alignment and merging. Additional definitions and annotations have also been incorporated by the FAIRsharing Team.\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: http://purl.org/dc/terms/license CC-BY%204.0
property_value: owl:versionInfo "2023-10-10" xsd:string
[Term]
id: NCIT:C105692
name: Respiratory Medicine
comment: AL 20.5.20: Added as part of https://github.com/FAIRsharing/subject-ontology/issues/52
is_a: OMIT:0009577 ! Medicine
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000118 "Pulmonary Medicine" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
[Term]
id: NCIT:C105699
name: Vascular Surgery
comment: AL: 16.5.2019 Refactored re3data composite class 'Vascular and Visceral Surgery' into 'Vascular Surgery' according to FAIRsharing's requirements and curation best practises.
comment: AL: 28.9.17 'Vascular and Visceral Surgery' is asserted as a child of Medicine by re3data, and has been further refined by FAIRsharing as a child of Surgery, a class originating in EDAM.
is_a: NCIT:C17173 ! Surgery
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C119712
name: Proteogenomics
comment: AL 12.12.17 Child of Bioinformatics (to align with NCIT) and also of Genomics, to align with FAIRsharing usage.
is_a: NCIT:C17964 ! Bioinformatics
is_a: NCIT:C84343 ! Genomics
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
[Term]
id: NCIT:C142491
name: Data Quality
comment: AL 12.6.2019: This class has been refactored from EDAM to NCIT to better align with FAIRsharing curation guidelines.
is_a: topic:3071 ! Data Management
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
[Term]
id: NCIT:C142642
name: Preclinical Studies
comment: AL: 16.5.2019 Refactored re3data composite class 'Preclinical and Clinical Studies' into sibling classes 'Preclinical Studies' and 'Clinical Studies' according to FAIRsharing curation best practises.
is_a: SRAO:0000318 ! Medicines Research and Development
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
[Term]
id: NCIT:C15188
name: Biomedical Science
comment: AL: 3.12.18 'Biomedical Research' is a child of 'Research Activity' within NCIT. This assertion has been modified to 'Life Sciences' as SRAO focuses more on the subject area rather than the research activity. There was no direct equivalent for this discipline within re3data.
is_a: NCIT:C16345 ! Biology
is_a: NCIT:C19199 ! Health Science
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
[Term]
id: NCIT:C15206
name: Clinical Studies
comment: AL: 16.5.2019 Refactored re3data composite class 'Preclinical and Clinical Studies' into sibling classes 'Preclinical Studies' and 'Clinical Studies' according to FAIRsharing curation best practises.
is_a: SRAO:0000318 ! Medicines Research and Development
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
[Term]
id: NCIT:C15245
name: Health Services Research
comment: AL: 1.5.2019 Refactored re3data composite class 'Public Health, Health Services Research, Social Medicine' into the 'Public Health' class and parts of its hierarchy according to FAIRsharing curation best practises. Child terms from this refactoring are 'Social Medicine' and 'Health Services Research'.
is_a: NCIT:C17039 ! Public Health
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C15308
name: Psychotherapy
comment: AL: 4.4.2019 Refactored re3data composite class 'Clinical Neurosciences II - Psychotherapy, Psychosomatic Medicine' into sibling classes 'Psychotherapy' and 'Psychosomatic Medicine' according to FAIRsharing curation best practises.
is_a: NCIT:C95096 ! Neuroscience
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C153192
name: Glycomics
is_a: topic:3292 ! Biochemistry
is_a: topic:3391 ! Omics
property_value: IAO:0000412 "NCIT" xsd:string
[Term]
id: NCIT:C16294
name: Anthropology
comment: AL: 11.4.2019 Refactored re3data composite class 'Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies' and its children 'African, American and Oceania Studies', 'Asian Studies', 'Religious Studies and Jewish Studies', 'Islamic Studies, Arabian Studies, Semitic Studies', and 'Social and Cultural Anthropology and Ethnology/Folklore' into a completely reworked hierarchy of singular concepts according to FAIRsharing curation best practises.
is_a: OMIT:0007951 ! Humanities
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C16304
name: Architecture
comment: AL 23.5.18: The original "Construction Engineering and Architecture" class from re3data has been split into "Construction Engineering" and "Architecture". Users have requested the single terms, and removal of compound terms aligns with FAIRsharing best practices.
is_a: c:1648 ! Civil Engineering
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C16309
name: Artificial Intelligence
comment: AL: 20.5.2019, Updated AL 8.7.19: Refactored re3data composite class 'Artificial Intelligence, Image and Language Processing' into sibling classes 'Artificial Intelligence' and 'Digital Image Processing', according to FAIRsharing curation best practises. Please note that the 'Natural Language Processing' component was not retained as it is already present within DRAO.
is_a: topic:3316 ! Computer Science
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C16345
name: Biology
is_a: c:4318 ! Life Science
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C16349
name: Biophysics
comment: AL: 14.5.2019 Refactored re3data composite class 'Statistical Physics, Soft Matter, Biological Physics, Nonlinear Dynamics'. 'Biophysics' was already present in SRAO, and added 'Soft Matter Physics', 'Nonlinear Dynamics', and 'Statistical Physics' according to FAIRsharing curation best practises.
is_a: NCIT:C16345 ! Biology
is_a: topic:3318 ! Physics
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000118 "Biological Physics" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C16413
name: Chemical Engineering
is_a: NCIT:C16414 ! Chemistry
is_a: SRAO:0000219 ! Process Engineering
property_value: IAO:0000119 "WWWebster Dictionary" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C16414
name: Chemistry
comment: AL: 21.1.19 Chemistry is asserted as a child of 'Natural Sciences' by re3data, and a child of Physical Sciences within NCIT.
is_a: OMIT:0011790 ! Natural Science
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C16417
name: Clinical Chemistry
comment: AL 9.10.23: As described in https://github.com/FAIRsharing/subject-ontology/issues/77, this has had the direct parent 'Chemistry' removed as it was already a child of Analytical Chemistry.
comment: AL: 16.5.2019 Refactored re3data composite class 'Clinical Chemistry and Pathobiochemistry' into sibling classes 'Clinical Chemistry' and 'Pathobiochemistry' according to FAIRsharing curation best practises.
is_a: OMIT:0009577 ! Medicine
is_a: topic:3370 ! Analytical Chemistry
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000233 "https://github.com/FAIRsharing/subject-ontology/issues/77" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C16419
name: Organic Chemistry
is_a: NCIT:C16414 ! Chemistry
property_value: IAO:0000412 "NCIT" xsd:string
[Term]
id: NCIT:C16421
name: Physical Chemistry
comment: AL: 10.4.2019 Refactored re3data composite class 'Chemical Solid State and Surface Research' into 'Physical Chemistry', and refactored all child classes and the Physical and Theoretical Chemistry hierarchies to reconcile them using non-composite terms according to FAIRsharing curation best practises.
is_a: NCIT:C16414 ! Chemistry
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C16439
name: Medical Informatics
comment: AL: 1.5.2019 Refactored re3data composite class 'Epidemiology, Medical Biometry, Medical Informatics' into the 'Public Health' subclass 'Epidemiology' and its sibling 'Medical Biometry' according to FAIRsharing curation best practises. 'Medical Informatics' (which was already present) is now a parent term of 'Medical Biometry', which also has Public Health as an additional parent. 'Medical informatics' was also refactored from EDAM to NCIT due to EDAM's composite term and generic synonyms.
is_a: OMIT:0009577 ! Medicine
is_a: topic:0605 ! Informatics
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000118 "Clinical Informatics" xsd:string
property_value: IAO:0000118 "Health Informatics" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C16478
name: Culture
is_a: NCIT:C17141 ! Social Science
property_value: IAO:0000412 "NCIT" xsd:string
[Term]
id: NCIT:C16495
name: Demographics
comment: AL 23.11.17: Hierarchy placement based on ESRC descriptions (http://www.esrc.ac.uk/about-us/what-is-social-science/social-science-disciplines/).
is_a: NCIT:C17141 ! Social Science
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000118 "Population Studies" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
[Term]
id: NCIT:C16500
name: Dermatology
comment: AL 11.6.2019: This class has been refactored from EDAM to NCIT to better align with FAIRsharing curation guidelines.
is_a: OMIT:0009577 ! Medicine
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C16501
name: Developmental Biology
comment: AL 11.6.2019: This class has been refactored from EDAM to NCIT to better align with FAIRsharing curation guidelines.
is_a: NCIT:C16345 ! Biology
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C16526
name: Ecology
comment: AL: 16.5.2019 Refactored (through deletion) re3data composite class 'Animal Ecology, Biodiversity and Ecosystem Research' by merging with existing classes 'Ecosystem Science', 'Biodiversity' and 'Ecology' according to FAIRsharing curation best practises.
is_a: NCIT:C16345 ! Biology
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C16540
name: Electrophysiology
comment: AL 17.7.2019: Imported from DRAO as more appropriate within SRAO.
comment: AL 9.10.23: removed Physiology parent as already had suitable parent of Neurophysiology. See also https://github.com/FAIRsharing/subject-ontology/issues/78
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000233 "https://github.com/FAIRsharing/subject-ontology/issues/78" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
[Term]
id: NCIT:C16548
name: Engineering Science
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C16550
name: Entomology
is_a: NCIT:C17269 ! Zoology
property_value: IAO:0000412 "NCIT" xsd:string
[Term]
id: NCIT:C16556
name: Epidemiology
comment: AL: 1.5.2019 Earlier releases of SRAO had an EDAM term (topic_3305) but this was refactored to NCIT to remove the composite concepts.
comment: AL: 1.5.2019 Refactored re3data composite class 'Epidemiology, Medical Biometry, Medical Informatics' into the 'Public Health' subclass 'Epidemiology' and its sibling 'Medical Biometry' according to FAIRsharing curation best practises. 'Medical Informatics' (which was already present) is now a parent term of 'Medical Biometry', which also has Public Health as an additional parent.
is_a: NCIT:C17039 ! Public Health
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C16591
name: Forensic Medicine
comment: AL 27.11.18: The original "Pathology and Forensic Medicine" class from re3data has been split into "Pathology" and "Forensic Medicine". Removal of compound terms aligns with FAIRsharing best practices.
is_a: OMIT:0009577 ! Medicine
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C16603
name: Gastroenterology
comment: AL 11.6.2019: This class has been refactored from EDAM to NCIT to better align with FAIRsharing curation guidelines.
is_a: OMIT:0009577 ! Medicine
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C16624
name: Genetics
comment: AL (Original date unknown, updated 10.6.2019): Changed re3data label from 'General Genetics' to Genetics as this is the term used within FAIRsharing. This class has been refactored from EDAM to NCIT to better align with FAIRsharing curation guidelines.
is_a: NCIT:C16345 ! Biology
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C16633
name: Geography
is_a: OMIT:0026615 ! Earth Science
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C16658
name: Gynecology
comment: AL 1.5.2019: Refactored re3data composite class 'Gynecology and Obstetrics' into sibling classes 'Gynecology' and 'Obstetrics'. This replaced the composite EDAM IRI representing 'Gynecology and Obstetrics' with individual NCIT terms according to FAIRsharing best practises.
is_a: OMIT:0009577 ! Medicine
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C16673
name: Hematology
comment: AL: 1.5.2019 Refactored re3data composite class 'Hematology, Oncology, Transfusion Medicine' into sibling classes 'Hematology' and 'Oncology', and a child of Hematology called 'Transfusion Medicine' according to FAIRsharing curation best practises.
is_a: OMIT:0009577 ! Medicine
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C16715
name: Immunogenetics
is_a: NCIT:C16624 ! Genetics
property_value: IAO:0000412 "NCIT" xsd:string
[Term]
id: NCIT:C16851
name: Microbiology
comment: AL 11.6.2019: This class has been refactored from EDAM to NCIT to better align with FAIRsharing curation guidelines.
comment: AL: 25.9.17 [Updated AL 10.06.2019] Changed re3data label from 'Microbiology, Virology and Immunology' to 'Microbiology' as these are three distinct disciplines. All three disciplines have been removed from the Medicine hierarchy as listed by re3data. Microbiology has been asserted as a child of Biology according to NCIT and FAIRsharing curators. Virology has been asserted as a child of Microbiology to align with re3data, further refining the placement within EDAM. Immunology remains a child of Biomedical Science according to FAIRsharing curators, a modification both of the Medicine hierarchy as listed by re3data and the Biological Sciences as listed by NCIT.
is_a: NCIT:C16345 ! Biology
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C16902
name: Nephrology
is_a: OMIT:0009577 ! Medicine
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C16908
name: Neurology
comment: AL 11.6.2019: This class has been refactored from EDAM to NCIT to better align with FAIRsharing curation guidelines.
comment: AL 28.9.17 (Updated AL 11.6.2019): Changed re3data label from 'Clinical Neurosciences I - Neurology, Neurosurgery' to Neurology as the new label is singular (non-composite). Neurology is asserted within the NCIT Medicine hierarchy and as a child of Neurobiology by re3data. The hierarchies of both have been retained.
is_a: NCIT:C95096 ! Neuroscience
is_a: OMIT:0009577 ! Medicine
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C16910
name: Neurophysiology
is_a: NCIT:C95096 ! Neuroscience
is_a: topic:3300 ! Physiology
property_value: IAO:0000412 "NCIT" xsd:string
[Term]
id: NCIT:C16922
name: Nuclear Medicine
comment: AL 15.1.18: While this particular class was not directly imported from re3data, its parent class was originally named 'Radiology and Nuclear Medicine'. As NCIT has terms separately describing both concepts, FAIRsharing has split the re3data class along the hierarchy described in NCIT.
is_a: NCIT:C17059 ! Radiology
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C16928
name: Obstetrics
comment: AL 1.5.2019: Refactored re3data composite class 'Gynecology and Obstetrics' into sibling classes 'Gynecology' and 'Obstetrics'. This replaced the composite EDAM IRI representing 'Gynecology and Obstetrics' with individual NCIT terms according to FAIRsharing best practises.
is_a: OMIT:0009577 ! Medicine
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C16931
name: Occupational Medicine
comment: AL: 27.9.17 Changed re3data label from 'Toxicology and Occupational Medicine' to 'Occupational Medicine' as these are two distinct disciplines. Toxicology has been placed as a child of 'Safety Sciences', while Occupational Medicine has been kept as a child of Medicine.
is_a: OMIT:0009577 ! Medicine
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C16939
name: Ophthalmology
comment: AL 11.6.2019: This class has been refactored from EDAM to NCIT to better align with FAIRsharing curation guidelines.
comment: AL 28.9.17 (Updated AL 11.6.2019): Changed re3data label from 'Clinical Neurosciences III - Opthalmology' to Opthalmology as the new label is simpler and aligns with FAIRsharing best practises. Opthalmology is asserted within the Medicine hierarchy by NCIT and as a child of Neurobiology by re3data. Both assertions have been retained.
is_a: NCIT:C95096 ! Neuroscience
is_a: OMIT:0009577 ! Medicine
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C16974
name: Pharmacology
comment: AL 10.6.2019: Pharmacology is a child of Biological Sciences within NCIT, and a child of Medicine by re3data. The re3data placement has been retained. This class has been refactored from EDAM to NCIT to better align with FAIRsharing curation guidelines.
is_a: OMIT:0009577 ! Medicine
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C17026
name: Psychiatry
comment: AL 12.6.2019: This class has been refactored from EDAM to NCIT to better align with FAIRsharing curation guidelines.
is_a: OMIT:0009577 ! Medicine
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
[Term]
id: NCIT:C17027
name: Psychology
is_a: SRAO:0000041 ! Social and Behavioural Science
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C17028
name: Clinical Psychology
comment: AL: 9.4.2019 Refactored re3data composite class 'Differential Psychology, Clinical Psychology, Medical Psychology, Methodology' into sibling classes 'Differential Psychology', 'Clinical Psychology' and 'Medical Psychology' according to FAIRsharing curation best practises.'Methodology' was not required within SRAO at this time.
is_a: NCIT:C17027 ! Psychology
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C17030
name: Educational Psychology
comment: AL: 9.4.2019 Refactored re3data composite class 'Developmental and Educational Psychology' into sibling classes 'Developmental Psychology' and 'Educational Psychology' according to FAIRsharing curation best practises.
is_a: NCIT:C17027 ! Psychology
is_a: SRAO:0000042 ! Education Science
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C17038
name: Psychosomatic Medicine
comment: AL: 4.4.2019 Refactored re3data composite class 'Clinical Neurosciences II - Psychotherapy, Psychosomatic Medicine' into sibling classes 'Psychotherapy' and 'Psychosomatic Medicine' according to FAIRsharing curation best practises.
is_a: NCIT:C17026 ! Psychiatry
is_a: NCIT:C95096 ! Neuroscience
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C17039
name: Public Health
comment: AL: 1.5.2019 Refactored re3data composite class 'Public Health, Health Services Research, Social Medicine' into the 'Public Health' class and parts of its hierarchy according to FAIRsharing curation best practises. Child terms from this refactoring are 'Social Medicine' and 'Health Services Research'.
is_a: OMIT:0009577 ! Medicine
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C17055
name: Radiobiology
comment: AL: 16.5.2019 Refactored re3data composite class 'Radiation Oncology and Radiobiology' into parent class 'Radiobiology' and child class 'Radiation Oncology' according to FAIRsharing curation best practises.
is_a: NCIT:C16345 ! Biology
is_a: OMIT:0009577 ! Medicine
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C17059
name: Radiology
comment: AL 15.1.18 Originally named 'Radiology and Nuclear Medicine', but split into two separate classes (according to the NCIT hierarchy) after Radiology was required in FAIRsharing as a standalone concept.
is_a: OMIT:0009577 ! Medicine
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C17099
name: Rheumatology
comment: AL: 7.5.2019 Refactored re3data composite class 'Rheumatology, Clinical Immunology, Allergology' into classes 'Rheumatology' (remains child of Medicine) and 'Clinical Immunology' (child of Immunology and Health Sciences) according to FAIRsharing curation best practises.
is_a: OMIT:0010991 ! Musculoskeletal Medicine
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C17141
name: Social Science
comment: AL 5.6.2019: The label was modified from plural to singular according to FAIRsharing best practises.
is_a: SRAO:0000041 ! Social and Behavioural Science
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C17147
name: Software Engineering
comment: AL 11.6.2019: This class has been refactored from EDAM to NCIT to better align with FAIRsharing curation guidelines.
comment: AL: 29.9.17 Changed label from 'Software Technology' (sourced from re3data) to 'Software engineering' to align with EDAM.
is_a: topic:3316 ! Computer Science
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C17167
name: Statistics
comment: AL 10.4.2019: Renamed 'Statistics and Probability' to 'Statistics' to align with FAIRsharing curation best practices.
is_a: topic:3315 ! Mathematics
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000118 "Statistics and Probability" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
[Term]
id: NCIT:C17173
name: Surgery
comment: AL 12.6.2019: This class has been refactored from EDAM to NCIT to better align with FAIRsharing curation guidelines.
is_a: OMIT:0009577 ! Medicine
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
[Term]
id: NCIT:C17174
name: Oral Surgery
comment: AL: 16.5.2019 Refactored re3data composite class 'Dentistry, Oral Surgery' into 'Dentistry' (which moved to be a direct child of Medicine) and 'Oral Surgery', which retains its position as a child of Surgery, according to FAIRsharing curation best practises.
is_a: NCIT:C17173 ! Surgery
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C17193
name: Thermodynamics
comment: AL 17.7.2019: Imported from DRAO as more appropriate within SRAO. At the same time, IRI changed from http://purl.obolibrary.org/obo/OMIT_0014667 to http://purl.obolibrary.org/obo/NCIT_C17193 as it provides a definition.
is_a: topic:3318 ! Physics
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
[Term]
id: NCIT:C17206
name: Toxicology
comment: AL 10.6.2019: Added parent term of 'Pharmacology' to align with NCIT hierarchy. This class has been refactored from EDAM to NCIT to better align with FAIRsharing curation guidelines. AL 27.9.17: Changed re3data label from 'Toxicology and Occupational Medicine' to 'Occupational Medicine' as these are two distinct disciplines. Toxicology has been placed as a child of 'Safety Sciences', while Occupational Medicine has been kept as a child of Medicine.
is_a: NCIT:C16974 ! Pharmacology
is_a: SRAO:0000318 ! Medicines Research and Development
is_a: SRAO:0000319 ! Safety Science
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
[Term]
id: NCIT:C17243
name: Urology
is_a: OMIT:0009577 ! Medicine
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C17269
name: Zoology
is_a: NCIT:C16345 ! Biology
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C17606
name: Digital Image Processing
comment: AL: 20.5.2019 Refactored re3data composite class 'Artificial Intelligence, Image and Language Processing' into sibling classes 'Artificial Intelligence' and 'Digital Image Processing', with 'Natural Language Processing' as a child term of 'Artificial Intelligence' according to FAIRsharing curation best practises.
is_a: topic:3316 ! Computer Science
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C17735
name: Policy
comment: AL 21.5.2019: Added as a new parent for Social Policy and Economic Policy in a placement consistent with the NCIT hierarchy.
is_a: NCIT:C17141 ! Social Science
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
[Term]
id: NCIT:C17837
name: Oncology
comment: AL 11.6.2019: This class has been refactored from EDAM to NCIT to better align with FAIRsharing curation guidelines.
comment: AL: 1.5.2019 Refactored re3data composite class 'Hematology, Oncology, Transfusion Medicine' into sibling classes 'Hematology' and 'Oncology', and a child of Hematology called 'Transfusion Medicine' according to FAIRsharing curation best practises.
is_a: OMIT:0009577 ! Medicine
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C17940
name: Microbial Genetics
comment: AL: 10.4.2019 Refactored re3data composite class 'Metabolism, Biochemistry and Genetics of Microorganisms' into sibling classes 'Microbial Genetics', ' Microbial Physiology' and 'Molecular Microbiology' according to FAIRsharing curation best practises.
is_a: NCIT:C16624 ! Genetics
is_a: NCIT:C16851 ! Microbiology
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C17964
name: Bioinformatics
comment: AL 11.6.2019: This class has been refactored from EDAM to NCIT to better align with FAIRsharing curation guidelines.
comment: AL 27.9.17 [Updated AL 10.6.2019] Bioinformatics is asserted as a child of Biology within re3data, but has also been asserted as a child of Informatics by FAIRsharing. Within FAIRsharing, this term used to be labelled 'Bioinformatics tools and formats', but has been modified for simplicity. Within re3data, this term used to be labelled 'Bioinformatics and Theoretical Biology' but was simplified as these are two distinct disciplines. Currently Theoretical Biology has not been re-introduced, but this may need to be revisited in future.
is_a: NCIT:C16345 ! Biology
is_a: topic:0605 ! Informatics
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000118 "Computational Biology" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C17992
name: Cell Biology
comment: AL 11.6.2019: This class has been refactored from EDAM to NCIT to better align with FAIRsharing curation guidelines.
is_a: NCIT:C16345 ! Biology
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C18011
name: Immunology
comment: AL 14.5.2019: Refactored Immunology from the EDAM to the NCIT class due to conflation of subject areas by the EDAM class.
comment: AL: 25.9.17 [Updated AL 10.06.2019] Changed re3data label from 'Microbiology, Virology and Immunology' to 'Microbiology' as these are three distinct disciplines. All three disciplines have been removed from the Medicine hierarchy as listed by re3data. Microbiology has been asserted as a child of Biology according to NCIT and FAIRsharing curators. Virology has been asserted as a child of Microbiology to align with re3data, further refining the placement within EDAM. Immunology remains a child of Biomedical Science according to FAIRsharing curators, a modification both of the Medicine hierarchy as listed by re3data and the Biological Sciences as listed by NCIT.
is_a: NCIT:C15188 ! Biomedical Science
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C18076
name: Bioengineering
comment: AL 23.11.17: Added parent 'Engineering Sciences' to align with the structure found within NCIT.
is_a: NCIT:C16548 ! Engineering Science
is_a: topic:3297 ! Biotechnology
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000118 "Biomedical Engineering" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
[Term]
id: NCIT:C18088
name: Developmental Neurobiology
is_a: topic:3304 ! Neurobiology
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C18097
name: Molecular Dynamics
comment: AL 11.6.2019: This class has been refactored from EDAM to NCIT to better align with FAIRsharing curation guidelines.
is_a: topic:3307 ! Computational Biology
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
[Term]
id: NCIT:C18111
name: Structural Biology
comment: AL 11.6.2019: This class has been refactored from EDAM to NCIT to better align with FAIRsharing curation guidelines.
is_a: NCIT:C16345 ! Biology
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C18189
name: Pathology
comment: AL 27.11.18: The original "Pathology and Forensic Medicine" class from re3data has been split into "Pathology" and "Forensic Medicine". Removal of compound terms aligns with FAIRsharing best practices.
is_a: OMIT:0009577 ! Medicine
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C18220
name: Human Biology
comment: AL 11.6.2019: This class has been refactored from EDAM to NCIT to better align with FAIRsharing curation guidelines.
comment: AL 9.10.23: Removed parent 'Zoology' as having both that and parent of Biology could be confusing and is unnecessary. See also https://github.com/FAIRsharing/subject-ontology/issues/79
is_a: NCIT:C16345 ! Biology
property_value: IAO:0000233 "https://github.com/FAIRsharing/subject-ontology/issues/79" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
[Term]
id: NCIT:C18470
name: Computational Chemistry
comment: AL: 10.4.2019 Refactored the Physical and Theoretical Chemistry hierarchies to reconcile them using non-composite terms according to FAIRsharing curation best practises.
is_a: SRAO:0000173 ! Theoretical Chemistry
is_a: topic:3316 ! Computer Science
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
[Term]
id: NCIT:C18478
name: Nanotechnology
comment: AL 9.10.23: Remove Chemistry as direct parent of Nanotechnology as it is already an indirect parent via Surface Science -> Physical Chemistry -> Chemistry. See also https://github.com/FAIRsharing/subject-ontology/issues/81
comment: AL 9.7.2019: Moved from DRAO to SRAO, as it is a subject area rather than a domain. At the same time, it was refactored from http://purl.obolibrary.org/obo/OMIT_0022673 to http://purl.obolibrary.org/obo/NCIT_C18478 for the curation provided by NCIT.
is_a: SRAO:0000236 ! Materials Science
is_a: SRAO:0000298 ! Surface Science
is_a: topic:3316 ! Computer Science
is_a: topic:3318 ! Physics
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000118 "Nanoscale Science" xsd:string
property_value: IAO:0000233 "https://github.com/FAIRsharing/subject-ontology/issues/81" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
[Term]
id: NCIT:C18633
name: Animal Genetics
comment: AL 17.11.21: Removed re3data alternative term "Animal Genetics, Cell and Developmental Biology"
comment: AL 25.1 18: The label within NCIT has been chosen as the label for this class as it is simpler, while the re3data has been retained as an alternative term.
is_a: NCIT:C17269 ! Zoology
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C18645
name: Enzymology
is_a: topic:3292 ! Biochemistry
property_value: IAO:0000412 "NCIT" xsd:string
[Term]
id: NCIT:C18701
name: Clinical Immunology
comment: AL 10.10.23: It doesn't make sense to keep Health Science as a parent when it is already an indirect parent via Immunology -> Health Science. See also https://github.com/FAIRsharing/subject-ontology/issues/82
comment: AL: 7.5.2019 Refactored re3data composite class 'Rheumatology, Clinical Immunology, Allergology' into classes 'Rheumatology' (remains child of Medicine) and 'Clinical Immunology' (child of Immunology and Health Sciences) according to FAIRsharing curation best practises.
is_a: NCIT:C18011 ! Immunology
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000233 "https://github.com/FAIRsharing/subject-ontology/issues/82" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C18729
name: Database Management
comment: AL 12.6.2019: This class has been refactored from EDAM to NCIT to better align with FAIRsharing curation guidelines.
is_a: topic:3071 ! Data Management
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
[Term]
id: NCIT:C18740
name: Developmental Psychology
comment: AL: 9.4.2019 Refactored re3data composite class 'Developmental and Educational Psychology' into sibling classes 'Developmental Psychology' and 'Educational Psychology' according to FAIRsharing curation best practises.
is_a: NCIT:C16501 ! Developmental Biology
is_a: NCIT:C17027 ! Psychology
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C18873
name: Microbial Physiology
comment: AL: 10.4.2019 Refactored re3data composite class 'Metabolism, Biochemistry and Genetics of Microorganisms' into sibling classes 'Microbial Genetics', ' Microbial Physiology' and 'Molecular Microbiology' according to FAIRsharing curation best practises.
is_a: NCIT:C16851 ! Microbiology
is_a: topic:3300 ! Physiology
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000118 "Microbial Metabolism" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C18874
name: Medical Microbiology
comment: AL: 10.4.2019 Refactored re3data composite class 'Medical Microbiology, Molecular Infection Biology' into sibling classes 'Molecular Infection Biology' and 'Medical Microbiology' according to FAIRsharing curation best practises. Added an additional parent term of 'Biomedical Science' to align with the definition.
is_a: NCIT:C15188 ! Biomedical Science
is_a: NCIT:C16851 ! Microbiology
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C18948
name: Polymer Chemistry
comment: AL: 21.5.2019 Refactored re3data composite class 'Preparatory and Physical Chemistry of Polymers' into 'Polymer Chemistry' according to FAIRsharing curation best practises.
is_a: NCIT:C16419 ! Organic Chemistry
is_a: SRAO:0000178 ! Polymer Research
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C19199
name: Health Science
comment: AL 5.6.2019: The label was modified from plural to singular according to FAIRsharing best practises.
is_a: c:4318 ! Life Science
property_value: IAO:0000412 "NCIT" xsd:string
[Term]
id: NCIT:C19349
name: Electrical Engineering
is_a: NCIT:C16548 ! Engineering Science
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C19638
name: Mechanics
is_a: c:4682 ! Mechanical Engineering
is_a: topic:3318 ! Physics
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C20085
name: Proteomics
comment: AL 11.6.2019: This class has been refactored from EDAM to NCIT to better align with FAIRsharing curation guidelines.
is_a: topic:3391 ! Omics
property_value: IAO:0000412 "NCIT" xsd:string
[Term]
id: NCIT:C20126
name: Structural Genomics
comment: AL 17.11.21: Refactored from EDAM http://edamontology.org/topic_0122 because definition was insufficient (The elucidation of the three dimensional structure for all (available) proteins in a given organism.).
is_a: NCIT:C18111 ! Structural Biology
is_a: NCIT:C84343 ! Genomics
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
[Term]
id: NCIT:C20179
name: Toxicogenomics
comment: AL 20.12.17: Although NCIT places Toxicogenomics as a child of Bioinformatics, FAIRsharing instead places it as a child of both Genomics and Toxicology.
is_a: NCIT:C17206 ! Toxicology
is_a: NCIT:C84343 ! Genomics
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
[Term]
id: NCIT:C20609
name: Synthesis Chemistry
comment: AL: 10.4.2019 Refactored the Physical and Theoretical Chemistry hierarchies to reconcile them using non-composite terms according to FAIRsharing curation best practises. Simplified this class name from 'Solid State and Surface Chemistry, Material Synthesis' according to FAIRsharing curation best practises.
is_a: NCIT:C16421 ! Physical Chemistry
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C26633
name: Drug Metabolism
comment: AL 11.6.2019: This class has been refactored from EDAM to NCIT to better align with FAIRsharing curation guidelines.
is_a: SRAO:0000318 ! Medicines Research and Development
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
[Term]
id: NCIT:C39794
name: Philosophy
is_a: OMIT:0007951 ! Humanities
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C54625
name: History
is_a: OMIT:0007951 ! Humanities
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C84343
name: Genomics
comment: AL 11.6.2019: This class has been refactored from EDAM to NCIT to better align with FAIRsharing curation guidelines.
is_a: topic:3391 ! Omics
property_value: IAO:0000412 "NCIT" xsd:string
[Term]
id: NCIT:C86055
name: Cardiology
comment: AL: 20.5.2019 Refactored re3data composite class 'Cardiology, Angiology' into sibling classes 'Cardiology' and 'Angiology' according to FAIRsharing curation best practises.
is_a: OMIT:0009577 ! Medicine
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: NCIT:C93254
name: Regenerative Medicine
comment: AL 17.7.2019: Imported from DRAO as more appropriate within SRAO.
is_a: OMIT:0009577 ! Medicine
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
[Term]
id: NCIT:C95096
name: Neuroscience
comment: AL: 17.10.17 Neuroscience is asserted as a child of Medicine by re3data and Neuro*biology* as a child of 'Biomedical Science' by EDAM. We have placed Neurobiology as a child of Neuroscience. The re3data label has been changed from Neurosciences to Neuroscience to align with FAIRsharing terminology.
is_a: NCIT:C15188 ! Biomedical Science
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "NCIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
property_value: SRAO:0000276 "Neuroscience Domain" xsd:string
[Term]
id: OBI:0200111
name: Data Visualization
comment: AL 11.6.2019: This class has been refactored from EDAM to OBI to better align with FAIRsharing curation guidelines.
is_a: topic:3316 ! Computer Science
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000412 "OBI" xsd:string
[Term]
id: OMIT:0001094
name: Cognitive Neuroscience
def: "Cognitive Neuroscience is the field of study focusing on the neural substrates of mental processes. It is at the intersection of psychology and neuroscience, but also overlaps with physiological psychology, cognitive psychology and neuropsychology. It combines the theories of cognitive psychology and computational modelling with experimental data about the brain." []
comment: AL: 9.4.2019 Refactored re3data composite class 'Cognitive Neuroscience and Neuroimaging' into 'Cognitive Neuroscience' according to FAIRsharing curation best practises. Added parent 'Psychology' to align with the definition provided.
is_a: SRAO:0000047 ! Biological Psychology
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000119 "Nature https://www.nature.com/subjects/cognitive-neuroscience, 3.4.2019" xsd:string
property_value: IAO:0000412 "OMIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: OMIT:0002286
name: Cultural Anthropology
def: "Cultural Anthropology is a branch of anthropology focused on the study of cultural variation among humans. It is in contrast to social anthropology, which perceives cultural variation as a subset of the anthropological constant. Cultural Anthropology is the more common term in the United States, with Social Anthropology usually preferred in Britain, although they are also often considered distinct research areas. The terms tend to reflect a difference in emphasis between the two disciplines, with Cultural Anthropology aiming to appreciate the whole sphere of human cultural life, by examining historical, political, psychological, and other frameworks." []
comment: AL: 11.4.2019 Refactored re3data composite class 'Non-European Languages and Cultures, Social and Cultural Anthropology, Jewish Studies and Religious Studies' and its children 'African, American and Oceania Studies', 'Asian Studies', 'Religious Studies and Jewish Studies', 'Islamic Studies, Arabian Studies, Semitic Studies', and 'Social and Cultural Anthropology and Ethnology/Folklore' into a completely reworked hierarchy of singular concepts according to FAIRsharing curation best practises.
is_a: NCIT:C16294 ! Anthropology
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000119 "Adapted from Wikipedia https://en.wikipedia.org/wiki/Cultural_anthropology and OED, AL 11.4.2019" xsd:string
property_value: IAO:0000412 "OMIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: OMIT:0002494
name: Archaeology
def: "Archaeology is the scientific study human activity through the recovery and analysis of the remains and monuments of the prehistoric period." []
comment: See also https://github.com/FAIRsharing/subject-ontology/issues/55
is_a: OMIT:0002286 ! Cultural Anthropology
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000119 "Wikipedia https://en.wikipedia.org/wiki/Classical_archaeology, AL 13.6.2019" xsd:string
property_value: IAO:0000412 "Adapted by AL from OED and https://en.wikipedia.org/wiki/Archaeology, 17.11.21" xsd:string
property_value: IAO:0000412 "OMIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: OMIT:0002540
name: Art
def: "Art is the expression or application of creative skill and imagination, typically in a visual form such as painting, drawing, or sculpture, producing works to be appreciated primarily for their beauty or emotional power. Also: such works themselves considered collectively." []
comment: AL 10.4.2019: Renamed 'Arts' to 'Art' to match the meaning intended within OMIT.
is_a: SRAO:0000015 ! Fine Arts
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000119 "Adapted from OED definition 8a, AL 6.6.2019" xsd:string
property_value: IAO:0000412 "OMIT" xsd:string
[Term]
id: OMIT:0002710
name: Automation
def: "Automation is the action or process of introducing automatic equipment or devices into a manufacturing or other process or facility." []
comment: AL: 10.4.2019 Refactored 'Production Automation, Factory Operation, Operations Manangement' into 'Automation' to simplify the term according to FAIRsharing curation best practises.
is_a: SRAO:0000207 ! Production Technology
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000119 "OED" xsd:string
property_value: IAO:0000412 "OMIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: OMIT:0004711
name: Criminal Law
def: "Criminal Law is the branch of law concerned with defining crimes and with prosecuting and punishing offenders; the body of law relating to crime." []
comment: AL: 21.5.2019 Refactored re3data composite class 'Criminal Law and Law of Criminal Procedure' into 'Criminal Law' according to FAIRsharing curation best practises.
is_a: SRAO:0000066 ! Public Law
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000119 "OED, AL 21.05.2019" xsd:string
property_value: IAO:0000412 "OMIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: OMIT:0004713
name: Criminology
def: "Criminology is the study of crime and criminals; this as an academic discipline." []
is_a: OMIT:0008715 ! Jurisprudence
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000119 "OED, AL 21.05.2019" xsd:string
property_value: IAO:0000412 "OMIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: OMIT:0007039
name: Geology
def: "Geology is the study or science of the earth, its history, and its life as recorded in the rocks; includes the study of geologic features of an area, such as the geometry of rock formations, weathering and erosion, and sedimentation." []
comment: AL 18.6.2019: This class' label was updated when the original re3data subject 'Geology and Paleontology' was split into two sibling classes.
is_a: OMIT:0026615 ! Earth Science
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000119 "GEMET https://www.eionet.europa.eu/gemet/en/concept/3650, AL 12.6.2019" xsd:string
property_value: IAO:0000412 "OMIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: OMIT:0007951
name: Humanities
def: "Humanities is the branch of learning concerned with human culture; the academic subjects collectively comprising this branch of learning, as history, literature, ancient and modern languages, law, philosophy, art, and music." []
is_a: SRAO:0000002 ! Humanities and Social Science
property_value: IAO:0000117 "Allyson Lister" xsd:string
property_value: IAO:0000119 "OED, AL 12.6.2019" xsd:string
property_value: IAO:0000412 "OMIT" xsd:string
property_value: IAO:0000412 "re3data" xsd:string
[Term]
id: OMIT:0008715
name: Jurisprudence