CoreMS 4.0.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (171) hide show
  1. corems/__init__.py +63 -0
  2. corems/chroma_peak/__init__.py +0 -0
  3. corems/chroma_peak/calc/ChromaPeakCalc.py +480 -0
  4. corems/chroma_peak/calc/__init__.py +0 -0
  5. corems/chroma_peak/calc/subset.py +196 -0
  6. corems/chroma_peak/factory/__init__.py +0 -0
  7. corems/chroma_peak/factory/chroma_peak_classes.py +1178 -0
  8. corems/encapsulation/__init__.py +0 -0
  9. corems/encapsulation/constant.py +1283 -0
  10. corems/encapsulation/factory/__init__.py +0 -0
  11. corems/encapsulation/factory/parameters.py +392 -0
  12. corems/encapsulation/factory/processingSetting.py +1244 -0
  13. corems/encapsulation/input/__init__.py +0 -0
  14. corems/encapsulation/input/parameter_from_json.py +579 -0
  15. corems/encapsulation/output/__init__.py +0 -0
  16. corems/encapsulation/output/parameter_to_dict.py +142 -0
  17. corems/encapsulation/output/parameter_to_json.py +332 -0
  18. corems/mass_spectra/__init__.py +0 -0
  19. corems/mass_spectra/calc/GC_Calc.py +84 -0
  20. corems/mass_spectra/calc/GC_Deconvolution.py +558 -0
  21. corems/mass_spectra/calc/GC_RI_Calibration.py +44 -0
  22. corems/mass_spectra/calc/MZSearch.py +249 -0
  23. corems/mass_spectra/calc/SignalProcessing.py +656 -0
  24. corems/mass_spectra/calc/__init__.py +0 -0
  25. corems/mass_spectra/calc/lc_calc.py +5790 -0
  26. corems/mass_spectra/calc/lc_calc_operations.py +1127 -0
  27. corems/mass_spectra/factory/GC_Class.py +791 -0
  28. corems/mass_spectra/factory/__init__.py +0 -0
  29. corems/mass_spectra/factory/chromat_data.py +51 -0
  30. corems/mass_spectra/factory/lc_class.py +2721 -0
  31. corems/mass_spectra/input/__init__.py +0 -0
  32. corems/mass_spectra/input/andiNetCDF.py +200 -0
  33. corems/mass_spectra/input/boosterHDF5.py +216 -0
  34. corems/mass_spectra/input/brukerSolarix.py +153 -0
  35. corems/mass_spectra/input/brukerSolarix_utils.py +73 -0
  36. corems/mass_spectra/input/corems_hdf5.py +1710 -0
  37. corems/mass_spectra/input/massList.py +133 -0
  38. corems/mass_spectra/input/mzml.py +668 -0
  39. corems/mass_spectra/input/parserbase.py +239 -0
  40. corems/mass_spectra/input/rawFileReader.py +1839 -0
  41. corems/mass_spectra/output/__init__.py +0 -0
  42. corems/mass_spectra/output/export.py +2800 -0
  43. corems/mass_spectrum/__init__.py +0 -0
  44. corems/mass_spectrum/calc/AutoRecalibration.py +237 -0
  45. corems/mass_spectrum/calc/Calibration.py +602 -0
  46. corems/mass_spectrum/calc/CalibrationCalc.py +253 -0
  47. corems/mass_spectrum/calc/KendrickGroup.py +239 -0
  48. corems/mass_spectrum/calc/MassErrorPrediction.py +436 -0
  49. corems/mass_spectrum/calc/MassSpectrumCalc.py +303 -0
  50. corems/mass_spectrum/calc/MeanResolvingPowerFilter.py +212 -0
  51. corems/mass_spectrum/calc/NoiseCalc.py +371 -0
  52. corems/mass_spectrum/calc/NoiseCalc_Bayes.py +93 -0
  53. corems/mass_spectrum/calc/PeakPicking.py +994 -0
  54. corems/mass_spectrum/calc/__init__.py +0 -0
  55. corems/mass_spectrum/factory/MassSpectrumClasses.py +1753 -0
  56. corems/mass_spectrum/factory/__init__.py +0 -0
  57. corems/mass_spectrum/input/__init__.py +0 -0
  58. corems/mass_spectrum/input/baseClass.py +531 -0
  59. corems/mass_spectrum/input/boosterHDF5.py +161 -0
  60. corems/mass_spectrum/input/coremsHDF5.py +475 -0
  61. corems/mass_spectrum/input/massList.py +402 -0
  62. corems/mass_spectrum/input/numpyArray.py +133 -0
  63. corems/mass_spectrum/output/__init__.py +0 -0
  64. corems/mass_spectrum/output/export.py +841 -0
  65. corems/molecular_formula/__init__.py +0 -0
  66. corems/molecular_formula/calc/MolecularFormulaCalc.py +885 -0
  67. corems/molecular_formula/calc/__init__.py +0 -0
  68. corems/molecular_formula/factory/MolecularFormulaFactory.py +895 -0
  69. corems/molecular_formula/factory/__init__.py +0 -0
  70. corems/molecular_formula/input/__init__.py +0 -0
  71. corems/molecular_formula/input/masslist_ref.py +355 -0
  72. corems/molecular_id/__init__.py +0 -0
  73. corems/molecular_id/calc/ClusterFilter.py +251 -0
  74. corems/molecular_id/calc/MolecularFilter.py +122 -0
  75. corems/molecular_id/calc/SpectralSimilarity.py +632 -0
  76. corems/molecular_id/calc/__init__.py +0 -0
  77. corems/molecular_id/calc/math_distance.py +1637 -0
  78. corems/molecular_id/data/FAMES_REF.msp +980 -0
  79. corems/molecular_id/data/PNNLMetV20191015.msp +157267 -0
  80. corems/molecular_id/factory/EI_SQL.py +650 -0
  81. corems/molecular_id/factory/MolecularLookupTable.py +914 -0
  82. corems/molecular_id/factory/__init__.py +0 -0
  83. corems/molecular_id/factory/classification.py +884 -0
  84. corems/molecular_id/factory/lipid_molecular_metadata.py +50 -0
  85. corems/molecular_id/factory/molecularSQL.py +827 -0
  86. corems/molecular_id/factory/spectrum_search_results.py +119 -0
  87. corems/molecular_id/input/__init__.py +0 -0
  88. corems/molecular_id/input/nistMSI.py +148 -0
  89. corems/molecular_id/search/__init__.py +0 -0
  90. corems/molecular_id/search/compoundSearch.py +214 -0
  91. corems/molecular_id/search/database_interfaces.py +1527 -0
  92. corems/molecular_id/search/findOxygenPeaks.py +330 -0
  93. corems/molecular_id/search/lcms_spectral_search.py +348 -0
  94. corems/molecular_id/search/molecularFormulaSearch.py +1117 -0
  95. corems/molecular_id/search/priorityAssignment.py +723 -0
  96. corems/ms_peak/__init__.py +0 -0
  97. corems/ms_peak/calc/MSPeakCalc.py +1010 -0
  98. corems/ms_peak/calc/__init__.py +0 -0
  99. corems/ms_peak/factory/MSPeakClasses.py +542 -0
  100. corems/ms_peak/factory/__init__.py +0 -0
  101. corems/transient/__init__.py +0 -0
  102. corems/transient/calc/TransientCalc.py +362 -0
  103. corems/transient/calc/__init__.py +0 -0
  104. corems/transient/factory/TransientClasses.py +457 -0
  105. corems/transient/factory/__init__.py +0 -0
  106. corems/transient/input/__init__.py +0 -0
  107. corems/transient/input/brukerSolarix.py +461 -0
  108. corems/transient/input/midasDatFile.py +172 -0
  109. corems-4.0.0.dist-info/METADATA +475 -0
  110. corems-4.0.0.dist-info/RECORD +171 -0
  111. corems-4.0.0.dist-info/WHEEL +5 -0
  112. corems-4.0.0.dist-info/licenses/LICENSE +22 -0
  113. corems-4.0.0.dist-info/top_level.txt +4 -0
  114. examples/archive/scripts/CoreMS_tutorial.py +94 -0
  115. examples/archive/scripts/DI HR-MS Halogens Bruker.py +196 -0
  116. examples/archive/scripts/DI HR-MS MassList.py +385 -0
  117. examples/archive/scripts/GC-MS MetabRef.py +213 -0
  118. examples/archive/scripts/GC-MS NetCDF.py +217 -0
  119. examples/archive/scripts/HR-MS Thermo Raw 21T.py +136 -0
  120. examples/archive/scripts/LC-ICPMS_metal_peaks.py +297 -0
  121. examples/archive/scripts/LCMS-Thermo.py +460 -0
  122. examples/archive/scripts/LCMS_isotopes.py +283 -0
  123. examples/archive/scripts/MSParams_example.py +21 -0
  124. examples/archive/scripts/Molecular Formula Data Aggreation.py +84 -0
  125. examples/archive/scripts/Single Mz Search.py +69 -0
  126. examples/test_notebooks.py +145 -0
  127. ext_lib/ChemstationMSFileReader.dll +0 -0
  128. ext_lib/ChemstationMSFileReader.xml +126 -0
  129. ext_lib/RawFileReaderLicense.doc +0 -0
  130. ext_lib/ThermoFisher.CommonCore.BackgroundSubtraction.dll +0 -0
  131. ext_lib/ThermoFisher.CommonCore.BackgroundSubtraction.xml +2307 -0
  132. ext_lib/ThermoFisher.CommonCore.Data.dll +0 -0
  133. ext_lib/ThermoFisher.CommonCore.Data.xml +28974 -0
  134. ext_lib/ThermoFisher.CommonCore.MassPrecisionEstimator.dll +0 -0
  135. ext_lib/ThermoFisher.CommonCore.MassPrecisionEstimator.xml +241 -0
  136. ext_lib/ThermoFisher.CommonCore.RawFileReader.dll +0 -0
  137. ext_lib/ThermoFisher.CommonCore.RawFileReader.xml +31174 -0
  138. ext_lib/__init__.py +0 -0
  139. ext_lib/dotnet/OpenMcdf.Extensions.dll +0 -0
  140. ext_lib/dotnet/OpenMcdf.dll +0 -0
  141. ext_lib/dotnet/OpenMcdf.xml +1154 -0
  142. ext_lib/dotnet/System.IO.FileSystem.AccessControl.dll +0 -0
  143. ext_lib/dotnet/System.IO.FileSystem.AccessControl.xml +506 -0
  144. ext_lib/dotnet/System.Security.AccessControl.dll +0 -0
  145. ext_lib/dotnet/System.Security.AccessControl.xml +2043 -0
  146. ext_lib/dotnet/System.Security.Principal.Windows.dll +0 -0
  147. ext_lib/dotnet/System.Security.Principal.Windows.xml +1011 -0
  148. ext_lib/dotnet/ThermoFisher.CommonCore.BackgroundSubtraction.dll +0 -0
  149. ext_lib/dotnet/ThermoFisher.CommonCore.BackgroundSubtraction.xml +2307 -0
  150. ext_lib/dotnet/ThermoFisher.CommonCore.Data.dll +0 -0
  151. ext_lib/dotnet/ThermoFisher.CommonCore.Data.xml +29148 -0
  152. ext_lib/dotnet/ThermoFisher.CommonCore.MassPrecisionEstimator.dll +0 -0
  153. ext_lib/dotnet/ThermoFisher.CommonCore.MassPrecisionEstimator.xml +241 -0
  154. ext_lib/dotnet/ThermoFisher.CommonCore.RawFileReader.dll +0 -0
  155. ext_lib/dotnet/ThermoFisher.CommonCore.RawFileReader.xml +31492 -0
  156. ext_lib/version +18 -0
  157. support_code/atom_parsers/AtomsDescription.py +359 -0
  158. support_code/atom_parsers/CreateAtomsDescription.py +56 -0
  159. support_code/nmdc/filefinder.py +90 -0
  160. support_code/nmdc/lipidomics/lipidomics_workflow.py +748 -0
  161. support_code/nmdc/lipidomics/manifest_examples.py +49 -0
  162. support_code/nmdc/metabolomics/gcms_workflow.py +158 -0
  163. support_code/nmdc/metabolomics/lcms_metabolomics_targeted_search.py +59 -0
  164. support_code/nmdc/metabolomics/lcms_metabolomics_workflow.py +248 -0
  165. support_code/nmdc/metabolomics/metabolomics_collection.py +628 -0
  166. support_code/nmdc/metadata/dms_api.py +42 -0
  167. support_code/nmdc/nom/archived_scripts/nmdc_metadata_gen.py +288 -0
  168. support_code/nmdc/nom/archived_scripts/nom_grow_workflow.py +209 -0
  169. support_code/nmdc/nom/nom_workflow.py +312 -0
  170. support_code/windows_only_importers/BrukerCompassXtract.py +180 -0
  171. support_code/windows_only_importers/ThermoMSFileReader.py +405 -0
