forked from obi-ontology/obi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
devices.owl
11450 lines (8802 loc) · 880 KB
/
devices.owl
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
<?xml version="1.0"?>
<rdf:RDF xmlns="http://purl.obolibrary.org/obo/obi/dev/modules/devices.owl#"
xml:base="http://purl.obolibrary.org/obo/obi/dev/modules/devices.owl"
xmlns:obo="http://purl.obolibrary.org/obo/"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:xml="http://www.w3.org/XML/1998/namespace"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#">
<owl:Ontology rdf:about="http://purl.obolibrary.org/obo/obi/dev/modules/devices.owl"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Annotation properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/IAO_0000111 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000111"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000112 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000112"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000114 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000114"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000115 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000115"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000116 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000116"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000117 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000117"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000118 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000118"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000119 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000119"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000232 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000232"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000233 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000233"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000234 -->
<owl:AnnotationProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000234"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Object Properties
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/BFO_0000050 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000050"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000051 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000051"/>
<!-- http://purl.obolibrary.org/obo/BFO_0000054 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/BFO_0000054"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000136 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/IAO_0000136"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000299 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/OBI_0000299"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000304 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/OBI_0000304"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000643 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/OBI_0000643"/>
<!-- http://purl.obolibrary.org/obo/RO_0000053 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000053"/>
<!-- http://purl.obolibrary.org/obo/RO_0000085 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0000085"/>
<!-- http://purl.obolibrary.org/obo/RO_0002215 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002215"/>
<!-- http://purl.obolibrary.org/obo/RO_0002219 -->
<owl:ObjectProperty rdf:about="http://purl.obolibrary.org/obo/RO_0002219"/>
<!--
///////////////////////////////////////////////////////////////////////////////////////
//
// Classes
//
///////////////////////////////////////////////////////////////////////////////////////
-->
<!-- http://purl.obolibrary.org/obo/BFO_0000034 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/BFO_0000034"/>
<!-- http://purl.obolibrary.org/obo/CHEBI_32142 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/CHEBI_32142"/>
<!-- http://purl.obolibrary.org/obo/GO_0006306 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/GO_0006306"/>
<!-- http://purl.obolibrary.org/obo/IAO_0000109 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/IAO_0000109"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000038 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000038">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000968"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000967"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000085"/>
<owl:someValuesFrom>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/OBI_0000372"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000054"/>
<owl:allValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0600046"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:someValuesFrom>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">chromatography column</obo:IAO_0000111>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000123"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Chromatography column in chemistry is a tube and contents (typically glass) used to purify individual chemical compounds from mixtures of compounds. It is often used for preparative applications on scales from micrograms up to kilograms.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Frank Gibson</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://en.wikipedia.org/wiki/Column_chromatography</obo:IAO_0000119>
<obo:IAO_0000232 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">open tracker https://sourceforge.net/tracker/index.php?func=detail&aid=2881353&group_id=177891&atid=886178</obo:IAO_0000232>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">chromatography column</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000041 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000041">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000968"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000085"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000379"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pump valve switch</obo:IAO_0000111>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000123"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A pump valve switch is a cardinal part of a liquid chromatography instrument that controls the flow.</obo:IAO_0000115>
<obo:IAO_0000116 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">FG:I would assume this should be a pump valve control switch and it would not be specific to a liquid chromatography instrument</obo:IAO_0000116>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBI Instrument branch</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBI</obo:IAO_0000119>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">pump valve switch</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000048 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000048">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000968"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000085"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000370"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000085"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000372"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000085"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000401"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000085"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000453"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">chromatography device</obo:IAO_0000111>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A device that facilitates the separation of mixtures. The function of a chromatography device involves passing a mixture dissolved in a "mobile phase" through a stationary phase, which separates the analyte to be measured from other molecules in the mixture and allows it to be isolated.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Frank Gibson</obo:IAO_0000117>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">chromatography instrument</obo:IAO_0000118>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://en.wikipedia.org/wiki/Chromatography</obo:IAO_0000119>
<obo:IAO_0000232 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">open tracker https://sourceforge.net/tracker/index.php?func=detail&aid=2881353&group_id=177891&atid=886178</obo:IAO_0000232>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">chromatography device</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000049 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000049">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000968"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000345"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000361"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000364"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000085"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000453"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mass spectrometer</obo:IAO_0000111>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">LCQ Fleet Ion Trap MSn manufactured by thermo fisher scientific</obo:IAO_0000112>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000122"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A mass spectrometer is an instrument which is used to measure the mass to charge ratio of ions. All mass spectrometers consist of three basic parts: an ion source, a mass analyzer, and a detector system. The stages within the mass spectrometer are: 1. Production of ions from the sample 2. Separation of ions with different masses 3. Detection of the number of ions of each mass produced 4.Collection of data to generate the mass spectrum</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Frank Gibson</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://en.wikipedia.org/wiki/Mass_spectrometry</obo:IAO_0000119>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mass spectrometer</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000051 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000051">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000968"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000048"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000049"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000085"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000372"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000085"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000453"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">liquid chromatography mass spectrometry platform</obo:IAO_0000111>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000123"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A liquid chromatography mass spectrometry platform is a platform that is the collection of instrument, software and reagents needed to perform a liquid chromatography mass spectrometry protocol. definition_source: OBI.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBI instrument branch</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBI Instrument branch</obo:IAO_0000119>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">liquid chromatography mass spectrometry platform</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000052 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000052">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000968"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/BFO_0000051"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0400147"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000085"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000401"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">microarray platform</obo:IAO_0000111>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000123"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A microarray platform is a platform that contains the instruments, software and reagents needed to perform a microarray protocol. definition_source: OBI.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBI Instrument branch</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBI Instrument branch</obo:IAO_0000119>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">microarray platform</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000059 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000059">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000968"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000085"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000453"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">gamma counter</obo:IAO_0000111>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A Geiger counter</obo:IAO_0000112>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000122"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A processed material which measures gamma radiation</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Frank Gibson</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://en.wikipedia.org/wiki/Gamma_counter</obo:IAO_0000119>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">gamma counter</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000070 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000070"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000084 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000084">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000836"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">polystyrene tube</obo:IAO_0000111>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Polystyrene tubes can be used to contain tissue culture cells during centrifgation</obo:IAO_0000112>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000122"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A polystyrene tube is a test tube made of polystyrene</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Chris Stoeckert</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Chris Stoeckert</obo:IAO_0000119>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">polystyrene tube</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000136 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000136">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000968"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000085"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000401"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">incubator</obo:IAO_0000111>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Incubators are used in microbiology for culturing (growing) bacteria and other microorganisms. Incubators in tissue culture rooms are used for culturing stem cells, lymphocytes, skin fibroblasts and other types of cells</obo:IAO_0000112>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A device in which environmental conditions (light, photoperiod, temperature, humidity, etc.) can be controlled</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Frank Gibson</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://www.medterms.com/script/main/art.asp?articlekey=18426</obo:IAO_0000119>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">incubator</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000146 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000146">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000968"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000085"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000370"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">supernatant collection system harvesting frame</obo:IAO_0000111>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A device that is designed for collecting 90% of the supernatant in a microplate well and separating the living cell with no stress, eliminating centrifugation and other similar techniques. It can be used in a variety of release assays with different radioactive isotopes, such as Cr51 or I125.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Daniel Schober</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">google</obo:IAO_0000119>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">supernatant collection system harvesting frame</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000151 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000151">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000968"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000085"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000378"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">filter paper</obo:IAO_0000111>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A device manufacture with the intent to provide a porous unsized paper used for filtering.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Frank Gibson</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sep:00107</obo:IAO_0000119>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">filter paper</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000192 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000192">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000968"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000085"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000370"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">microtiter plate</obo:IAO_0000111>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A microtiter plate with 6, 24, 96, 384 or 1536 sample wells used in the enzyme-linked immunosorbent assay (ELISA)</obo:IAO_0000112>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000122"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A microtiter_plate is a flat plate with multiple wells used as small test tubes.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Melanie Courtot</obo:IAO_0000117>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">microplate</obo:IAO_0000118>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://en.wikipedia.org/wiki/Microtiter_plate</obo:IAO_0000119>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">microtiter plate</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000345 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000345">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000968"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000085"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000372"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000085"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000453"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mass analyzer</obo:IAO_0000111>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The mass analyzer of the Voyager-DE(tm) STR Biospectrometry Workstation</obo:IAO_0000112>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A Mass analyzer is a device that separates ions according to their mass-to-charge ratio. All mass spectrometers are based on dynamics of charged particles in electric and magnetic fields in vacuum where the two laws of Lorentz force law and Newton's second law of motion apply.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Frank Gibson</obo:IAO_0000117>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON: Daniel Schober</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://en.wikipedia.org/wiki/Mass_spectrometry#Mass_analyzer</obo:IAO_0000119>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">mass analyzer</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000361 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000361">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000968"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000085"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000385"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ion source</obo:IAO_0000111>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The ion source of a Voyager-DE??? STR Biospectrometry Workstation</obo:IAO_0000112>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000122"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An ion source is a device that is part of a mass spectrometer that ionizes the material under analysis. The ions are then transported by magnetic or electric fields to the mass analyzer. Techniques for ionization have been key to determining what types of samples can be analyzed by mass spectrometry. Electron ionization and chemical ionization are used for gases and vapors. In chemical ionization sources, the material is ionized by chemical ion-molecule reactions during collisions in the source. Two techniques often used with liquid and solid biological samples include electrospray ionization (due to John Fenn PMID 2675315.) and matrix-assisted laser desorption/ionization (MALDI, due to M. Karas and F. Hillenkamp (Measuring Mass: From Positive Rays to Proteins by Michael A. Grayson (Editor) (ISBN 0-941901-31-9))).</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Frank Gibson</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://en.wikipedia.org/wiki/Mass_spectrometry#Ion_source</obo:IAO_0000119>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ion source</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000364 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000364">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000968"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000085"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000453"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ion detector</obo:IAO_0000111>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The ion detector of the Voyager-DE(tm) STR Biospectrometry Workstation</obo:IAO_0000112>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000122"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An ion detector is a device that measures and records the charge induced or current produced when an ion passes by or hits a surface. Example: In a scanning instrument the signal produced in the detector during the course of the scan versus where the instrument is in the scan (at what m/Q) will produce a mass spectrum, a record of ions as a function of m/Q.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Frank Gibson</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://en.wikipedia.org/wiki/Mass_spectrometry#Detector</obo:IAO_0000119>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">ion detector</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000367 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000367"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000368 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000368"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000369 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000369"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000370 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000370"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000371 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000371"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000372 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000372"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000374 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000374"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000375 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000375"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000376 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000376"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000377 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000377"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000378 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000378"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000379 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000379"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000383 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000383"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000384 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000384"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000385 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000385"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000387 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000387"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000389 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000389">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000968"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000085"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000370"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000085"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000383"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000085"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000401"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">isoelectric focusing device</obo:IAO_0000111>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An isoelectric focusing device is a device in which isoelectric focusing can be performed. An isoelectric focussing device had the function to contain and control the contained environment and transfer electrical energy from a power supply to a separation medium and the charged material to be separated.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Frank Gibson</obo:IAO_0000117>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">isoelectric focusing unit</obo:IAO_0000118>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sep:00097</obo:IAO_0000119>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">isoelectric focusing device</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000390 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000390">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000968"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000085"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000370"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000085"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000401"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">thermostatic circulator</obo:IAO_0000111>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A thermostatic circulator is a device which cools or heats a circulating liquid. It has the function to contain control the contained environment and transfer energy from or to the circulating liquid</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Frank Gibson</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sep:00098</obo:IAO_0000119>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">thermostatic circulator</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000392 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000392"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000393 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000393"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000394 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000394">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000968"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000085"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000383"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">blot module</obo:IAO_0000111>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000123"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A blot module is a device which has the function to conatin and facilitate the material transfer process blotting to be realised</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Frank Gibson</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sep:00092</obo:IAO_0000119>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">blot module</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000395 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000395"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000397 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000397"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000398 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000398">
<owl:equivalentClass>
<owl:Class>
<owl:intersectionOf rdf:parseType="Collection">
<rdf:Description rdf:about="http://purl.obolibrary.org/obo/OBI_0000968"/>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000085"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000397"/>
</owl:Restriction>
</owl:intersectionOf>
</owl:Class>
</owl:equivalentClass>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">image acquisition device</obo:IAO_0000111>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000123"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An image creation device is a device which captures a digitized image of an object</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Frank Gibson</obo:IAO_0000117>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">image acquisition device</obo:IAO_0000118>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sep:00096</obo:IAO_0000119>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">image creation device</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000399 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000399"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000401 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000401"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000403 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000403"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000404 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000404">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000968"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000085"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000370"/>
</owl:Restriction>
</rdfs:subClassOf>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000085"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000401"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">gel dryer</obo:IAO_0000111>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A gel dryer is a device which has the function to contain and to control the contained environment to facilitate the drying of gels</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Frank Gibson</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">sep:00094</obo:IAO_0000119>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">gel dryer</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000415 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000415"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000422 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000422">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000968"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000085"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000383"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">syringe</obo:IAO_0000111>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Accuracy of oral liquid measuring devices: comparison of dosing cup and oral dosing syringe.Ann Pharmacother. 2008 Jan;42(1):46-52. Epub 2007 Dec 4. PMID: 18056832</obo:IAO_0000112>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000122"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A processed material which is used to introduce or draw fluids from a material entity. A syringe is made of a piston and body. the movement of the piston in the body determines the amount/volume of fluid to inject or draw</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Philippe Rocca-Serra</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBI Instrument adapted from Wikipedia</obo:IAO_0000119>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">syringe</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000436 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000436">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000968"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000085"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000383"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">needle</obo:IAO_0000111>
<obo:IAO_0000112 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Ovarian carcinoma presenting with axillary lymph node metastasis: A case diagnosed by fine-needle aspiration and brief review of the literature. Diagn Cytopathol. 2008 Oct 16. PMID: 18925569</obo:IAO_0000112>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A needle is a sharp, hollow device used to penetrate tissue or soft material. When attached to a syringe. it allows delivery of a specific volume of liquid or gaseous mixture.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Philippe Rocca-Serra</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">OBI Instrument</obo:IAO_0000119>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">needle</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000448 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000448">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000038"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">packed column</obo:IAO_0000111>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A packed column is a chromatography column where the particles of the solid stationary phase or the support coated with a liquid stationary phase may fill the whole inside volume of the tube.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON:Daniel Schober</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WEB:<http:www.iupac.org/publications/pac/1993/pdf/6504x0819.pdf></obo:IAO_0000119>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://msi-ontology.sourceforge.net/ontology/CHROM.owl#msi_01218</obo:IAO_0000119>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">packed column</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000453 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000453"/>
<!-- http://purl.obolibrary.org/obo/OBI_0000463 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000463">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000968"/>
<rdfs:subClassOf>
<owl:Restriction>
<owl:onProperty rdf:resource="http://purl.obolibrary.org/obo/RO_0000085"/>
<owl:someValuesFrom rdf:resource="http://purl.obolibrary.org/obo/OBI_0000453"/>
</owl:Restriction>
</rdfs:subClassOf>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">column chromatography detector</obo:IAO_0000111>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">There is a wide range of detectors available for both GC and LC each having their own particular areas of application. In general the more catholic the response, the less sensitive the detector and the most sensitive detectors are those that have a specific response. The performance of all detectors should be properly specified so that the user can determine which is most suitable for a specific application. Such specifications are also essential to compare the performance of different detectors supplied by alternative instrument manufactures. Detector specifications should be presented in a standard form and in standard units, so that detectors can be compared that function on widely different principles.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON:Daniel Schober</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WEB:<http://www.chromatography-online.org/Principles/Basic-Chromatograph/Detector/rs56.html></obo:IAO_0000119>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://msi-ontology.sourceforge.net/ontology/CHROM.owl#msi_01077</obo:IAO_0000119>
<obo:IAO_0000232 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">chromatography detector, defined class/xps</obo:IAO_0000232>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">column chromatography detector</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000464 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000464">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000555"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Bruker autosampler</obo:IAO_0000111>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">A Bruker autosampler is an autosampler made by Bruker.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON:Daniel Schober</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GROUP:<http://msi-ontology.sourceforge.net></obo:IAO_0000119>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://msi-ontology.sourceforge.net/ontology/NMR.owl#msi_400209</obo:IAO_0000119>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Bruker autosampler</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000465 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000465">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000038"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">organic acid column</obo:IAO_0000111>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">An organic acid column is a chromatography column which enables (reversed-phase) separation of hydrophilic aliphatic and aromatic organic acids with UV detection. Organic acid columns allow retention of polar and apolar organic acids and are hydrolysis resistant.</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON:Daniel Schober</obo:IAO_0000117>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">GROUP:<http://msi-ontology.sourceforge.net></obo:IAO_0000119>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://msi-ontology.sourceforge.net/ontology/CHROM.owl#msi_01099</obo:IAO_0000119>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">organic acid column</rdfs:label>
</owl:Class>
<!-- http://purl.obolibrary.org/obo/OBI_0000466 -->
<owl:Class rdf:about="http://purl.obolibrary.org/obo/OBI_0000466">
<rdfs:subClassOf rdf:resource="http://purl.obolibrary.org/obo/OBI_0000637"/>
<obo:IAO_0000111 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">thermal conductivity detector</obo:IAO_0000111>
<obo:IAO_0000114 rdf:resource="http://purl.obolibrary.org/obo/IAO_0000120"/>
<obo:IAO_0000115 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">The most commonly used detector in preparative GC is the thermal conductivity detector (hot wire detector). Even this detector, however, is often too sensitive and has too high a flow impedance. Under such circumstances, the procedure mentioned above must be employed. The eluent from the preparative column is split and a small portion diverted through the detector (sometimes with further dilution with carrier gas to reduce sensitivity).</obo:IAO_0000115>
<obo:IAO_0000117 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">PERSON:Daniel Schober</obo:IAO_0000117>
<obo:IAO_0000118 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">TCD, hot wire detector</obo:IAO_0000118>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">WEB:<http://www.chromatography-online.org/Preparative/Apparatus/Detectors/rs27.html></obo:IAO_0000119>
<obo:IAO_0000119 rdf:datatype="http://www.w3.org/2001/XMLSchema#string">http://msi-ontology.sourceforge.net/ontology/CHROM.owl#msi_01084</obo:IAO_0000119>
<rdfs:label rdf:datatype="http://www.w3.org/2001/XMLSchema#string">thermal conductivity detector</rdfs:label>
</owl:Class>