forked from HUPO-PSI/psi-ms-CV
-
Notifications
You must be signed in to change notification settings - Fork 0
/
psi-ms.obo
22635 lines (19466 loc) · 872 KB
/
psi-ms.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: 4.1.67
date: 04:12:2021 00:00
saved-by: Matt Chambers
auto-generated-by: OBO-Edit 2.3.1
import: http://purl.obolibrary.org/obo/pato.obo
import: http://purl.obolibrary.org/obo/uo.obo
default-namespace: MS
namespace-id-rule: * MS:$sequence(7,0,9999999)$
namespace-id-rule: * PEFF:$sequence(7,0,9999999)$
remark: namespace: MS
remark: namespace: PEFF
remark: coverage: Mass spectrometer output files and spectra interpretation
remark: creator: Yasset Perez-Riverol <yperez <-at-> ebi.ac.uk>
remark: creator: Matt Chambers <matt.chambers <-at-> vanderbilt.edu>
remark: creator: Andreas Bertsch <bertsch <-at-> informatik.uni-tuebingen.de>
remark: creator: Marius Kallhardt <Marius.Kallhardt <-at-> bdal.de>
remark: creator: Eric Deutsch <edeutsch <-at-> systemsbiology.org>
remark: creator: Fredrik Levander <fredrik.levander <-at-> immun.lth.se>
remark: creator: Pierre-Alain Binz <pierre-alain.binz <-at-> chuv.ch>
remark: creator: Gerhard Mayer <mayerg97 <-at-> rub.de>
remark: creator: Joshua Klein <jaklein <-at-> bu.edu>
remark: publisher: HUPO Proteomics Standards Initiative Mass Spectrometry Standards Working Group and HUPO Proteomics Standards Initiative Proteomics Informatics Working Group
remark: When appropriate the definition and synonyms of a term are reported exactly as in the chapter 12 of IUPAC orange book. See http://www.iupac.org/projects/2003/2003-056-2-500.html and http://mass-spec.lsu.edu/msterms/index.php/Main_Page
remark: For any queries contact [email protected]
remark: URL: https://raw.githubusercontent.com/HUPO-PSI/psi-ms-CV/master/psi-ms.obo
remark: This work is licensed under the Creative Commons Attribution 4.0 International (CC BY 4.0) license.
remark: To view a copy of this license, visit https://creativecommons.org/licenses/by/4.0/ or send a letter to Creative Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA.
ontology: ms
[Typedef]
id: has_regexp
name: has regexp
[Typedef]
id: has_units
name: has_units
[Typedef]
id: part_of
name: part_of
is_transitive: true
[Typedef]
id: has_order
name: has_order
[Typedef]
id: has_domain
name: has_domain
[Typedef]
id: has_value_type
name: has value type
def: "'Entity A' has value type 'Entity B', such as xsd:float." []
[Term]
id: MS:0000000
name: Proteomics Standards Initiative Mass Spectrometry Vocabularies
def: "Proteomics Standards Initiative Mass Spectrometry Vocabularies." [PSI:MS]
[Term]
id: MS:1000001
name: sample number
def: "A reference number relevant to the sample under study." [PSI:MS]
xref: value-type:xsd\:string "The allowed value-type for this CV term."
is_a: MS:1000548 ! sample attribute
relationship: has_value_type xsd\:string ! The allowed value-type for this CV term
[Term]
id: MS:1000002
name: sample name
def: "A reference string relevant to the sample under study." [PSI:MS]
xref: value-type:xsd\:string "The allowed value-type for this CV term."
is_a: MS:1000548 ! sample attribute
relationship: has_value_type xsd\:string ! The allowed value-type for this CV term
[Term]
id: MS:1000003
name: sample state
def: "The chemical phase of a pure sample, or the state of a mixed sample." [PSI:MS]
is_a: MS:1000548 ! sample attribute
[Term]
id: MS:1000004
name: sample mass
def: "Total mass of sample used." [PSI:MS]
xref: value-type:xsd\:float "The allowed value-type for this CV term."
is_a: MS:1000548 ! sample attribute
relationship: has_units UO:0000021 ! gram
relationship: has_value_type xsd\:float ! The allowed value-type for this CV term
[Term]
id: MS:1000005
name: sample volume
def: "Total volume of solution used." [PSI:MS]
xref: value-type:xsd\:float "The allowed value-type for this CV term."
is_a: MS:1000548 ! sample attribute
relationship: has_units UO:0000098 ! milliliter
relationship: has_value_type xsd\:float ! The allowed value-type for this CV term
[Term]
id: MS:1000006
name: sample concentration
def: "Concentration of sample in picomol/ul, femtomol/ul or attomol/ul solution used." [PSI:MS]
xref: value-type:xsd\:float "The allowed value-type for this CV term."
is_a: MS:1000548 ! sample attribute
relationship: has_units UO:0000175 ! gram per liter
relationship: has_value_type xsd\:float ! The allowed value-type for this CV term
[Term]
id: MS:1000007
name: inlet type
def: "The nature of the sample inlet." [PSI:MS]
relationship: part_of MS:1000458 ! source
[Term]
id: MS:1000008
name: ionization type
def: "The method by which gas phase ions are generated from the sample." [PSI:MS]
relationship: part_of MS:1000458 ! source
[Term]
id: MS:1000009
name: ionization mode
def: "OBSOLETE Whether positive or negative ions are selected for analysis by the spectrometer." [PSI:MS]
comment: This term was made obsolete because it was replaced by scan polarity (MS:1000465).
is_obsolete: true
[Term]
id: MS:1000010
name: analyzer type
def: "OBSOLETE The common name of the particular analyzer stage being described. Synonym of mass analyzer, should be obsoleted." [PSI:MS]
comment: This former purgatory term was made obsolete.
is_obsolete: true
[Term]
id: MS:1000011
name: mass resolution
def: "Smallest mass difference between two equal magnitude peaks so that the valley between them is a specified fraction of the peak height." [PSI:MS]
xref: value-type:xsd\:string "The allowed value-type for this CV term."
is_a: MS:1000503 ! scan attribute
relationship: has_value_type xsd\:string ! The allowed value-type for this CV term
[Term]
id: MS:1000012
name: resolution measurement method
def: "Which of the available standard measures is used to define whether two peaks are separate." [PSI:MS]
is_a: MS:1000596 ! measurement method
[Term]
id: MS:1000013
name: resolution type
def: "OBSOLETE Specify the nature of resolution for the mass analyzer. Resolution is usually either constant with respect to m/z or proportional to m/z." [PSI:MS]
comment: This former purgatory term was made obsolete.
is_obsolete: true
[Term]
id: MS:1000014
name: accuracy
def: "Accuracy is the degree of conformity of a measured mass to its actual value." [PSI:MS]
xref: value-type:xsd\:float "The allowed value-type for this CV term."
is_a: MS:1000480 ! mass analyzer attribute
relationship: has_units MS:1000040 ! m/z
relationship: has_units UO:0000169 ! parts per million
relationship: has_value_type xsd\:float ! The allowed value-type for this CV term
[Term]
id: MS:1000015
name: scan rate
def: "Rate in Th/sec for scanning analyzers." [PSI:MS]
xref: value-type:xsd\:float "The allowed value-type for this CV term."
is_a: MS:1000503 ! scan attribute
relationship: has_units MS:1000807 ! Th/s
relationship: has_value_type xsd\:float ! The allowed value-type for this CV term
[Term]
id: MS:1000016
name: scan start time
def: "The time that an analyzer started a scan, relative to the start of the MS run." [PSI:MS]
xref: value-type:xsd\:float "The allowed value-type for this CV term."
is_a: MS:1000503 ! scan attribute
is_a: MS:1002345 ! PSM-level attribute
relationship: has_units UO:0000010 ! second
relationship: has_units UO:0000031 ! minute
relationship: has_value_type xsd\:float ! The allowed value-type for this CV term
[Term]
id: MS:1000017
name: Scan Function
def: "OBSOLETE Describes the type of mass analysis being performed. Two primary modes are: typical acquisition over a range of masses (Mass Scan), and Selected Ion Detection. The primary difference is that Selected Ion Detection produces a single value for the signal at the selected mass rather than producing a mass spectrum." [PSI:MS]
comment: OBSOLETE This former purgatory term was made obsolete.
is_obsolete: true
[Term]
id: MS:1000018
name: scan direction
def: "Direction in terms of m/z of the scan for scanning analyzers (low to high, or high to low)." [PSI:MS]
relationship: part_of MS:1000441 ! scan
[Term]
id: MS:1000019
name: scan law
def: "Describes the function in control of the m/z scan (for scanning instruments). Commonly the scan function is linear, but in principle any function can be used." [PSI:MS]
relationship: part_of MS:1000441 ! scan
[Term]
id: MS:1000020
name: scanning method
def: "Describes the acquisition data type produced by a tandem mass spectrometry experiment." [PSI:MS]
comment: OBSOLETE This former purgatory term was made obsolete.
synonym: "Tandem Scanning Method" RELATED []
is_obsolete: true
[Term]
id: MS:1000021
name: reflectron state
def: "Status of the reflectron, turned on or off." [PSI:MS]
is_a: MS:1000480 ! mass analyzer attribute
[Term]
id: MS:1000022
name: TOF Total Path Length
def: "The length of the field free drift space in a time of flight mass spectrometer." [PSI:MS]
xref: value-type:xsd\:float "The allowed value-type for this CV term."
is_a: MS:1000480 ! mass analyzer attribute
relationship: has_units UO:0000008 ! meter
relationship: has_value_type xsd\:float ! The allowed value-type for this CV term
[Term]
id: MS:1000023
name: isolation width
def: "OBSOLETE The total width (i.e. not half for plus-or-minus) of the gate applied around a selected precursor ion." [PSI:MS]
comment: This former purgatory term was made obsolete.
xref: value-type:xsd\:float "The allowed value-type for this CV term."
relationship: has_units MS:1000040 ! m/z
is_obsolete: true
relationship: has_value_type xsd\:float ! The allowed value-type for this CV term
[Term]
id: MS:1000024
name: final MS exponent
def: "Final MS level achieved when performing PFF with the ion trap (e.g. MS E10)." [PSI:MS]
xref: value-type:xsd\:int "The allowed value-type for this CV term."
is_a: MS:1000480 ! mass analyzer attribute
relationship: has_value_type xsd\:int ! The allowed value-type for this CV term
[Term]
id: MS:1000025
name: magnetic field strength
def: "A property of space that produces a force on a charged particle equal to qv x B where q is the particle charge and v its velocity." [PSI:MS]
synonym: "B" EXACT []
synonym: "Magnetic Field" RELATED []
xref: value-type:xsd\:float "The allowed value-type for this CV term."
is_a: MS:1000480 ! mass analyzer attribute
relationship: has_units UO:0000228 ! tesla
relationship: has_value_type xsd\:float ! The allowed value-type for this CV term
[Term]
id: MS:1000026
name: detector type
def: "Type of detector used in the mass spectrometer." [PSI:MS]
relationship: part_of MS:1000453 ! detector
[Term]
id: MS:1000027
name: detector acquisition mode
def: "Method by which detector signal is acquired by the data system." [PSI:MS]
relationship: part_of MS:1000453 ! detector
[Term]
id: MS:1000028
name: detector resolution
def: "The resolving power of the detector to detect the smallest difference between two ions so that the valley between them is a specified fraction of the peak height." [PSI:MS]
xref: value-type:xsd\:float "The allowed value-type for this CV term."
is_a: MS:1000481 ! detector attribute
relationship: has_value_type xsd\:float ! The allowed value-type for this CV term
[Term]
id: MS:1000029
name: sampling frequency
def: "The rate of signal sampling (measurement) with respect to time." [PSI:MS]
synonym: "ADC Sampling Frequency" NARROW []
xref: value-type:xsd\:float "The allowed value-type for this CV term."
is_a: MS:1000481 ! detector attribute
relationship: has_units UO:0000106 ! hertz
relationship: has_value_type xsd\:float ! The allowed value-type for this CV term
[Term]
id: MS:1000030
name: vendor
def: "OBSOLETE Name of instrument vendor." [PSI:MS]
comment: This term was made obsolete because it was replaced by instrument model (MS:1000031).
is_obsolete: true
[Term]
id: MS:1000031
name: instrument model
def: "Instrument model name not including the vendor's name." [PSI:MS]
relationship: part_of MS:1000463 ! instrument
[Term]
id: MS:1000032
name: customization
def: "Free text description of a single customization made to the instrument; for several modifications, use several entries." [PSI:MS]
xref: value-type:xsd\:string "The allowed value-type for this CV term."
is_a: MS:1000496 ! instrument attribute
relationship: has_value_type xsd\:string ! The allowed value-type for this CV term
[Term]
id: MS:1000033
name: deisotoping
def: "The removal of isotope peaks to represent the fragment ion as one data point and is commonly done to reduce complexity. It is done in conjunction with the charge state deconvolution." [PSI:MS]
is_a: MS:1000543 ! data processing action
[Term]
id: MS:1000034
name: charge deconvolution
def: "The determination of the mass of an ion based on the mass spectral peaks that represent multiple-charge ions." [PSI:MS]
is_a: MS:1000543 ! data processing action
[Term]
id: MS:1000035
name: peak picking
def: "Spectral peak processing conducted on the acquired data to convert profile data to centroided data." [PSI:MS]
is_a: MS:1000543 ! data processing action
[Term]
id: MS:1000036
name: scan mode
def: "OBSOLETE." [PSI:MS]
comment: This term was made obsolete because .
is_obsolete: true
[Term]
id: MS:1000037
name: polarity
def: "OBSOLETE Terms to describe the polarity setting of the instrument." [PSI:MS]
comment: This term was made obsolete because it was redundant with the Pato Ontology term polarity (UO:0002186).
is_obsolete: true
[Term]
id: MS:1000038
name: minute
def: "OBSOLETE Acquisition time in minutes." [PSI:MS]
comment: This term was made obsolete because it was redundant with Unit Ontology minute (UO:0000031).
is_obsolete: true
[Term]
id: MS:1000039
name: second
def: "OBSOLETE Acquisition time in seconds." [PSI:MS]
comment: This term was made obsolete because it was redundant with Unit Ontology second (UO:0000010).
is_obsolete: true
[Term]
id: MS:1000040
name: m/z
def: "Three-character symbol m/z is used to denote the quantity formed by dividing the mass of an ion in unified atomic mass units by its charge number (regardless of sign). The symbol is written in italicized lower case letters with no spaces. Note 1: The term mass-to-charge-ratio is deprecated. Mass-to-charge ratio has been used for the abscissa of a mass spectrum, although the quantity measured is not the quotient of the ion's mass to its electric charge. The three-character symbol m/z is recommended for the quantity that is the independent variable in a mass spectrum Note 2: The proposed unit thomson (Th) is deprecated." [PSI:MS]
synonym: "mass-to-charge ratio" EXACT []
synonym: "Th" EXACT []
synonym: "thomson" EXACT []
is_a: UO:0000000 ! unit
[Term]
id: MS:1000041
name: charge state
def: "Number of net charges, positive or negative, on an ion." [PSI:MS]
synonym: "z" EXACT []
xref: value-type:xsd\:int "The allowed value-type for this CV term."
is_a: MS:1000455 ! ion selection attribute
is_a: MS:1000507 ! ion property
relationship: has_value_type xsd\:int ! The allowed value-type for this CV term
[Term]
id: MS:1000042
name: peak intensity
def: "Intensity of ions as measured by the height or area of a peak in a mass spectrum." [PSI:MS]
xref: value-type:xsd\:float "The allowed value-type for this CV term."
is_a: MS:1000455 ! ion selection attribute
relationship: has_units MS:1000131 ! number of detector counts
relationship: has_units MS:1000132 ! percent of base peak
relationship: has_units MS:1000814 ! counts per second
relationship: has_units MS:1000905 ! percent of base peak times 100
relationship: has_units UO:0000269 ! absorbance unit
relationship: part_of MS:1000231 ! peak
relationship: has_value_type xsd\:float ! The allowed value-type for this CV term
[Term]
id: MS:1000043
name: intensity unit
def: "Intensity units are commonly arbitrary. Detected in counts per second (cps) when using counting detectors, but measured in volts when using analog detectors." [PSI:MS]
is_a: UO:0000000 ! unit
[Term]
id: MS:1000044
name: dissociation method
def: "Fragmentation method used for dissociation or fragmentation." [PSI:MS]
synonym: "Activation Method" RELATED []
relationship: part_of MS:1000456 ! precursor activation
[Term]
id: MS:1000045
name: collision energy
def: "Energy for an ion experiencing collision with a stationary gas particle resulting in dissociation of the ion." [PSI:MS]
xref: value-type:xsd\:float "The allowed value-type for this CV term."
is_a: MS:1000510 ! precursor activation attribute
relationship: has_units UO:0000266 ! electronvolt
relationship: has_value_type xsd\:float ! The allowed value-type for this CV term
[Term]
id: MS:1000046
name: energy unit
def: "OBSOLETE Energy units are represented in either eV or Joules." [PSI:MS]
comment: This term was made obsolete because it was redundant with the Unit Ontology term energy unit (UO:0000111).
is_a: UO:0000000 ! unit
is_obsolete: true
[Term]
id: MS:1000047
name: emulsion
def: "State if the sample is in emulsion form." [PSI:MS]
is_a: MS:1000003 ! sample state
[Term]
id: MS:1000048
name: gaseous sample state
def: "State if the sample is in gaseous form." [PSI:MS]
is_a: MS:1000003 ! sample state
[Term]
id: MS:1000049
name: liquid sample state
def: "State if the sample is in liquid form." [PSI:MS]
is_a: MS:1000003 ! sample state
[Term]
id: MS:1000050
name: solid sample state
def: "State if the sample is in solid form." [PSI:MS]
is_a: MS:1000003 ! sample state
[Term]
id: MS:1000051
name: solution
def: "State if the sample is in solution form." [PSI:MS]
is_a: MS:1000003 ! sample state
[Term]
id: MS:1000052
name: suspension
def: "State if the sample is in suspension form." [PSI:MS]
is_a: MS:1000003 ! sample state
[Term]
id: MS:1000053
name: sample batch
def: "Sample batch lot identifier." [PSI:MS]
xref: value-type:xsd\:string "The allowed value-type for this CV term."
is_a: MS:1000548 ! sample attribute
relationship: has_value_type xsd\:string ! The allowed value-type for this CV term
[Term]
id: MS:1000054
name: chromatography
def: "OBSOLETE Chromatographic conditions used to obtain the sample." [PSI:MS]
comment: This former purgatory term was made obsolete.
is_obsolete: true
[Term]
id: MS:1000055
name: continuous flow fast atom bombardment
def: "Fast atom bombardment ionization in which the analyte in solution is entrained in a flowing liquid matrix." [PSI:MS]
synonym: "CF-FAB" EXACT []
is_a: MS:1000007 ! inlet type
[Term]
id: MS:1000056
name: direct inlet
def: "The sample is directly inserted into the ion source, usually on the end of a heatable probe." [PSI:MS]
is_a: MS:1000007 ! inlet type
[Term]
id: MS:1000057
name: electrospray inlet
def: "Inlet used for introducing the liquid sample into an electrospray ionization source." [PSI:MS]
is_a: MS:1000007 ! inlet type
[Term]
id: MS:1000058
name: flow injection analysis
def: "Sample is directly injected or infused into the ionization source." [PSI:MS]
is_a: MS:1000007 ! inlet type
[Term]
id: MS:1000059
name: inductively coupled plasma
def: "A gas discharge ion source in which the energy to the plasma is supplied by electromagnetic induction." [PSI:MS]
is_a: MS:1000007 ! inlet type
[Term]
id: MS:1000060
name: infusion
def: "The continuous flow of solution of a sample into the ionization source." [PSI:MS]
is_a: MS:1000007 ! inlet type
[Term]
id: MS:1000061
name: jet separator
def: "A device that separates carrier gas from gaseous analyte molecules on the basis of diffusivity." [PSI:MS]
is_a: MS:1000007 ! inlet type
[Term]
id: MS:1000062
name: membrane separator
def: "A device to separate carrier molecules from analyte molecules on the basis of ease of diffusion across a semipermeable membrane." [PSI:MS]
is_a: MS:1000007 ! inlet type
[Term]
id: MS:1000063
name: moving belt
def: "Continuous moving surface in the form of a belt which passes through an ion source carrying analyte molecules." [PSI:MS]
is_a: MS:1000007 ! inlet type
[Term]
id: MS:1000064
name: moving wire
def: "Continuous moving surface in the form of a wire which passes through an ion source carrying analyte molecules." [PSI:MS]
is_a: MS:1000007 ! inlet type
[Term]
id: MS:1000065
name: open split
def: "A division of flowing stream of liquid into two streams." [PSI:MS]
is_a: MS:1000007 ! inlet type
[Term]
id: MS:1000066
name: particle beam
def: "Method for generating ions from a solution of an analyte." [PSI:MS]
is_a: MS:1000007 ! inlet type
[Term]
id: MS:1000067
name: reservoir
def: "A sample inlet method involving a reservoir." [PSI:MS]
is_a: MS:1000007 ! inlet type
[Term]
id: MS:1000068
name: septum
def: "A disc composed of a flexible material that seals the entrance to the reservoir. Can also be entrance to the vacuum chamber." [PSI:MS]
is_a: MS:1000007 ! inlet type
[Term]
id: MS:1000069
name: thermospray inlet
def: "A method for generating gas phase ions from a solution of an analyte by rapid heating of the sample." [PSI:MS]
is_a: MS:1000007 ! inlet type
[Term]
id: MS:1000070
name: atmospheric pressure chemical ionization
def: "Chemical ionization that takes place at atmospheric pressure as opposed to the reduced pressure is normally used for chemical ionization." [PSI:MS]
synonym: "APCI" EXACT []
is_a: MS:1000240 ! atmospheric pressure ionization
[Term]
id: MS:1000071
name: chemical ionization
def: "The formation of a new ion by the reaction of a neutral species with an ion. The process may involve transfer of an electron, a proton or other charged species between the reactants. When a positive ion results from chemical ionization the term may be used without qualification. When a negative ion results the term negative ion chemical ionization should be used. Note that this term is not synonymous with chemi-ionization." [PSI:MS]
synonym: "CI" EXACT []
is_a: MS:1000008 ! ionization type
[Term]
id: MS:1000072
name: Electronic Ionization
def: "OBSOLETE The ionization of an atom or molecule by electrons that are typically accelerated to energies between 50 and 150 eV. Usually 70 eV electrons are used to produce positive ions. The term 'electron impact' is not recommended." [PSI:MS]
comment: This term was made obsolete because it was replaced by electron ionization (MS:1000389).
synonym: "EI" EXACT []
is_obsolete: true
[Term]
id: MS:1000073
name: electrospray ionization
def: "A process in which ionized species in the gas phase are produced from an analyte-containing solution via highly charged fine droplets, by means of spraying the solution from a narrow-bore needle tip at atmospheric pressure in the presence of a high electric field. When a pressurized gas is used to aid in the formation of a stable spray, the term pneumatically assisted electrospray ionization is used. The term ion spray is not recommended." [PSI:MS]
synonym: "ESI" EXACT []
is_a: MS:1000008 ! ionization type
[Term]
id: MS:1000074
name: fast atom bombardment ionization
def: "The ionization of any species by the interaction of a focused beam of neutral atoms having a translational energy of several thousand eV with a sample that is typically dissolved in a solvent matrix. See also secondary ionization." [PSI:MS]
synonym: "FAB" EXACT []
is_a: MS:1000008 ! ionization type
[Term]
id: MS:1000075
name: matrix-assisted laser desorption ionization
def: "The formation of gas-phase ions from molecules that are present in a solid or solvent matrix that is irradiated with a pulsed laser. See also laser desorption/ionization." [PSI:MS]
synonym: "MALDI" EXACT []
is_a: MS:1000247 ! desorption ionization
[Term]
id: MS:1000076
name: negative ion mode
def: "OBSOLETE." [PSI:MS]
comment: This term was made obsolete because it was replaced by negative scan (MS:1000129).
is_obsolete: true
[Term]
id: MS:1000077
name: positive ion mode
def: "OBSOLETE." [PSI:MS]
comment: This term was made obsolete because it was replaced by positive scan (MS:1000130).
is_obsolete: true
[Term]
id: MS:1000078
name: axial ejection linear ion trap
def: "A linear ion trap mass spectrometer where ions are ejected along the axis of the analyzer." [PSI:MS]
is_a: MS:1000291 ! linear ion trap
[Term]
id: MS:1000079
name: fourier transform ion cyclotron resonance mass spectrometer
def: "A mass spectrometer based on the principle of ion cyclotron resonance in which an ion in a magnetic field moves in a circular orbit at a frequency characteristic of its m/z value. Ions are coherently excited to a larger radius orbit using a pulse of radio frequency energy and their image charge is detected on receiver plates as a time domain signal. Fourier transformation of the time domain signal results in a frequency domain signal which is converted to a mass spectrum based in the inverse relationship between frequency and m/z." [PSI:MS]
synonym: "FT_ICR" EXACT []
is_a: MS:1000443 ! mass analyzer type
[Term]
id: MS:1000080
name: magnetic sector
def: "A device that produces a magnetic field perpendicular to a charged particle beam that deflects the beam to an extent that is proportional to the particle momentum per unit charge. For a monoenergetic beam, the deflection is proportional to m/z." [PSI:MS]
is_a: MS:1000443 ! mass analyzer type
[Term]
id: MS:1000081
name: quadrupole
def: "A mass spectrometer that consists of four parallel rods whose centers form the corners of a square and whose opposing poles are connected. The voltage applied to the rods is a superposition of a static potential and a sinusoidal radio frequency potential. The motion of an ion in the x and y dimensions is described by the Matthieu equation whose solutions show that ions in a particular m/z range can be transmitted along the z axis." [PSI:MS]
is_a: MS:1000443 ! mass analyzer type
[Term]
id: MS:1000082
name: quadrupole ion trap
def: "Quadrupole Ion Trap mass analyzer captures the ions in a three dimensional ion trap and then selectively ejects them by varying the RF and DC potentials." [PSI:MS]
synonym: "Paul Ion trap" EXACT []
synonym: "QIT" EXACT []
synonym: "Quistor" EXACT []
is_a: MS:1000264 ! ion trap
[Term]
id: MS:1000083
name: radial ejection linear ion trap
def: "A linear ion trap mass spectrometer where ions are ejected along the radius of the analyzer." [PSI:MS]
is_a: MS:1000291 ! linear ion trap
[Term]
id: MS:1000084
name: time-of-flight
def: "Instrument that separates ions by m/z in a field-free region after acceleration to a fixed acceleration energy." [PSI:MS]
synonym: "TOF" EXACT []
is_a: MS:1000443 ! mass analyzer type
[Term]
id: MS:1000085
name: baseline
def: "An attribute of resolution when recording the detector response in absence of the analyte." [PSI:MS]
is_a: MS:1000012 ! resolution measurement method
[Term]
id: MS:1000086
name: full width at half-maximum
def: "A measure of resolution represented as width of the peak at half peak height." [PSI:MS]
synonym: "FWHM" EXACT []
is_a: MS:1000012 ! resolution measurement method
[Term]
id: MS:1000087
name: ten percent valley
def: "An attribute of resolution when the ratio between adjacent signals is 10% of the signal height." [PSI:MS]
is_a: MS:1000012 ! resolution measurement method
[Term]
id: MS:1000088
name: constant
def: "OBSOLETE When resolution is constant with respect to m/z." [PSI:MS]
comment: This child of the former purgatory term resolution type was made obsolete.
is_obsolete: true
[Term]
id: MS:1000089
name: proportional
def: "OBSOLETE When resolution is proportional with respect to m/z." [PSI:MS]
comment: This child of the former purgatory term resolution type was made obsolete.
is_obsolete: true
[Term]
id: MS:1000090
name: mass scan
def: "OBSOLETE A variation of instrument where a selected mass is scanned." [PSI:MS]
comment: This child of the former purgatory term Scan Function was made obsolete.
is_obsolete: true
[Term]
id: MS:1000091
name: selected ion detection
def: "OBSOLETE Please see Single Ion Monitoring." [PSI:MS]
comment: This child of the former purgatory term Scan Function was made obsolete.
is_obsolete: true
[Term]
id: MS:1000092
name: decreasing m/z scan
def: "High to low direction in terms of m/z of the scan for scanning analyzers." [PSI:MS]
is_a: MS:1000018 ! scan direction
[Term]
id: MS:1000093
name: increasing m/z scan
def: "Low to high direction in terms of m/z of the scan for scanning analyzers." [PSI:MS]
is_a: MS:1000018 ! scan direction
[Term]
id: MS:1000094
name: exponential
def: "The mass scan is done in exponential mode." [PSI:MS]
is_a: MS:1000019 ! scan law
[Term]
id: MS:1000095
name: linear
def: "OBSOLETE The mass scan is done in linear mode." [PSI:MS]
comment: This term was made obsolete because it was redundant with the Pato Ontology term linear (UO:0001199).
is_a: MS:1000019 ! scan law
is_obsolete: true
[Term]
id: MS:1000096
name: quadratic
def: "The mass scan is done in quadratic mode." [PSI:MS]
is_a: MS:1000019 ! scan law
[Term]
id: MS:1000097
name: constant neutral mass loss
def: "OBSOLETE A spectrum formed of all product ions that have been produced with a selected m/z decrement from any precursor ions. The spectrum shown correlates to the precursor ion spectrum. See also neutral loss spectrum." [PSI:MS]
comment: This former purgatory term was made obsolete.
is_obsolete: true
[Term]
id: MS:1000098
name: multiple ion monitoring
def: "OBSOLETE Data acquired when monitoring the ion current of a few specific m/z values. Remap to MS:1000205 -Selected Ion Monitoring." [PSI:MS]
comment: This former purgatory term was made obsolete.
is_obsolete: true
[Term]
id: MS:1000099
name: multiple reaction monitoring
def: "OBSOLETE This term is not recommended. See Selected Reaction Monitoring." [PSI:MS]
comment: This term was made obsolete because it was merged with selected reaction monitoring (MS:1000206).
synonym: "MRM" EXACT []
is_obsolete: true
[Term]
id: MS:1000100
name: precursor ion scan
def: "OBSOLETE The specific scan function or process that will record a precursor ion spectrum." [PSI:MS]
comment: This former purgatory term was made obsolete.
is_obsolete: true
[Term]
id: MS:1000101
name: product ion scan
def: "OBSOLETE The specific scan function or process that records product ion spectrum." [PSI:MS]
comment: This former purgatory term was made obsolete.
is_obsolete: true
[Term]
id: MS:1000102
name: single ion monitoring
def: "OBSOLETE The operation of a mass spectrometer to monitor a single ion rather than scanning entire mass spectrum." [PSI:MS]
comment: This term was made obsolete because it was replaced by single ion monitoring (MS:100205).
is_obsolete: true
[Term]
id: MS:1000103
name: single reaction monitoring
def: "OBSOLETE This term is not recommended. See Selected Reaction Monitoring." [PSI:MS]
comment: This term was made obsolete because it was replaced by selected reaction monitoring (MS:1000206).
is_obsolete: true
[Term]
id: MS:1000104
name: None ??
def: "OBSOLETE None." [PSI:MS]
comment: This term was made obsolete because .
is_obsolete: true
[Term]
id: MS:1000105
name: reflectron off
def: "Reflectron is off." [PSI:MS]
is_a: MS:1000021 ! reflectron state
[Term]
id: MS:1000106
name: reflectron on
def: "Reflectron is on." [PSI:MS]
is_a: MS:1000021 ! reflectron state
[Term]
id: MS:1000107
name: channeltron
def: "A horn-shaped (or cone-shaped) continuous dynode particle multiplier. The ion strikes the inner surface of the device and induces the production of secondary electrons that in turn impinge on the inner surfaces to produce more secondary electrons. This avalanche effect produces an increase in signal in the final measured current pulse." [PSI:MS]
synonym: "Channeltron Detector" EXACT []
is_a: MS:1000026 ! detector type
[Term]
id: MS:1000108
name: conversion dynode electron multiplier
def: "A surface that is held at high potential so that ions striking the surface produce electrons that are subsequently detected." [PSI:MS]
is_a: MS:1000346 ! conversion dynode
[Term]
id: MS:1000109
name: conversion dynode photomultiplier
def: "A detector in which ions strike a conversion dynode to produce electrons that in turn generate photons through a phosphorescent screen that are detected by a photomultiplier." [PSI:MS]
synonym: "ion-to-photon detector" RELATED []
is_a: MS:1000346 ! conversion dynode
[Term]
id: MS:1000110
name: daly detector
def: "Detector consisting of a conversion dynode, scintillator and photomultiplier. The metal knob at high potential emits secondary electrons when ions impinge on the surface. The secondary electrons are accelerated onto the scintillator that produces light that is then detected by the photomultiplier detector." [PSI:MS]
synonym: "Daly" EXACT []
is_a: MS:1000026 ! detector type
[Term]
id: MS:1000111
name: electron multiplier tube
def: "A device to amplify the current of a beam or packet of charged particles or photons by incidence upon the surface of an electrode to produce secondary electrons." [PSI:MS]
synonym: "EMT" EXACT []
is_a: MS:1000253 ! electron multiplier
[Term]
id: MS:1000112
name: faraday cup
def: "A conducting cup or chamber that intercepts a charged particle beam and is electrically connected to a current measuring device." [PSI:MS]
is_a: MS:1000026 ! detector type
[Term]
id: MS:1000113
name: focal plane array
def: "An array of detectors for spatially disperse ion beams in which all ions simultaneously impinge on the detector plane." [PSI:MS]
is_a: MS:1000348 ! focal plane collector
[Term]
id: MS:1000114
name: microchannel plate detector
def: "A thin plate that contains a closely spaced array of channels that each act as a continuous dynode particle multiplier. A charged particle, fast neutral particle, or photon striking the plate causes a cascade of secondary electrons that ultimately exits the opposite side of the plate." [PSI:MS]
synonym: "multichannel plate" EXACT []
is_a: MS:1000345 ! array detector
[Term]
id: MS:1000115
name: multi-collector
def: "A detector system commonly used in inductively coupled plasma mass spectrometers." [PSI:MS]
is_a: MS:1000026 ! detector type
[Term]
id: MS:1000116
name: photomultiplier
def: "A detector for conversion of the ion/electron signal into photon(s) which are then amplified and detected." [PSI:MS]
synonym: "PMT" EXACT []
is_a: MS:1000026 ! detector type
[Term]
id: MS:1000117
name: analog-digital converter
def: "Analog-to-digital converter (abbreviated ADC, A/D or A to D) is an electronic integrated circuit (i/c) that converts continuous signals to discrete digital numbers." [PSI:MS]
synonym: "ADC" EXACT []
is_a: MS:1000027 ! detector acquisition mode
[Term]
id: MS:1000118
name: pulse counting
def: "Definition to do." [PSI:MS]
is_a: MS:1000027 ! detector acquisition mode
[Term]
id: MS:1000119
name: time-digital converter
def: "A device for converting a signal of sporadic pluses into a digital representation of their time indices." [PSI:MS]
synonym: "TDC" EXACT []
is_a: MS:1000027 ! detector acquisition mode
[Term]
id: MS:1000120
name: transient recorder
def: "A detector acquisition mode used for detecting transient signals." [PSI:MS]
is_a: MS:1000027 ! detector acquisition mode
[Term]
id: MS:1000121
name: SCIEX instrument model
def: "The brand of instruments from the joint venture between Applied Biosystems and MDS Analytical Technologies (formerly MDS SCIEX). Previously branded as \"Applied Biosystems|MDS SCIEX\"." [PSI:MS]
synonym: "Applied Biosystems|MDS SCIEX" RELATED []
is_a: MS:1000031 ! instrument model
[Term]
id: MS:1000122
name: Bruker Daltonics instrument model
def: "Bruker Daltonics' instrument model." [PSI:MS]
is_a: MS:1000031 ! instrument model
[Term]
id: MS:1000123
name: IonSpec instrument model
def: "IonSpec corporation instrument model." [PSI:MS]
is_a: MS:1000489 ! Varian instrument model
[Term]
id: MS:1000124
name: Shimadzu instrument model
def: "Shimadzu corporation instrument model." [PSI:MS]
is_a: MS:1000031 ! instrument model
[Term]
id: MS:1000125
name: Thermo Finnigan instrument model
def: "ThermoFinnigan from Thermo Electron Corporation instrument model." [PSI:MS]
is_a: MS:1000483 ! Thermo Fisher Scientific instrument model
[Term]
id: MS:1000126
name: Waters instrument model
def: "Waters Corporation instrument model." [PSI:MS]
is_a: MS:1000031 ! instrument model
[Term]
id: MS:1000127
name: centroid spectrum
def: "Processing of profile data to produce spectra that contains discrete peaks of zero width. Often used to reduce the size of dataset." [PSI:MS]
synonym: "Discrete Mass Spectrum" EXACT []
is_a: MS:1000525 ! spectrum representation
[Term]
id: MS:1000128
name: profile spectrum
def: "A profile mass spectrum is created when data is recorded with ion current (counts per second) on one axis and mass/charge ratio on another axis." [PSI:MS]
synonym: "continuous mass spectrum" EXACT []
synonym: "Continuum Mass Spectrum" EXACT []
is_a: MS:1000525 ! spectrum representation
[Term]
id: MS:1000129
name: negative scan
def: "Polarity of the scan is negative." [PSI:MS]
is_a: MS:1000465 ! scan polarity
is_a: MS:1000808 ! chromatogram attribute
[Term]
id: MS:1000130
name: positive scan
def: "Polarity of the scan is positive." [PSI:MS]
is_a: MS:1000465 ! scan polarity
is_a: MS:1000808 ! chromatogram attribute
[Term]
id: MS:1000131
name: number of detector counts
def: "The number of counted events observed in one or a group of elements of a detector." [PSI:MS]
is_a: MS:1000043 ! intensity unit
[Term]
id: MS:1000132
name: percent of base peak
def: "The magnitude of a peak or measurement element expressed in terms of the percentage of the magnitude of the base peak intensity." [PSI:MS]
xref: value-type:xsd\:float "The allowed value-type for this CV term."
is_a: MS:1000043 ! intensity unit
relationship: has_value_type xsd\:float ! The allowed value-type for this CV term
[Term]
id: MS:1000133
name: collision-induced dissociation
def: "The dissociation of an ion after collisional excitation. The term collisional-activated dissociation is not recommended." [PSI:MS]
synonym: "CID" EXACT []
synonym: "CAD" EXACT []
synonym: "collisionally activated dissociation" EXACT []
is_a: MS:1000044 ! dissociation method
[Term]
id: MS:1000134
name: plasma desorption
def: "The ionization of material in a solid sample by bombarding it with ionic or neutral atoms formed as a result of the fission of a suitable nuclide, typically 252Cf. Synonymous with fission fragment ionization." [PSI:MS]
synonym: "PD" EXACT []
is_a: MS:1000044 ! dissociation method