@@ -0,0 +1,980 @@
1
+ Name: Methyl Stearate
2
+ RI: 1800.0
3
+ RetentionTime: 19.663
4
+ Comment: [Marker]
5
+ QI=74.1
6
+ FiehnRI=2712708
7
+ Raw=050107-002.D RI=S.D [FAME]
8
+ USI: EMSL:YMK-GC-20191015:NA:RT19.663:HPEUJPJOZXNMSJ-UHFFFAOYSA-N
9
+ Num Peaks: 64
10
+ 53 14
11
+ 54 18
12
+ 55 267
13
+ 56 50
14
+ 57 178
15
+ 58 12
16
+ 59 89
17
+ 67 31
18
+ 68 15
19
+ 69 143
20
+ 70 25
21
+ 71 63
22
+ 72 5
23
+ 73 22
24
+ 74 1000
25
+ 75 208
26
+ 76 11
27
+ 79 9
28
+ 81 22
29
+ 82 11
30
+ 83 85
31
+ 84 32
32
+ 85 30
33
+ 87 682
34
+ 88 53
35
+ 89 5
36
+ 93 6
37
+ 95 19
38
+ 96 8
39
+ 97 64
40
+ 98 28
41
+ 99 7
42
+ 101 50
43
+ 102 5
44
+ 107 5
45
+ 109 9
46
+ 111 23
47
+ 112 6
48
+ 115 18
49
+ 116 8
50
+ 121 6
51
+ 125 11
52
+ 129 55
53
+ 130 12
54
+ 135 5
55
+ 139 5
56
+ 143 149
57
+ 144 14
58
+ 157 17
59
+ 171 8
60
+ 185 24
61
+ 186 5
62
+ 199 57
63
+ 200 9
64
+ 213 23
65
+ 227 8
66
+ 241 19
67
+ 255 107
68
+ 256 19
69
+ 267 40
70
+ 268 8
71
+ 269 20
72
+ 298 79
73
+ 299 17
74
+
75
+ Name: Methyl Pelargonate
76
+ RI: 900.0
77
+ RetentionTime: 9.248
78
+ Comment: [Marker]
79
+ QI=74.05
80
+ FiehnRI=527238
81
+ Raw=050107-002.D RI=S.D [FAME]
82
+ USI: EMSL:YMK-GC-20191015:NA:RT9.248:IJXHLVMUNBOGRR-UHFFFAOYSA-N
83
+ Num Peaks: 35
84
+ 53 19
85
+ 54 13
86
+ 55 206
87
+ 56 42
88
+ 57 101
89
+ 58 6
90
+ 59 132
91
+ 60 5
92
+ 67 15
93
+ 68 14
94
+ 69 79
95
+ 70 16
96
+ 71 40
97
+ 73 21
98
+ 74 1000
99
+ 75 80
100
+ 76 6
101
+ 81 12
102
+ 83 32
103
+ 84 32
104
+ 85 5
105
+ 87 455
106
+ 88 43
107
+ 97 20
108
+ 98 14
109
+ 101 50
110
+ 112 7
111
+ 115 17
112
+ 129 84
113
+ 130 7
114
+ 141 92
115
+ 142 9
116
+ 143 70
117
+ 144 7
118
+ 172 7
119
+
120
+ Name: Methyl Laurate
121
+ RI: 1200.0
122
+ RetentionTime: 13.25
123
+ Comment: [Marker]
124
+ QI=74.1
125
+ FiehnRI=1089203
126
+ Raw=050107-002.D RI=S.D [FAME]
127
+ USI: EMSL:YMK-GC-20191015:NA:RT13.25:UQDUPQYQJKYHQI-UHFFFAOYSA-N
128
+ Num Peaks: 45
129
+ 53 18
130
+ 54 16
131
+ 55 229
132
+ 56 43
133
+ 57 103
134
+ 58 6
135
+ 59 108
136
+ 67 21
137
+ 68 10
138
+ 69 99
139
+ 70 19
140
+ 71 28
141
+ 73 19
142
+ 74 1000
143
+ 75 117
144
+ 76 7
145
+ 79 7
146
+ 81 14
147
+ 82 6
148
+ 83 53
149
+ 84 29
150
+ 85 18
151
+ 87 578
152
+ 88 50
153
+ 95 10
154
+ 97 37
155
+ 98 24
156
+ 101 45
157
+ 102 5
158
+ 109 5
159
+ 111 11
160
+ 112 5
161
+ 115 29
162
+ 116 7
163
+ 129 51
164
+ 130 6
165
+ 143 105
166
+ 144 9
167
+ 157 18
168
+ 171 86
169
+ 172 10
170
+ 183 65
171
+ 184 9
172
+ 185 30
173
+ 214 23
174
+
175
+ Name: Methyl Myristate
176
+ RI: 1400.0
177
+ RetentionTime: 15.597
178
+ Comment: [Marker]
179
+ QI=74.1
180
+ FiehnRI=1563808
181
+ Raw=050107-002.D RI=S.D [FAME]
182
+ USI: EMSL:YMK-GC-20191015:NA:RT15.597:ZAZKJZBWRNNLDS-UHFFFAOYSA-N
183
+ Num Peaks: 51
184
+ 53 18
185
+ 54 16
186
+ 55 239
187
+ 56 43
188
+ 57 122
189
+ 58 8
190
+ 59 100
191
+ 67 25
192
+ 68 12
193
+ 69 117
194
+ 70 21
195
+ 71 38
196
+ 73 21
197
+ 74 1000
198
+ 75 147
199
+ 76 8
200
+ 79 8
201
+ 81 16
202
+ 82 8
203
+ 83 62
204
+ 84 29
205
+ 85 20
206
+ 87 628
207
+ 88 54
208
+ 93 5
209
+ 95 13
210
+ 96 6
211
+ 97 46
212
+ 98 23
213
+ 101 48
214
+ 102 5
215
+ 109 6
216
+ 111 15
217
+ 112 5
218
+ 115 15
219
+ 116 6
220
+ 125 7
221
+ 129 47
222
+ 130 8
223
+ 143 142
224
+ 144 13
225
+ 157 26
226
+ 171 9
227
+ 185 26
228
+ 199 110
229
+ 200 14
230
+ 211 55
231
+ 212 9
232
+ 213 22
233
+ 242 36
234
+ 243 7
235
+
236
+ Name: Methyl Palmitate
237
+ RI: 1600.0
238
+ RetentionTime: 17.723
239
+ Comment: [Marker]
240
+ QI=74.05
241
+ FiehnRI=2107884
242
+ Raw=050107-002.D RI=S.D [FAME]
243
+ USI: EMSL:YMK-GC-20191015:NA:RT17.723:FLIACVVOZYBSBS-UHFFFAOYSA-N
244
+ Num Peaks: 57
245
+ 53 16
246
+ 54 17
247
+ 55 253
248
+ 56 48
249
+ 57 150
250
+ 58 10
251
+ 59 91
252
+ 67 30
253
+ 68 13
254
+ 69 131
255
+ 70 24
256
+ 71 52
257
+ 73 21
258
+ 74 1000
259
+ 75 178
260
+ 76 9
261
+ 79 8
262
+ 81 21
263
+ 82 9
264
+ 83 76
265
+ 84 32
266
+ 85 23
267
+ 87 654
268
+ 88 57
269
+ 93 5
270
+ 95 15
271
+ 96 7
272
+ 97 57
273
+ 98 25
274
+ 99 5
275
+ 101 47
276
+ 102 5
277
+ 109 7
278
+ 111 18
279
+ 112 6
280
+ 115 19
281
+ 116 8
282
+ 125 8
283
+ 129 55
284
+ 130 10
285
+ 143 137
286
+ 144 12
287
+ 157 14
288
+ 171 33
289
+ 172 5
290
+ 185 38
291
+ 186 5
292
+ 199 33
293
+ 200 5
294
+ 213 15
295
+ 227 99
296
+ 228 15
297
+ 239 47
298
+ 240 8
299
+ 241 24
300
+ 270 56
301
+ 271 11
302
+
303
+ Name: Methyl Eicosanoate
304
+ RI: 2000.0
305
+ RetentionTime: 21.441
306
+ Comment: [Marker]
307
+ QI=74
308
+ FiehnRI=3368090
309
+ Raw=050107-002.D RI=S.D [FAME]
310
+ USI: EMSL:YMK-GC-20191015:NA:RT21.441:QGBRLVONZXHAKJ-UHFFFAOYSA-N
311
+ Num Peaks: 73
312
+ 53 14
313
+ 54 19
314
+ 55 286
315
+ 56 55
316
+ 57 225
317
+ 58 15
318
+ 59 80
319
+ 60 5
320
+ 67 36
321
+ 68 17
322
+ 69 156
323
+ 70 30
324
+ 71 81
325
+ 72 6
326
+ 73 21
327
+ 74 1000
328
+ 75 244
329
+ 76 12
330
+ 79 9
331
+ 81 26
332
+ 82 11
333
+ 83 98
334
+ 84 36
335
+ 85 40
336
+ 87 698
337
+ 88 54
338
+ 89 5
339
+ 93 7
340
+ 95 21
341
+ 96 11
342
+ 97 78
343
+ 98 29
344
+ 99 8
345
+ 101 51
346
+ 102 5
347
+ 107 6
348
+ 109 11
349
+ 111 29
350
+ 112 8
351
+ 113 5
352
+ 115 19
353
+ 116 10
354
+ 121 7
355
+ 123 5
356
+ 125 13
357
+ 129 61
358
+ 130 13
359
+ 135 7
360
+ 139 7
361
+ 143 158
362
+ 144 15
363
+ 149 5
364
+ 157 13
365
+ 171 13
366
+ 185 30
367
+ 186 5
368
+ 199 36
369
+ 200 5
370
+ 213 9
371
+ 227 37
372
+ 228 7
373
+ 241 28
374
+ 242 5
375
+ 255 12
376
+ 269 13
377
+ 283 103
378
+ 284 21
379
+ 295 33
380
+ 296 7
381
+ 297 20
382
+ 298 5
383
+ 326 102
384
+ 327 24
385
+
386
+ Name: Methyl Hexacosanoate
387
+ RI: 2600.0
388
+ RetentionTime: 26.023
389
+ Comment: [Marker]
390
+ QI=74
391
+ FiehnRI=5563663
392
+ Raw=050107-002.D RI=S.D [FAME]
393
+ USI: EMSL:YMK-GC-20191015:NA:RT26.023:VHUJBYYFFWDLNM-UHFFFAOYSA-N
394
+ Num Peaks: 85
395
+ 53 14
396
+ 54 26
397
+ 55 328
398
+ 56 74
399
+ 57 356
400
+ 58 21
401
+ 59 67
402
+ 67 42
403
+ 68 21
404
+ 69 215
405
+ 70 47
406
+ 71 154
407
+ 72 10
408
+ 73 26
409
+ 74 1000
410
+ 75 354
411
+ 76 12
412
+ 79 9
413
+ 81 35
414
+ 82 19
415
+ 83 140
416
+ 84 42
417
+ 85 86
418
+ 86 6
419
+ 87 783
420
+ 88 56
421
+ 89 7
422
+ 93 8
423
+ 95 32
424
+ 96 17
425
+ 97 124
426
+ 98 45
427
+ 99 14
428
+ 101 52
429
+ 102 8
430
+ 107 8
431
+ 109 17
432
+ 110 7
433
+ 111 44
434
+ 112 10
435
+ 113 8
436
+ 115 28
437
+ 116 13
438
+ 121 11
439
+ 123 10
440
+ 125 20
441
+ 126 5
442
+ 127 5
443
+ 129 68
444
+ 130 16
445
+ 135 12
446
+ 139 14
447
+ 143 180
448
+ 144 18
449
+ 149 8
450
+ 153 7
451
+ 157 15
452
+ 163 6
453
+ 167 5
454
+ 171 9
455
+ 185 26
456
+ 186 6
457
+ 199 45
458
+ 200 6
459
+ 213 9
460
+ 227 7
461
+ 241 12
462
+ 255 18
463
+ 269 10
464
+ 297 7
465
+ 311 39
466
+ 312 10
467
+ 325 21
468
+ 326 5
469
+ 339 5
470
+ 353 14
471
+ 367 104
472
+ 368 26
473
+ 379 20
474
+ 380 6
475
+ 381 15
476
+ 382 5
477
+ 410 181
478
+ 411 53
479
+ 412 9
480
+
481
+ Name: Methyl Lignocerate
482
+ RI: 2400.0
483
+ RetentionTime: 24.603
484
+ Comment: [Marker]
485
+ QI=74.1
486
+ FiehnRI=4799845
487
+ Raw=050107-002.D RI=S.D [FAME]
488
+ USI: EMSL:YMK-GC-20191015:NA:RT24.603:XUDJZDNUVZHSKZ-UHFFFAOYSA-N
489
+ Num Peaks: 80
490
+ 53 13
491
+ 54 23
492
+ 55 316
493
+ 56 66
494
+ 57 327
495
+ 58 20
496
+ 59 73
497
+ 60 5
498
+ 67 37
499
+ 68 23
500
+ 69 189
501
+ 70 43
502
+ 71 133
503
+ 72 8
504
+ 73 22
505
+ 74 1000
506
+ 75 314
507
+ 76 16
508
+ 79 10
509
+ 81 32
510
+ 82 16
511
+ 83 124
512
+ 84 41
513
+ 85 66
514
+ 86 5
515
+ 87 745
516
+ 88 58
517
+ 93 7
518
+ 95 30
519
+ 96 12
520
+ 97 101
521
+ 98 38
522
+ 99 12
523
+ 101 51
524
+ 102 5
525
+ 107 7
526
+ 109 14
527
+ 110 6
528
+ 111 41
529
+ 112 9
530
+ 113 7
531
+ 115 20
532
+ 116 11
533
+ 121 9
534
+ 123 8
535
+ 125 20
536
+ 129 66
537
+ 130 14
538
+ 135 11
539
+ 139 9
540
+ 143 181
541
+ 144 18
542
+ 149 7
543
+ 153 5
544
+ 157 13
545
+ 171 8
546
+ 185 29
547
+ 186 5
548
+ 199 39
549
+ 200 6
550
+ 213 7
551
+ 227 13
552
+ 241 18
553
+ 255 11
554
+ 269 6
555
+ 283 40
556
+ 284 9
557
+ 297 22
558
+ 298 6
559
+ 311 6
560
+ 325 13
561
+ 339 103
562
+ 340 24
563
+ 351 20
564
+ 352 6
565
+ 353 18
566
+ 354 5
567
+ 382 158
568
+ 383 44
569
+ 384 7
570
+
571
+ Name: Methyl Octacosanoate
572
+ RI: 2800.0
573
+ RetentionTime: 27.349
574
+ Comment: [Marker]
575
+ QI=74
576
+ FiehnRI=6349335
577
+ Raw=050107-002.D RI=S.D [FAME]
578
+ USI: EMSL:YMK-GC-20191015:NA:RT27.349:ZKHOYAKAFALNQD-UHFFFAOYSA-N
579
+ Num Peaks: 89
580
+ 53 11
581
+ 54 23
582
+ 55 343
583
+ 56 84
584
+ 57 429
585
+ 58 24
586
+ 59 62
587
+ 60 5
588
+ 67 44
589
+ 68 26
590
+ 69 229
591
+ 70 54
592
+ 71 195
593
+ 72 12
594
+ 73 27
595
+ 74 1000
596
+ 75 390
597
+ 76 14
598
+ 79 9
599
+ 80 5
600
+ 81 39
601
+ 82 24
602
+ 83 156
603
+ 84 46
604
+ 85 94
605
+ 86 8
606
+ 87 794
607
+ 88 61
608
+ 89 6
609
+ 93 8
610
+ 95 35
611
+ 96 19
612
+ 97 132
613
+ 98 47
614
+ 99 17
615
+ 101 54
616
+ 102 7
617
+ 107 7
618
+ 109 23
619
+ 110 9
620
+ 111 53
621
+ 112 13
622
+ 113 9
623
+ 115 24
624
+ 116 15
625
+ 121 12
626
+ 123 10
627
+ 124 6
628
+ 125 26
629
+ 126 5
630
+ 127 5
631
+ 129 69
632
+ 130 18
633
+ 135 11
634
+ 137 5
635
+ 139 14
636
+ 143 199
637
+ 144 18
638
+ 149 8
639
+ 153 9
640
+ 157 16
641
+ 163 6
642
+ 167 6
643
+ 171 9
644
+ 185 26
645
+ 186 6
646
+ 199 41
647
+ 200 6
648
+ 213 6
649
+ 227 8
650
+ 241 11
651
+ 255 11
652
+ 283 11
653
+ 297 10
654
+ 311 8
655
+ 325 5
656
+ 339 38
657
+ 340 12
658
+ 353 20
659
+ 354 5
660
+ 367 6
661
+ 381 14
662
+ 395 98
663
+ 396 27
664
+ 407 14
665
+ 409 18
666
+ 438 213
667
+ 439 63
668
+ 440 12
669
+
670
+ Name: Methyl Triacontanoate
671
+ RI: 3000.0
672
+ RetentionTime: 28.723
673
+ Comment: [Marker]
674
+ QI=74.05
675
+ FiehnRI=7240314
676
+ Raw=050107-002.D RI=S.D [FAME]
677
+ USI: EMSL:YMK-GC-20191015:NA:RT28.723:BIRUBGLRQLAEFF-UHFFFAOYSA-N
678
+ Num Peaks: 121
679
+ 53 11
680
+ 54 25
681
+ 55 321
682
+ 56 97
683
+ 57 451
684
+ 58 27
685
+ 59 63
686
+ 60 7
687
+ 61 6
688
+ 66 6
689
+ 67 52
690
+ 68 28
691
+ 69 243
692
+ 70 56
693
+ 71 204
694
+ 72 15
695
+ 73 50
696
+ 74 1000
697
+ 75 407
698
+ 76 21
699
+ 79 10
700
+ 81 40
701
+ 82 29
702
+ 83 171
703
+ 84 47
704
+ 85 116
705
+ 86 10
706
+ 87 742
707
+ 88 60
708
+ 89 7
709
+ 93 9
710
+ 95 41
711
+ 96 21
712
+ 97 150
713
+ 98 46
714
+ 99 18
715
+ 101 56
716
+ 102 7
717
+ 103 6
718
+ 105 6
719
+ 107 9
720
+ 108 6
721
+ 109 25
722
+ 110 8
723
+ 111 57
724
+ 112 11
725
+ 113 11
726
+ 115 28
727
+ 116 12
728
+ 119 6
729
+ 121 18
730
+ 123 11
731
+ 124 7
732
+ 125 31
733
+ 126 9
734
+ 129 64
735
+ 130 23
736
+ 133 9
737
+ 135 18
738
+ 137 6
739
+ 139 17
740
+ 140 5
741
+ 143 200
742
+ 144 20
743
+ 147 10
744
+ 149 6
745
+ 151 5
746
+ 153 10
747
+ 157 18
748
+ 161 6
749
+ 167 8
750
+ 171 16
751
+ 175 6
752
+ 181 6
753
+ 185 26
754
+ 186 6
755
+ 191 12
756
+ 193 13
757
+ 194 7
758
+ 195 8
759
+ 199 40
760
+ 200 6
761
+ 205 8
762
+ 207 46
763
+ 208 10
764
+ 213 6
765
+ 214 5
766
+ 221 11
767
+ 222 6
768
+ 227 10
769
+ 241 9
770
+ 255 17
771
+ 281 5
772
+ 283 5
773
+ 295 8
774
+ 297 6
775
+ 311 15
776
+ 325 6
777
+ 326 10
778
+ 327 6
779
+ 339 5
780
+ 342 9
781
+ 353 8
782
+ 355 7
783
+ 357 13
784
+ 367 41
785
+ 368 13
786
+ 381 20
787
+ 382 8
788
+ 395 7
789
+ 409 10
790
+ 410 5
791
+ 417 8
792
+ 424 134
793
+ 425 7
794
+ 435 11
795
+ 437 22
796
+ 467 270
797
+ 468 86
798
+ 469 16
799
+ 475 6
800
+
801
+ Name: Methyl Caprate
802
+ RI: 1000.0
803
+ RetentionTime: 10.647
804
+ Comment: [Marker]
805
+ QI=74.1
806
+ FiehnRI=692985
807
+ Raw=050107-002.D RI=S.D\n[FAME]
808
+ USI: EMSL:YMK-GC-20191015:NA:RT10.647:YRHYCMZPEVDGFQ-UHFFFAOYSA-N
809
+ Num Peaks: 39
810
+ 53 19
811
+ 54 14
812
+ 55 208
813
+ 56 39
814
+ 57 78
815
+ 58 5
816
+ 59 121
817
+ 67 18
818
+ 68 12
819
+ 69 89
820
+ 70 16
821
+ 71 36
822
+ 73 19
823
+ 74 1000
824
+ 75 92
825
+ 76 7
826
+ 79 5
827
+ 81 13
828
+ 82 6
829
+ 83 39
830
+ 84 31
831
+ 85 18
832
+ 87 500
833
+ 88 47
834
+ 95 8
835
+ 97 25
836
+ 98 20
837
+ 101 53
838
+ 110 5
839
+ 111 7
840
+ 112 8
841
+ 115 14
842
+ 129 38
843
+ 143 136
844
+ 144 13
845
+ 155 79
846
+ 156 9
847
+ 157 24
848
+ 186 10
849
+
850
+ Name: Methyl Caprylate
851
+ RI: 800.0
852
+ RetentionTime: 7.812
853
+ Comment: [Marker]
854
+ QI=74.1
855
+ FiehnRI=385824
856
+ Raw=050107-002.D RI=S.D[FAME]
857
+ USI: EMSL:YMK-GC-20191015:NA:RT7.812:JGHZJRVDZXSNKQ-UHFFFAOYSA-N
858
+ Num Peaks: 35
859
+ 51 5
860
+ 53 19
861
+ 54 10
862
+ 55 206
863
+ 56 36
864
+ 57 161
865
+ 58 9
866
+ 59 154
867
+ 60 6
868
+ 67 15
869
+ 68 5
870
+ 69 64
871
+ 70 16
872
+ 71 6
873
+ 73 21
874
+ 74 1000
875
+ 75 71
876
+ 76 5
877
+ 81 5
878
+ 82 6
879
+ 83 27
880
+ 84 35
881
+ 85 6
882
+ 87 409
883
+ 88 41
884
+ 97 15
885
+ 98 17
886
+ 101 64
887
+ 102 5
888
+ 109 5
889
+ 115 78
890
+ 116 7
891
+ 127 109
892
+ 128 9
893
+ 129 34
894
+
895
+ Name: Methyl Docosanoate
896
+ RI: 2200.0
897
+ RetentionTime: 23.082
898
+ Comment: [Marker]
899
+ QI=74.1
900
+ FiehnRI=4066492
901
+ Raw=050107-002.D RI=S.D [FAME]
902
+ USI: EMSL:YMK-GC-20191015:NA:RT23.082:QSQLTHHMFHEFIY-UHFFFAOYSA-N
903
+ Num Peaks: 76
904
+ 53 13
905
+ 54 21
906
+ 55 301
907
+ 56 62
908
+ 57 265
909
+ 58 17
910
+ 59 74
911
+ 67 37
912
+ 68 18
913
+ 69 175
914
+ 70 35
915
+ 71 104
916
+ 72 7
917
+ 73 23
918
+ 74 1000
919
+ 75 272
920
+ 76 13
921
+ 79 8
922
+ 81 32
923
+ 82 16
924
+ 83 113
925
+ 84 37
926
+ 85 50
927
+ 87 734
928
+ 88 57
929
+ 89 5
930
+ 93 7
931
+ 95 26
932
+ 96 12
933
+ 97 90
934
+ 98 34
935
+ 99 10
936
+ 101 53
937
+ 102 6
938
+ 107 6
939
+ 109 14
940
+ 110 6
941
+ 111 35
942
+ 112 9
943
+ 113 5
944
+ 115 21
945
+ 116 11
946
+ 121 10
947
+ 123 6
948
+ 125 16
949
+ 129 62
950
+ 130 13
951
+ 135 9
952
+ 139 9
953
+ 143 171
954
+ 144 15
955
+ 149 5
956
+ 153 5
957
+ 157 15
958
+ 171 7
959
+ 185 24
960
+ 186 5
961
+ 199 42
962
+ 200 6
963
+ 213 13
964
+ 227 7
965
+ 241 13
966
+ 255 47
967
+ 256 9
968
+ 269 21
969
+ 283 7
970
+ 297 15
971
+ 311 107
972
+ 312 25
973
+ 323 26
974
+ 324 6
975
+ 325 17
976
+ 326 5
977
+ 354 129
978
+ 355 32
979
+ 356 5
980
+