-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathrbo-base.obo
1341 lines (1144 loc) · 51.5 KB
/
rbo-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: rbo/releases/2021-08-30/rbo-base.owl
ontology: rbo/rbo-base
property_value: http://purl.org/dc/elements/1.1/description "RBO is an ontology for the effects of radiation on biota in terrestrial and space environments." xsd:string
property_value: http://purl.org/dc/elements/1.1/title "Radiation Biology Ontology" xsd:string
property_value: http://purl.org/dc/elements/1.1/type IAO:8000001
property_value: http://purl.org/dc/terms/license http://creativecommons.org/licenses/by/3.0/
property_value: owl:versionInfo "2021-08-30" xsd:string
[Term]
id: DOID:4
is_a: BFO:0000016
[Term]
id: GO:0009314
relationship: RO:0002608 ENVO:01001023
[Term]
id: GO:0010212
relationship: RO:0002608 RBO:00000116 ! ionizing radiation
[Term]
id: RBO:00000001
name: ionizing radiation categorized by source
def: "Ionizing radiation classified by the material entity which generates or emits it." []
is_a: RBO:00000116 ! ionizing radiation
[Term]
id: RBO:00000002
name: space radiation
def: "Radiation originating outside the Earth's atmosphere." []
is_a: RBO:00000001 ! ionizing radiation categorized by source
[Term]
id: RBO:00000003
name: ground radiation
def: "Radiation produced on Earth or on another planetary body by natural or artificial means." []
is_a: RBO:00000001 ! ionizing radiation categorized by source
property_value: IAO:0000112 "One of the principal sources of ground radiation is radon gas." xsd:string
[Term]
id: RBO:00000004
name: tissue equivalent material
def: "Material presenting, when irradiated, interaction properties similar to those of soft tissue." []
is_a: BFO:0000040
property_value: IAO:0000119 "ICRP glossary (http://icrpaedia.org/Tissue_equivalent_material)" xsd:string
[Term]
id: RBO:00000005
name: Fe-56 ion radiation
def: "Atomic nuclei, each with 26 protons and 30 neutrons with kinetic energy imparted by natural or artificial means (such as by a particle accelerator)" []
is_a: RBO:00005001 ! heavy ion radiation
[Term]
id: RBO:00000006
name: C-12 ion radiation
def: "Atomic nuclei, each with 6 protons and 6 neutrons with kinetic energy imparted by natural or artificial means (such as by a particle accelerator)" []
is_a: RBO:00005001 ! heavy ion radiation
[Term]
id: RBO:00000007
name: Si-28 ion radiation
def: "Atomic nuclei, each with 14 protons and 14 neutrons with kinetic energy imparted by natural or artificial means (such as by a particle accelerator)" []
is_a: RBO:00005001 ! heavy ion radiation
[Term]
id: RBO:00000008
name: He-4 ion radiation
def: "Atomic nuclei, each with 2 protons and 2 neutrons with kinetic energy imparted by natural or artificial means (such as by a particle accelerator)" []
is_a: RBO:00005001 ! heavy ion radiation
[Term]
id: RBO:00000009
name: Ne-20 ion radiation
def: "Atomic nuclei, each with 10 protons and 10 neutrons with kinetic energy imparted by natural or artificial means (such as by a particle accelerator)" []
is_a: RBO:00005001 ! heavy ion radiation
[Term]
id: RBO:00000010
name: light ion
def: "An atomic nucleus, fully stripped of its orbital electrons, and containing 2, 3, 4, 5, or 6 protons." []
is_a: CHEBI:33252
is_a: RBO:00005003 ! charged particle
[Term]
id: RBO:00000011
name: active dosimeter
def: "A radiation measuring device which records dose at the time of detection, with data available in real time" []
is_a: RBO:00000115 ! radiation dosimeter device
property_value: IAO:0000112 "Ionization chambers and silicon solid state detectors can be used as active dosimeters." xsd:string
[Term]
id: RBO:00000012
name: passive dosimeter
def: "A radiation measuring device which integrates the amount of radiation to which it is exposed. Passive detectors are interrogated at a later time to determine the dose." []
is_a: RBO:00000115 ! radiation dosimeter device
property_value: IAO:0000112 "Thermoluminescent dosimeters and plastic nuclear track detectors are passive detectors." xsd:string
[Term]
id: RBO:00000013
name: background ionizing radiation
def: "The amount of ionizing radiation to which a member of the population on Earth is exposed from natural sources, such as terrestrial radiation from naturally-occurring radionuclides in the soil, cosmic radiation originating in outer space, and naturally-occurring ra" []
is_a: ENVO:01001023
[Term]
id: RBO:00000014
name: effective dose
def: "The sum of the equivalent doses to all organs in the body, each adjusted to account for the sensitivity of the organ to radiation. Effective dose is calculated for the whole body. Effective dose is expressed in millisieverts (mSv)." []
is_a: RBO:010016 ! radiation dose
property_value: IAO:0000112 "The effective dose was calculated to be 300 mSv." xsd:string
[Term]
id: RBO:00000015
name: mixed radiation field
def: "The process of exposing the same sample to more than one type and/or energy of radiation, in sequence or simultaneously." []
synonym: "mixed field|mixed radiation" EXACT []
is_a: RBO:00000049 ! particle accelerator radiation
property_value: IAO:0000111 "mixed radiation" xsd:string
property_value: IAO:0000112 "The samples were exposed to a mixed radiation field consisting of several ions at different energies." xsd:string
[Term]
id: RBO:00000016
name: radiation environment
def: "Radiation classified by where the exposure to the radiation is occurring." []
is_a: ENVO:01000254
[Term]
id: RBO:00000017
name: Earth surface
def: "That part of the Earth exposed to the Earth atmosphere." []
is_a: RBO:00000016 ! radiation environment
[Term]
id: RBO:00000018
name: Earth atmosphere
def: "The region between the Earth's surface and an altitude of approximately 100 km" []
is_a: RBO:00000016 ! radiation environment
[Term]
id: RBO:00000019
name: low Earth orbit
def: "The region of outer space between the Earth's atmosphere and the innermost Earth radiation belt" []
synonym: "LEO" EXACT []
is_a: ENVO:01000637
property_value: IAO:0000111 "LEO" xsd:string
[Term]
id: RBO:00000020
name: beyond low Earth orbit
def: "That part of outer space beyond the Earth's radiation belts." []
synonym: "BLEO" EXACT []
is_a: ENVO:01000637
property_value: IAO:0000111 "BLEO" xsd:string
[Term]
id: RBO:00000021
name: fractionated radiation exposure
def: "A radiation dose administered in two or more exposures at specified time intervals" []
is_a: RBO:00000082 ! radiobiology study type
property_value: IAO:0000111 "fractionated" xsd:string
[Term]
id: RBO:00000022
name: millirad
def: "A unit of absorbed dose equal to 1/1000 of a rad" []
synonym: "mrad" EXACT []
is_a: UO:1000135
[Term]
id: RBO:00000023
name: equivalent dose
def: "The product of the mean absorbed dose in an organ or tissue and the radiation weighting factor (w_R )of the radiation type of interest" []
is_a: RBO:010016 ! radiation dose
property_value: IAO:0000112 "The equivalent dose was calculated to be 300 mSv." xsd:string
[Term]
id: RBO:00000024
name: dose fraction
def: "The absorbed radiation dose administered in a single one of a series comprising a fractionated radiation exposure" []
is_a: RBO:010016 ! radiation dose
property_value: IAO:0000112 "The total dose was administered in five dose fractions." xsd:string
[Term]
id: RBO:00000026
name: cosmic radiation
def: "Penetrating ionizing radiation, both particulate and electromagnetic, that originates in outer space" []
is_a: RBO:00000002 ! space radiation
[Term]
id: RBO:00000027
name: galactic cosmic radiation
def: "Galactic cosmic radiation consists of high-energy charged particles originating from outside the solar system" []
is_a: RBO:00000026 ! cosmic radiation
property_value: IAO:0000112 "Galactic cosmic radiation is one of the principal sources of radiation dose outside low-earth orbit" xsd:string
[Term]
id: RBO:00000028
name: solar cosmic radiation
def: "Solar cosmic radiation is high-energy charged particles that originate from the sun." []
is_a: RBO:00000026 ! cosmic radiation
property_value: IAO:0000112 "Solar cosmic radiation contributes to the radiation dose to humans in space." xsd:string
[Term]
id: RBO:00000029
name: dose rate
def: "The measurement datum representing a dose to an organism or object per unit time." []
is_a: IAO:0000109
property_value: IAO:0000112 "The dose rate was 0.5 mGy/min." xsd:string
[Term]
id: RBO:00000033
name: spacecraft
def: "Vehicles, crewed or uncrewed, which are designed to orbit about the Earth or another celestial body or be placed into a trajectory to another celestial body or location in space." []
is_a: OBI:0000968
property_value: IAO:0000112 "The Apollo spacecraft took 24 astronauts to the Moon between 1968 and 1972." xsd:string
property_value: IAO:0000119 "NASA Thesaurus, 1988" xsd:string
[Term]
id: RBO:00000044
name: spacecraft module
def: "a self-contained unit of a spacecraft" []
is_a: RBO:00000033 ! spacecraft
[Term]
id: RBO:00000045
name: International Space Station module
def: "A self-contained unit of the International Space Station." []
is_a: RBO:00000044 ! spacecraft module
property_value: IAO:0000111 "ISS module" xsd:string
property_value: IAO:0000112 "The experiment was conducted in the International Space Station module Columbus" xsd:string
property_value: IAO:0000112 "The experiment was conducted on the Russian module of the ISS." xsd:string
[Term]
id: RBO:00000046
name: space station
def: "A spacecraft capable of supporting a human crew in orbit for an extended period of time. It lacks major propulsion or landing systems. Stations must have docking ports to allow other spacecraft to dock to transfer crew and supplies." []
is_a: RBO:00000033 ! spacecraft
property_value: IAO:0000112 "Mir was a space station that operated in low Earth orbit from 1986 to 2001, operated by the Soviet Union and later by Russia." xsd:string
property_value: IAO:0000119 "Wikipedia" xsd:string
[Term]
id: RBO:00000047
name: particle accelerator beamline
def: "The path leading from a particle accelerator to an experimental station used in experiments in particle physics, materials science, chemistry, and molecular biology, or in irradiation tests or to produce isotopes." []
is_a: RBO:00000121 ! particle accelerator
property_value: IAO:0000112 "The HIMAC accelerator has a beamline dedicated for radiation biology experiments." xsd:string
property_value: IAO:0000119 "Wikipedia" xsd:string
[Term]
id: RBO:00000049
name: particle accelerator radiation
def: "Radiation produced by a particle accelerator." []
is_a: RBO:00000003 ! ground radiation
[Term]
id: RBO:00000050
name: nuclear reactor radiation
def: "Radiation produced by a nuclear reactor." []
is_a: RBO:00000003 ! ground radiation
[Term]
id: RBO:00000051
name: Cesium-137 gamma radiation
def: "High energy photons emitted during nuclear decay of the Cesium-137 isotope." []
synonym: "Cs-137" EXACT []
is_a: RBO:00000120 ! gamma radiation
property_value: IAO:0000111 "Cs-137 gamma" xsd:string
[Term]
id: RBO:00000052
name: Cobalt-60 gamma radiation
def: "High energy photons emitted during nuclear decay of the Cobalt-60 isotope." []
synonym: "Co-60" EXACT []
is_a: RBO:00000120 ! gamma radiation
property_value: IAO:0000111 "Co-60 gamma" xsd:string
[Term]
id: RBO:00000058
name: Cobalt-57 gamma radiation
def: "High energy photons emitted during nuclear decay of the Cobalt-57 isotope." []
synonym: "Co-57" EXACT []
xref: obo:RBO_00000060
is_a: RBO:00000120 ! gamma radiation
property_value: IAO:0000111 "Co-57 gamma" xsd:string
[Term]
id: RBO:00000060
name: radionuclide
is_a: CHEBI:33250
[Term]
id: RBO:00000061
name: actinide
is_a: RBO:00000060 ! radionuclide
[Term]
id: RBO:00000062
name: actinium
is_a: RBO:00000061 ! actinide
[Term]
id: RBO:00000063
name: americium
is_a: RBO:00000061 ! actinide
[Term]
id: RBO:00000064
name: californium
is_a: RBO:00000061 ! actinide
[Term]
id: RBO:00000065
name: neptunium
is_a: RBO:00000061 ! actinide
[Term]
id: RBO:00000066
name: plutonium
is_a: RBO:00000061 ! actinide
[Term]
id: RBO:00000067
name: thorium
is_a: RBO:00000061 ! actinide
[Term]
id: RBO:00000068
name: uranium
is_a: RBO:00000061 ! actinide
[Term]
id: RBO:00000069
name: ultraviolet radiation
def: "Electromagnetic radiation with photon energies approximately 3-120 eV. High energy UV radiation can be ioinizing." []
is_a: RBO:00000114 ! ionizing electromagnetic radiation
property_value: IAO:0000111 "UV" xsd:string
property_value: IAO:0000118 "UV radiation" xsd:string
property_value: IAO:0000119 http://son.nasa.gov/tass/content/electrospectrum.htm xsd:string
[Term]
id: RBO:00000070
name: radioprotectant
is_a: CHEBI:24432
[Term]
id: RBO:00000071
name: radionuclide chelator
is_a: CHEBI:24432
[Term]
id: RBO:00000072
name: co-carcinogen
is_a: CHEBI:24432
[Term]
id: RBO:00000073
name: radiation response modifier
is_a: CHEBI:24432
[Term]
id: RBO:00000074
name: peptide radiation response modifier
is_a: RBO:00000073 ! radiation response modifier
[Term]
id: RBO:00000075
name: small molecule radiation response modifier
is_a: RBO:00000073 ! radiation response modifier
[Term]
id: RBO:00000076
name: nuclear industry worker
is_a: RBO:00000111 ! occupational role
[Term]
id: RBO:00000077
name: astronaut
is_a: RBO:00000111 ! occupational role
[Term]
id: RBO:00000078
name: military
is_a: RBO:00000111 ! occupational role
[Term]
id: RBO:00000079
name: medical professional
is_a: RBO:00000111 ! occupational role
[Term]
id: RBO:00000080
name: dentist
is_a: RBO:00000079 ! medical professional
[Term]
id: RBO:00000081
name: radiologist
is_a: RBO:00000079 ! medical professional
[Term]
id: RBO:00000082
name: radiobiology study type
is_a: OBI:0000011
[Term]
id: RBO:00000083
name: epidemiological study
is_a: RBO:00000082 ! radiobiology study type
[Term]
id: RBO:00000084
name: environmental study
is_a: RBO:00000082 ! radiobiology study type
[Term]
id: RBO:00000085
name: lifespan study
is_a: RBO:00000082 ! radiobiology study type
[Term]
id: RBO:00000086
name: carcinogenesis study
is_a: RBO:00000082 ! radiobiology study type
[Term]
id: RBO:00000087
name: tissue damage study
is_a: RBO:00000082 ! radiobiology study type
[Term]
id: RBO:00000088
name: dna damage and repair study
is_a: RBO:00000082 ! radiobiology study type
[Term]
id: RBO:00000089
name: physiological study
is_a: RBO:00000082 ! radiobiology study type
[Term]
id: RBO:00000090
name: anatomical study
is_a: RBO:00000082 ! radiobiology study type
[Term]
id: RBO:00000091
name: external exposure study
is_a: RBO:00000082 ! radiobiology study type
[Term]
id: RBO:00000092
name: internal contamination study
is_a: RBO:00000082 ! radiobiology study type
[Term]
id: RBO:00000093
name: mixed exposure route study
is_a: RBO:00000082 ! radiobiology study type
[Term]
id: RBO:00000094
name: acute external exposure study
is_a: RBO:00000091 ! external exposure study
[Term]
id: RBO:00000095
name: chronic external exposure study
is_a: RBO:00000091 ! external exposure study
[Term]
id: RBO:00000096
name: chronic internal contamination study
is_a: RBO:00000092 ! internal contamination study
[Term]
id: RBO:00000097
name: acute internal contamination study
is_a: RBO:00000092 ! internal contamination study
[Term]
id: RBO:00000098
name: acute mixed exposure route study
is_a: RBO:00000093 ! mixed exposure route study
[Term]
id: RBO:00000099
name: chronic mixed exposure route study
is_a: RBO:00000093 ! mixed exposure route study
[Term]
id: RBO:00000100
name: gene expression study
is_a: RBO:00000082 ! radiobiology study type
[Term]
id: RBO:00000101
name: proteomics study
is_a: RBO:00000082 ! radiobiology study type
[Term]
id: RBO:00000102
name: marker discovery study
is_a: RBO:00000082 ! radiobiology study type
[Term]
id: RBO:00000103
name: therapeutics study
is_a: RBO:00000082 ! radiobiology study type
[Term]
id: RBO:00000104
name: survival study
is_a: RBO:00000082 ! radiobiology study type
[Term]
id: RBO:00000105
name: metabolomics study
is_a: RBO:00000082 ! radiobiology study type
[Term]
id: RBO:00000106
name: nuclear accident study
is_a: RBO:00000082 ! radiobiology study type
[Term]
id: RBO:00000107
name: toxicity study
is_a: RBO:00000082 ! radiobiology study type
[Term]
id: RBO:00000108
name: endocrine study
is_a: RBO:00000089 ! physiological study
[Term]
id: RBO:00000109
name: offspring study
is_a: RBO:00000082 ! radiobiology study type
[Term]
id: RBO:00000110
name: biokinetics study
is_a: RBO:00000082 ! radiobiology study type
[Term]
id: RBO:00000111
name: occupational role
is_a: BFO:0000023
[Term]
id: RBO:00000112
name: high linear energy transfer radiation
def: "Neutrons or charged particles, such as protons or alpha particles that produce ionizing events densely spaced on a molecular scale (e.g., >10 keV-micron^[-1]." []
xref: NCIT:C17052
is_a: RBO:00000116 ! ionizing radiation
property_value: IAO:0000119 "NCRP https://ncrponline.org/wp-content/themes/ncrp/PDFs/NCRP-Composite-Glossary.pdf" xsd:string
[Term]
id: RBO:00000113
name: low linear energy transfer radiation
def: "X and gamma rays or light charged particles such as electrons that produce sparse ionizing events far apart on a molecular scale." []
synonym: "low LET|low-LET" EXACT []
xref: NCIT:C17052
is_a: RBO:00000116 ! ionizing radiation
property_value: IAO:0000119 "NCRP https://ncrponline.org/wp-content/themes/ncrp/PDFs/NCRP-Composite-Glossary.pdf" xsd:string
[Term]
id: RBO:00000114
name: ionizing electromagnetic radiation
def: "Electromagnetic radiation having sufficient energy to remove one or more electrons from an atom" []
is_a: RBO:00000116 ! ionizing radiation
[Term]
id: RBO:00000115
name: radiation dosimeter device
def: "A device that is used to measure the amount of ionizing radiation exposure or absorption." []
synonym: "dosimeter" EXACT []
xref: NCIT:C150121
is_a: OBI:0000968
property_value: IAO:0000111 "radiation dosimeter" xsd:string
property_value: IAO:0000118 "radiation dosimeter" xsd:string
property_value: IAO:0000119 "NCIT" xsd:string
[Term]
id: RBO:00000116
name: ionizing radiation
def: "Particle or electromagnetic radiation with sufficient energy to liberate one or more electrons from an atom." []
synonym: "ionising radiation" EXACT []
xref: NCIT:C17052
is_a: ENVO:01001023
property_value: IAO:0000118 "ionising radiation" xsd:string
[Term]
id: RBO:00000117
name: charged particle radiation
def: "Charged particles with kinetic energy imparted by natural or artificial means (such as by a particle accelerator)" []
xref: NCIT:C18982
is_a: ENVO:01001024
property_value: IAO:0000111 "charged particle" xsd:string
property_value: IAO:0000118 "charged particle" xsd:string
[Term]
id: RBO:00000118
name: risk estimate
xref: NCIT:C19015
is_a: OBI:0001909
[Term]
id: RBO:00000119
name: lifetime risk estimate
xref: NCIT:C19662
is_a: RBO:00000118 ! risk estimate
[Term]
id: RBO:00000120
name: gamma radiation
def: "electromagnetic radiation with photon energies greater than approximately 100 keV" []
xref: NCIT:C44386
is_a: RBO:00000114 ! ionizing electromagnetic radiation
property_value: IAO:0000119 http://son.nasa.gov/tass/content/electrospectrum.htm xsd:string
[Term]
id: RBO:00000121
name: particle accelerator
def: "A device used to impart kinetic energy to subatomic particles by means of electric and magnetic fields" []
xref: NCIT:C94854
is_a: OBI:0000968
is_a: RBO:00005014 ! radiation source
[Term]
id: RBO:00000122
name: nuclear reactor
def: "A device in which nuclear fission may be initiated and controlled in a self-sustaining chain reaction to generate energy or produce useful radiation." []
xref: MESH:D009688
is_a: OBI:0000968
is_a: RBO:00005014 ! radiation source
[Term]
id: RBO:00000123
name: biological process
xref: GO:0008150
is_a: BFO:0000015
[Term]
id: RBO:00000124
name: cellular process
xref: GO:0009987
is_a: RBO:00000123 ! biological process
[Term]
id: RBO:00000125
name: O-16 ion radiation
def: "Atomic nuclei, each with 8 protons and 8 neutrons with kinetic energy imparted by natural or artificial means (such as by a particle accelerator)" []
is_a: RBO:00005001 ! heavy ion radiation
[Term]
id: RBO:00000126
name: Ar-40 ion radiation
def: "Atomic nuclei, each with 18 protons and 22 neutrons with kinetic energy imparted by natural or artificial means (such as by a particle accelerator)" []
is_a: RBO:00005001 ! heavy ion radiation
[Term]
id: RBO:00000127
name: Ti-48 ion radiation
def: "Atomic nuclei, each with 22 protons and 26 neutrons with kinetic energy imparted by natural or artificial means (such as by a particle accelerator)" []
is_a: RBO:00005001 ! heavy ion radiation
[Term]
id: RBO:00000128
name: Kr-84 ion radiation
def: "Atomic nuclei, each with 36 protons and 48 neutrons with kinetic energy imparted by natural or artificial means (such as by a particle accelerator)" []
is_a: RBO:00005001 ! heavy ion radiation
[Term]
id: RBO:00000129
name: Nb-93 ion radiation
def: "Atomic nuclei, each with 41 protons and 52 neutrons with kinetic energy imparted by natural or artificial means (such as by a particle accelerator)" []
is_a: RBO:00005001 ! heavy ion radiation
[Term]
id: RBO:00000130
name: Ag-107 ion radiation
def: "Atomic nuclei, each with 47 protons and 60 neutrons with kinetic energy imparted by natural or artificial means (such as by a particle accelerator)" []
is_a: RBO:00005001 ! heavy ion radiation
[Term]
id: RBO:00000131
name: Xe-129 ion radiation
def: "Atomic nuclei, each with 54 protons and 75 neutrons with kinetic energy imparted by natural or artificial means (such as by a particle accelerator)" []
is_a: RBO:00005001 ! heavy ion radiation
[Term]
id: RBO:00000132
name: Ta-181 ion radiation
def: "Atomic nuclei, each with 73 protons and 108 neutrons with kinetic energy imparted by natural or artificial means (such as by a particle accelerator)" []
is_a: RBO:00005001 ! heavy ion radiation
[Term]
id: RBO:00000133
name: Au-197 ion radiation
def: "Atomic nuclei, each with 79 protons and 118 neutrons with kinetic energy imparted by natural or artificial means (such as by a particle accelerator)" []
is_a: RBO:00005001 ! heavy ion radiation
[Term]
id: RBO:00000134
name: N-14 ion radiation
def: "Atomic nuclei, each with 7 protons and 7 neutrons with kinetic energy imparted by natural or artificial means (such as by a particle accelerator)" []
is_a: RBO:00005001 ! heavy ion radiation
[Term]
id: RBO:00005001
name: heavy ion radiation
def: "Atomic nuclei, with atomic number 2 or greater and kinetic energy imparted by natural or artificial means" []
is_a: RBO:00000117 ! charged particle radiation
[Term]
id: RBO:00005002
name: light ion radiation
def: "Atomic nuclei, variously defined as having atomic number 2, 3, 4, 5 or 6 and kinetic energy imparted by natural or artificial means" []
is_a: RBO:00000117 ! charged particle radiation
[Term]
id: RBO:00005003
name: charged particle
def: "A particle with a positive or negative electric charge" []
is_a: BFO:0000040
[Term]
id: RBO:00005004
name: Iron-56 nucleus
def: "An atomic nucleus with 26 protons and 30 neutrons " []
is_a: RBO:010012 ! heavy ion
[Term]
id: RBO:00005005
name: Silicon-28 nucleus
def: "An atomic nucleus with 14 protons and 14 neutrons " []
is_a: RBO:010012 ! heavy ion
[Term]
id: RBO:00005006
name: Carbon-12 nucleus
def: "An atomic nucleus with 6 protons and 6 neutrons " []
is_a: RBO:010012 ! heavy ion
[Term]
id: RBO:00005007
name: Helium-4 nucleus
def: "An atomic nucleus with 2 protons and 2 neutrons " []
is_a: RBO:010012 ! heavy ion
[Term]
id: RBO:00005008
name: Neon-20 nucleus
def: "An atomic nucleus with 10 protons and 10 neutrons " []
is_a: RBO:010012 ! heavy ion
[Term]
id: RBO:00005009
name: space flight
def: "Activity carried out by crewed or robotic vehicles outside the Earth's atmmosphere." []
synonym: "Space flight" EXACT []
is_a: ENVO:03000010
property_value: IAO:0000111 "space flight" xsd:string
property_value: IAO:0000118 "spaceflight" xsd:string
[Term]
id: RBO:00005010
name: absorbed radiation dose
def: "The amount of energy from any type of ionizing radiation deposited in a specified mass of any medium." []
is_a: RBO:010016 ! radiation dose
property_value: IAO:0000117 "Jack Miller" xsd:string
[Term]
id: RBO:00005011
name: absorbed radiation dose rate
def: "The amount of energy from any type of ionizing radiation deposited in a specified mass of any medium per unit time." []
is_a: RBO:00000029 ! dose rate
property_value: IAO:0000117 "Jack Miller" xsd:string
[Term]
id: RBO:00005012
name: ionizing radiation energy
def: "The kinetic energy carried by a particle or photon of ionizing radiation. " []
is_a: RBO:00000116 ! ionizing radiation
property_value: IAO:0000117 "Jack Miller" xsd:string
[Term]
id: RBO:00005013
name: x-ray radiation
def: "Electromagnetic radiation with photon energies approximately between 0.1 and 120 keV. The upper end of the x-ray spectrum overlaps with the lower end of the gamma ray spectrum." []
is_a: RBO:00000114 ! ionizing electromagnetic radiation
property_value: IAO:0000111 "x-ray" xsd:string
property_value: IAO:0000117 "Jack Miller" xsd:string
property_value: IAO:0000118 "x-ray" xsd:string
property_value: IAO:0000119 http://son.nasa.gov/tass/content/electrospectrum.htm xsd:string
[Term]
id: RBO:00005014
name: radiation source
def: "A material entity which emits radiation" []
is_a: BFO:0000040
property_value: IAO:0000117 "Jack Miller" xsd:string
[Term]
id: RBO:00005015
name: sham irradiation
def: "A protocol in which a sample is kept under conditions identical to irradiated samples, without exposure" []
is_a: OBI:0000272
property_value: IAO:0000111 "sham irradiation" xsd:string
property_value: IAO:0000117 "Jack Miller" xsd:string
property_value: IAO:0000118 "sham" xsd:string
[Term]
id: RBO:00005016
name: radiation fractionation protocol
def: "A protocol for administering a total radiation dose in two or more increments separated by a specified time interval" []
is_a: IAO:0000104
property_value: IAO:0000111 "fractionation protocol" xsd:string
property_value: IAO:0000117 "Jack Miller" xsd:string
property_value: IAO:0000118 "fractionation protocol" xsd:string
[Term]
id: RBO:00005017
name: cis-lunar space
def: "The region of space between the Earth and the Moon" []
is_a: RBO:00000016 ! radiation environment
property_value: IAO:0000111 "cis-lunar space" xsd:string
property_value: IAO:0000117 "Jack Miller" xsd:string
[Term]
id: RBO:00005018
name: lunar orbit
def: "A region of space defined by a regular, repeating path of a specified object about Earth's moon" []
is_a: RBO:00000016 ! radiation environment
property_value: IAO:0000111 "lunar orbit" xsd:string
property_value: IAO:0000117 "Jack Miller" xsd:string
[Term]
id: RBO:00005019
name: lunar surface
def: "The area of the lunar landmass exposed to space" []
is_a: RBO:00000016 ! radiation environment
property_value: IAO:0000111 "lunar surface" xsd:string
property_value: IAO:0000117 "Jack Miller" xsd:string
[Term]
id: RBO:00005020
name: cis-Mars space
def: "The region of space between the Earth and Mars" []
is_a: RBO:00000016 ! radiation environment
property_value: IAO:0000111 "cis-Mars space" xsd:string
property_value: IAO:0000117 "Jack Miller" xsd:string
[Term]
id: RBO:00005021
name: Mars orbit
def: "A region of space defined by a regular, repeating path of a specified object about Mars" []
is_a: RBO:00000016 ! radiation environment
property_value: IAO:0000111 "Mars orbit" xsd:string
property_value: IAO:0000117 "Jack Miller" xsd:string
[Term]
id: RBO:00005022
name: Mars surface
def: "The area of the Mars landmass exposed to the Martian atmosphere" []
is_a: RBO:00000016 ! radiation environment
property_value: IAO:0000111 "Mars surface" xsd:string
property_value: IAO:0000117 "Jack Miller" xsd:string
[Term]
id: RBO:00005023
name: interplanetary space
def: "The region of space in the Solar System between planets" []
is_a: RBO:00000016 ! radiation environment
property_value: IAO:0000111 "interplanetary space" xsd:string
property_value: IAO:0000117 "Jack Miller" xsd:string
[Term]
id: RBO:00005024
name: planet surface
def: "The outermost solid or liquid area of a planet" []
is_a: RBO:00000016 ! radiation environment
property_value: IAO:0000111 "planet surface" xsd:string
property_value: IAO:0000117 "Jack Miller" xsd:string
[Term]
id: RBO:00005025
name: non-irradiated
def: "An organism or material entity kept unexposed to radiation, for purposes of comparison to a similar organism or material entity that has been exposed to radiation " []
is_a: PATO:0001744
property_value: IAO:0000111 "non-irradiated" xsd:string
property_value: IAO:0000117 "Jack Miller" xsd:string
[Term]
id: RBO:00005026
name: ground analog study
def: "A study at a ground facility designed so as to replicate one or more conditions in space (e.g. radiation, microgravity, isolation)" []
is_a: RBO:00000082 ! radiobiology study type
property_value: IAO:0000111 "ground analog experiment" xsd:string
property_value: IAO:0000117 "Jack Miller" xsd:string
property_value: IAO:0000118 "ground analog" xsd:string
[Term]
id: RBO:00005027
name: ground control study
def: "An study at a ground facility designed so as to replicate conditions in space (e.g. radiation, microgravity, isolation) with the exception of one condition, so as to ascertain the effects of that condition on an organism or instrument" []
is_a: RBO:00000082 ! radiobiology study type
property_value: IAO:0000111 "ground control" xsd:string
property_value: IAO:0000117 "Jack Miller" xsd:string
property_value: IAO:0000118 "ground control" xsd:string
[Term]
id: RBO:00005028
name: irradiation protocol
def: "A protocol for administering radiation to a sample " []
is_a: ENVO:01001488
property_value: IAO:0000111 "irradiation protocol" xsd:string
property_value: IAO:0000117 "Jack Miller" xsd:string
[Term]
id: RBO:00005029
name: radiation fraction
def: "One of the series of individual doses administered to a sample in a fractionated irradiation." []
is_a: RBO:00000024 ! dose fraction
property_value: IAO:0000111 "radiation fraction" xsd:string
property_value: IAO:0000117 "Jack Miller" xsd:string
property_value: IAO:0000118 "fraction" xsd:string
[Term]
id: RBO:00005030
name: radiation fraction interval
def: "Time between fractions in a fractionated irradiation." []
is_a: RBO:00000029 ! dose rate
property_value: IAO:0000111 "radiation fraction interval" xsd:string
property_value: IAO:0000117 "Jack Miller" xsd:string
[Term]
id: RBO:00005031
name: high altitude
def: "The region of the atmosphere above 8000 feet above sea level. Altitudes above 12000 feet are sometimes referred to as very high altitude, and above 18000 feet as extremely high altitude." []
is_a: OBI:0002983
property_value: IAO:0000111 "high altitude" xsd:string
property_value: IAO:0000117 "Jack Miller" xsd:string
property_value: IAO:0000119 https://www.medicinenet.com/high_altitude/definition.htm xsd:string
[Term]
id: RBO:00005032
name: sham-irradiated
def: "A radiation quality resulting from a material entity being kept under similar conditions as an irradiated material entity" []
is_a: RBO:00005025 ! non-irradiated
property_value: IAO:0000111 "sham" xsd:string
property_value: IAO:0000117 "Jack Miller" xsd:string
[Term]
id: RBO:00005033
name: parabolic flight aircraft
def: "An aircraft which flies a series of parabolic arcs to simulate micrgravity." []
is_a: ENVO:01001488
property_value: IAO:0000111 "parabolic flight" xsd:string
property_value: IAO:0000117 "Jack Miller" xsd:string
property_value: IAO:0000118 "Vomit Comet" xsd:string
[Term]
id: RBO:00005034
name: high altitude research aircraft
def: "An aircraft which flies at altitudes greater than commercial aircraft altitudes for research purposes." []
is_a: ENVO:01001488
property_value: IAO:0000117 "Jack Miller" xsd:string
[Term]
id: RBO:00005035
name: uncrewed aerial vehicle
def: "An research aircraft designed to operate without crew members, either autonomously or under control from a ground station" []
is_a: ENVO:01001488
property_value: IAO:0000111 "UAV" xsd:string
property_value: IAO:0000117 "Jack Miller" xsd:string
property_value: IAO:0000118 "UAV" xsd:string
[Term]
id: RBO:00005036
name: highly charged energetic nuclei
def: "Fully ionized atomic nuclei with 2 or more protons and energies in excess of tens of MeV per nucleon" []
is_a: RBO:00005003 ! charged particle
property_value: IAO:0000111 "HZE" xsd:string
property_value: IAO:0000117 "Jack Miller" xsd:string
property_value: IAO:0000118 "HZE" xsd:string
[Term]
id: RBO:00005037
name: adaptive radiation response study
def: "A study of a response to radiation conditioned by prior administration of radiation of a different type and/or at a different dose or dose rate" []
is_a: RBO:00000082 ! radiobiology study type
property_value: IAO:0000117 "Jack Miller" xsd:string
property_value: IAO:0000118 "adaptive" xsd:string
[Term]
id: RBO:00005038
name: average fractionated dose rate
def: "The total dose administered in a series of radiation fractions divided by the elapsed time between the beginning of the first exposure fraction and the end of the last exposure fraction" []