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.
- corems/__init__.py +63 -0
- corems/chroma_peak/__init__.py +0 -0
- corems/chroma_peak/calc/ChromaPeakCalc.py +480 -0
- corems/chroma_peak/calc/__init__.py +0 -0
- corems/chroma_peak/calc/subset.py +196 -0
- corems/chroma_peak/factory/__init__.py +0 -0
- corems/chroma_peak/factory/chroma_peak_classes.py +1178 -0
- corems/encapsulation/__init__.py +0 -0
- corems/encapsulation/constant.py +1283 -0
- corems/encapsulation/factory/__init__.py +0 -0
- corems/encapsulation/factory/parameters.py +392 -0
- corems/encapsulation/factory/processingSetting.py +1244 -0
- corems/encapsulation/input/__init__.py +0 -0
- corems/encapsulation/input/parameter_from_json.py +579 -0
- corems/encapsulation/output/__init__.py +0 -0
- corems/encapsulation/output/parameter_to_dict.py +142 -0
- corems/encapsulation/output/parameter_to_json.py +332 -0
- corems/mass_spectra/__init__.py +0 -0
- corems/mass_spectra/calc/GC_Calc.py +84 -0
- corems/mass_spectra/calc/GC_Deconvolution.py +558 -0
- corems/mass_spectra/calc/GC_RI_Calibration.py +44 -0
- corems/mass_spectra/calc/MZSearch.py +249 -0
- corems/mass_spectra/calc/SignalProcessing.py +656 -0
- corems/mass_spectra/calc/__init__.py +0 -0
- corems/mass_spectra/calc/lc_calc.py +5790 -0
- corems/mass_spectra/calc/lc_calc_operations.py +1127 -0
- corems/mass_spectra/factory/GC_Class.py +791 -0
- corems/mass_spectra/factory/__init__.py +0 -0
- corems/mass_spectra/factory/chromat_data.py +51 -0
- corems/mass_spectra/factory/lc_class.py +2721 -0
- corems/mass_spectra/input/__init__.py +0 -0
- corems/mass_spectra/input/andiNetCDF.py +200 -0
- corems/mass_spectra/input/boosterHDF5.py +216 -0
- corems/mass_spectra/input/brukerSolarix.py +153 -0
- corems/mass_spectra/input/brukerSolarix_utils.py +73 -0
- corems/mass_spectra/input/corems_hdf5.py +1710 -0
- corems/mass_spectra/input/massList.py +133 -0
- corems/mass_spectra/input/mzml.py +668 -0
- corems/mass_spectra/input/parserbase.py +239 -0
- corems/mass_spectra/input/rawFileReader.py +1839 -0
- corems/mass_spectra/output/__init__.py +0 -0
- corems/mass_spectra/output/export.py +2800 -0
- corems/mass_spectrum/__init__.py +0 -0
- corems/mass_spectrum/calc/AutoRecalibration.py +237 -0
- corems/mass_spectrum/calc/Calibration.py +602 -0
- corems/mass_spectrum/calc/CalibrationCalc.py +253 -0
- corems/mass_spectrum/calc/KendrickGroup.py +239 -0
- corems/mass_spectrum/calc/MassErrorPrediction.py +436 -0
- corems/mass_spectrum/calc/MassSpectrumCalc.py +303 -0
- corems/mass_spectrum/calc/MeanResolvingPowerFilter.py +212 -0
- corems/mass_spectrum/calc/NoiseCalc.py +371 -0
- corems/mass_spectrum/calc/NoiseCalc_Bayes.py +93 -0
- corems/mass_spectrum/calc/PeakPicking.py +994 -0
- corems/mass_spectrum/calc/__init__.py +0 -0
- corems/mass_spectrum/factory/MassSpectrumClasses.py +1753 -0
- corems/mass_spectrum/factory/__init__.py +0 -0
- corems/mass_spectrum/input/__init__.py +0 -0
- corems/mass_spectrum/input/baseClass.py +531 -0
- corems/mass_spectrum/input/boosterHDF5.py +161 -0
- corems/mass_spectrum/input/coremsHDF5.py +475 -0
- corems/mass_spectrum/input/massList.py +402 -0
- corems/mass_spectrum/input/numpyArray.py +133 -0
- corems/mass_spectrum/output/__init__.py +0 -0
- corems/mass_spectrum/output/export.py +841 -0
- corems/molecular_formula/__init__.py +0 -0
- corems/molecular_formula/calc/MolecularFormulaCalc.py +885 -0
- corems/molecular_formula/calc/__init__.py +0 -0
- corems/molecular_formula/factory/MolecularFormulaFactory.py +895 -0
- corems/molecular_formula/factory/__init__.py +0 -0
- corems/molecular_formula/input/__init__.py +0 -0
- corems/molecular_formula/input/masslist_ref.py +355 -0
- corems/molecular_id/__init__.py +0 -0
- corems/molecular_id/calc/ClusterFilter.py +251 -0
- corems/molecular_id/calc/MolecularFilter.py +122 -0
- corems/molecular_id/calc/SpectralSimilarity.py +632 -0
- corems/molecular_id/calc/__init__.py +0 -0
- corems/molecular_id/calc/math_distance.py +1637 -0
- corems/molecular_id/data/FAMES_REF.msp +980 -0
- corems/molecular_id/data/PNNLMetV20191015.msp +157267 -0
- corems/molecular_id/factory/EI_SQL.py +650 -0
- corems/molecular_id/factory/MolecularLookupTable.py +914 -0
- corems/molecular_id/factory/__init__.py +0 -0
- corems/molecular_id/factory/classification.py +884 -0
- corems/molecular_id/factory/lipid_molecular_metadata.py +50 -0
- corems/molecular_id/factory/molecularSQL.py +827 -0
- corems/molecular_id/factory/spectrum_search_results.py +119 -0
- corems/molecular_id/input/__init__.py +0 -0
- corems/molecular_id/input/nistMSI.py +148 -0
- corems/molecular_id/search/__init__.py +0 -0
- corems/molecular_id/search/compoundSearch.py +214 -0
- corems/molecular_id/search/database_interfaces.py +1527 -0
- corems/molecular_id/search/findOxygenPeaks.py +330 -0
- corems/molecular_id/search/lcms_spectral_search.py +348 -0
- corems/molecular_id/search/molecularFormulaSearch.py +1117 -0
- corems/molecular_id/search/priorityAssignment.py +723 -0
- corems/ms_peak/__init__.py +0 -0
- corems/ms_peak/calc/MSPeakCalc.py +1010 -0
- corems/ms_peak/calc/__init__.py +0 -0
- corems/ms_peak/factory/MSPeakClasses.py +542 -0
- corems/ms_peak/factory/__init__.py +0 -0
- corems/transient/__init__.py +0 -0
- corems/transient/calc/TransientCalc.py +362 -0
- corems/transient/calc/__init__.py +0 -0
- corems/transient/factory/TransientClasses.py +457 -0
- corems/transient/factory/__init__.py +0 -0
- corems/transient/input/__init__.py +0 -0
- corems/transient/input/brukerSolarix.py +461 -0
- corems/transient/input/midasDatFile.py +172 -0
- corems-4.0.0.dist-info/METADATA +475 -0
- corems-4.0.0.dist-info/RECORD +171 -0
- corems-4.0.0.dist-info/WHEEL +5 -0
- corems-4.0.0.dist-info/licenses/LICENSE +22 -0
- corems-4.0.0.dist-info/top_level.txt +4 -0
- examples/archive/scripts/CoreMS_tutorial.py +94 -0
- examples/archive/scripts/DI HR-MS Halogens Bruker.py +196 -0
- examples/archive/scripts/DI HR-MS MassList.py +385 -0
- examples/archive/scripts/GC-MS MetabRef.py +213 -0
- examples/archive/scripts/GC-MS NetCDF.py +217 -0
- examples/archive/scripts/HR-MS Thermo Raw 21T.py +136 -0
- examples/archive/scripts/LC-ICPMS_metal_peaks.py +297 -0
- examples/archive/scripts/LCMS-Thermo.py +460 -0
- examples/archive/scripts/LCMS_isotopes.py +283 -0
- examples/archive/scripts/MSParams_example.py +21 -0
- examples/archive/scripts/Molecular Formula Data Aggreation.py +84 -0
- examples/archive/scripts/Single Mz Search.py +69 -0
- examples/test_notebooks.py +145 -0
- ext_lib/ChemstationMSFileReader.dll +0 -0
- ext_lib/ChemstationMSFileReader.xml +126 -0
- ext_lib/RawFileReaderLicense.doc +0 -0
- ext_lib/ThermoFisher.CommonCore.BackgroundSubtraction.dll +0 -0
- ext_lib/ThermoFisher.CommonCore.BackgroundSubtraction.xml +2307 -0
- ext_lib/ThermoFisher.CommonCore.Data.dll +0 -0
- ext_lib/ThermoFisher.CommonCore.Data.xml +28974 -0
- ext_lib/ThermoFisher.CommonCore.MassPrecisionEstimator.dll +0 -0
- ext_lib/ThermoFisher.CommonCore.MassPrecisionEstimator.xml +241 -0
- ext_lib/ThermoFisher.CommonCore.RawFileReader.dll +0 -0
- ext_lib/ThermoFisher.CommonCore.RawFileReader.xml +31174 -0
- ext_lib/__init__.py +0 -0
- ext_lib/dotnet/OpenMcdf.Extensions.dll +0 -0
- ext_lib/dotnet/OpenMcdf.dll +0 -0
- ext_lib/dotnet/OpenMcdf.xml +1154 -0
- ext_lib/dotnet/System.IO.FileSystem.AccessControl.dll +0 -0
- ext_lib/dotnet/System.IO.FileSystem.AccessControl.xml +506 -0
- ext_lib/dotnet/System.Security.AccessControl.dll +0 -0
- ext_lib/dotnet/System.Security.AccessControl.xml +2043 -0
- ext_lib/dotnet/System.Security.Principal.Windows.dll +0 -0
- ext_lib/dotnet/System.Security.Principal.Windows.xml +1011 -0
- ext_lib/dotnet/ThermoFisher.CommonCore.BackgroundSubtraction.dll +0 -0
- ext_lib/dotnet/ThermoFisher.CommonCore.BackgroundSubtraction.xml +2307 -0
- ext_lib/dotnet/ThermoFisher.CommonCore.Data.dll +0 -0
- ext_lib/dotnet/ThermoFisher.CommonCore.Data.xml +29148 -0
- ext_lib/dotnet/ThermoFisher.CommonCore.MassPrecisionEstimator.dll +0 -0
- ext_lib/dotnet/ThermoFisher.CommonCore.MassPrecisionEstimator.xml +241 -0
- ext_lib/dotnet/ThermoFisher.CommonCore.RawFileReader.dll +0 -0
- ext_lib/dotnet/ThermoFisher.CommonCore.RawFileReader.xml +31492 -0
- ext_lib/version +18 -0
- support_code/atom_parsers/AtomsDescription.py +359 -0
- support_code/atom_parsers/CreateAtomsDescription.py +56 -0
- support_code/nmdc/filefinder.py +90 -0
- support_code/nmdc/lipidomics/lipidomics_workflow.py +748 -0
- support_code/nmdc/lipidomics/manifest_examples.py +49 -0
- support_code/nmdc/metabolomics/gcms_workflow.py +158 -0
- support_code/nmdc/metabolomics/lcms_metabolomics_targeted_search.py +59 -0
- support_code/nmdc/metabolomics/lcms_metabolomics_workflow.py +248 -0
- support_code/nmdc/metabolomics/metabolomics_collection.py +628 -0
- support_code/nmdc/metadata/dms_api.py +42 -0
- support_code/nmdc/nom/archived_scripts/nmdc_metadata_gen.py +288 -0
- support_code/nmdc/nom/archived_scripts/nom_grow_workflow.py +209 -0
- support_code/nmdc/nom/nom_workflow.py +312 -0
- support_code/windows_only_importers/BrukerCompassXtract.py +180 -0
- support_code/windows_only_importers/ThermoMSFileReader.py +405 -0
|
Binary file
|
|
@@ -0,0 +1,241 @@
|
|
|
1
|
+
<?xml version="1.0"?>
|
|
2
|
+
<doc>
|
|
3
|
+
<assembly>
|
|
4
|
+
<name>ThermoFisher.CommonCore.MassPrecisionEstimator</name>
|
|
5
|
+
</assembly>
|
|
6
|
+
<members>
|
|
7
|
+
<member name="T:ThermoFisher.CommonCore.MassPrecisionEstimator.EstimatorResults">
|
|
8
|
+
<summary>
|
|
9
|
+
Class to hold mass precision estimator results for individual mass/intensity points
|
|
10
|
+
in a scan.
|
|
11
|
+
</summary>
|
|
12
|
+
</member>
|
|
13
|
+
<member name="P:ThermoFisher.CommonCore.MassPrecisionEstimator.EstimatorResults.Intensity">
|
|
14
|
+
<summary>
|
|
15
|
+
Gets or sets the intensity value
|
|
16
|
+
</summary>
|
|
17
|
+
</member>
|
|
18
|
+
<member name="P:ThermoFisher.CommonCore.MassPrecisionEstimator.EstimatorResults.Mass">
|
|
19
|
+
<summary>
|
|
20
|
+
Gets or sets the mass value
|
|
21
|
+
</summary>
|
|
22
|
+
</member>
|
|
23
|
+
<member name="P:ThermoFisher.CommonCore.MassPrecisionEstimator.EstimatorResults.MassAccuracyInMmu">
|
|
24
|
+
<summary>
|
|
25
|
+
Gets or sets the mass accuracy in MMU value
|
|
26
|
+
</summary>
|
|
27
|
+
</member>
|
|
28
|
+
<member name="P:ThermoFisher.CommonCore.MassPrecisionEstimator.EstimatorResults.MassAccuracyInPpm">
|
|
29
|
+
<summary>
|
|
30
|
+
Gets or sets the mass accuracy in PPM value
|
|
31
|
+
</summary>
|
|
32
|
+
</member>
|
|
33
|
+
<member name="P:ThermoFisher.CommonCore.MassPrecisionEstimator.EstimatorResults.Resolution">
|
|
34
|
+
<summary>
|
|
35
|
+
Gets or sets the resolution value
|
|
36
|
+
</summary>
|
|
37
|
+
</member>
|
|
38
|
+
<member name="T:ThermoFisher.CommonCore.MassPrecisionEstimator.IPrecisionEstimate">
|
|
39
|
+
<summary>
|
|
40
|
+
The interface class for the Mass Precision Estimate (MPE) code
|
|
41
|
+
</summary>
|
|
42
|
+
</member>
|
|
43
|
+
<member name="P:ThermoFisher.CommonCore.MassPrecisionEstimator.IPrecisionEstimate.Rawfile">
|
|
44
|
+
<summary>
|
|
45
|
+
Sets the RAW file.
|
|
46
|
+
</summary>
|
|
47
|
+
</member>
|
|
48
|
+
<member name="P:ThermoFisher.CommonCore.MassPrecisionEstimator.IPrecisionEstimate.ScanNumber">
|
|
49
|
+
<summary>
|
|
50
|
+
Sets the scan number.
|
|
51
|
+
</summary>
|
|
52
|
+
<value> The scan number. </value>
|
|
53
|
+
</member>
|
|
54
|
+
<member name="M:ThermoFisher.CommonCore.MassPrecisionEstimator.IPrecisionEstimate.GetIonTime(ThermoFisher.CommonCore.Data.FilterEnums.MassAnalyzerType,ThermoFisher.CommonCore.Data.Business.Scan,System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String})">
|
|
55
|
+
<summary>
|
|
56
|
+
Calculate the ion time - fill (traps and FT) or dwell time (quads)
|
|
57
|
+
based upon the type of instrument.
|
|
58
|
+
</summary>
|
|
59
|
+
<param name="analyzerType">The analyzer type</param>
|
|
60
|
+
<param name="scan">The scan to process</param>
|
|
61
|
+
<param name="trailerHeadings">The trailer headings.</param>
|
|
62
|
+
<param name="trailerValues">The trailer values.</param>
|
|
63
|
+
<returns>The calculated ion time</returns>
|
|
64
|
+
</member>
|
|
65
|
+
<member name="M:ThermoFisher.CommonCore.MassPrecisionEstimator.IPrecisionEstimate.GetMassPrecisionEstimate(ThermoFisher.CommonCore.Data.Business.Scan,ThermoFisher.CommonCore.Data.FilterEnums.MassAnalyzerType,System.Double,System.Double)">
|
|
66
|
+
<summary>
|
|
67
|
+
Gets the mass precision estimate for the data in the provided scan. The information is passed through the
|
|
68
|
+
arguments in this method.
|
|
69
|
+
</summary>
|
|
70
|
+
<param name="scan">The scan to process</param>
|
|
71
|
+
<param name="analyzerType">The analyzer type for the provided scan</param>
|
|
72
|
+
<param name="ionTime">The ion time for the provided scan</param>
|
|
73
|
+
<param name="resolution">the resolution for the provided scan</param>
|
|
74
|
+
<returns>The list of EstimatorResults objects</returns>
|
|
75
|
+
</member>
|
|
76
|
+
<member name="M:ThermoFisher.CommonCore.MassPrecisionEstimator.IPrecisionEstimate.GetMassPrecisionEstimate">
|
|
77
|
+
<summary>
|
|
78
|
+
Gets mass precision estimate for the provided scan number. The information needed to process the scan is passed through
|
|
79
|
+
the properties in the class when using this method.
|
|
80
|
+
</summary>
|
|
81
|
+
<returns>The list of EstimatorResults objects</returns>
|
|
82
|
+
</member>
|
|
83
|
+
<member name="T:ThermoFisher.CommonCore.MassPrecisionEstimator.PrecisionEstimate">
|
|
84
|
+
<summary>
|
|
85
|
+
Class to calculate the mass precision estimates (MPE) for a specific scan
|
|
86
|
+
</summary>
|
|
87
|
+
</member>
|
|
88
|
+
<member name="T:ThermoFisher.CommonCore.MassPrecisionEstimator.PrecisionEstimate.TrapScanType">
|
|
89
|
+
<summary>
|
|
90
|
+
Values that represent the ion trap scan types.
|
|
91
|
+
</summary>
|
|
92
|
+
</member>
|
|
93
|
+
<member name="F:ThermoFisher.CommonCore.MassPrecisionEstimator.PrecisionEstimate.TrapScanType.Normal">
|
|
94
|
+
<summary>
|
|
95
|
+
The type for a normal scan
|
|
96
|
+
</summary>
|
|
97
|
+
</member>
|
|
98
|
+
<member name="F:ThermoFisher.CommonCore.MassPrecisionEstimator.PrecisionEstimate.TrapScanType.Enhanced">
|
|
99
|
+
<summary>
|
|
100
|
+
The type for an enhanced scan
|
|
101
|
+
</summary>
|
|
102
|
+
</member>
|
|
103
|
+
<member name="F:ThermoFisher.CommonCore.MassPrecisionEstimator.PrecisionEstimate.TrapScanType.Zoom">
|
|
104
|
+
<summary>
|
|
105
|
+
The type for a zoom scan
|
|
106
|
+
</summary>
|
|
107
|
+
</member>
|
|
108
|
+
<member name="F:ThermoFisher.CommonCore.MassPrecisionEstimator.PrecisionEstimate.TrapScanType.UltraZoom">
|
|
109
|
+
<summary>
|
|
110
|
+
The type for an ultra zoom scan
|
|
111
|
+
</summary>
|
|
112
|
+
</member>
|
|
113
|
+
<member name="F:ThermoFisher.CommonCore.MassPrecisionEstimator.PrecisionEstimate._estimatorResults">
|
|
114
|
+
<summary>
|
|
115
|
+
List containing the results from the mass precision estimate calculation.
|
|
116
|
+
</summary>
|
|
117
|
+
</member>
|
|
118
|
+
<member name="F:ThermoFisher.CommonCore.MassPrecisionEstimator.PrecisionEstimate._rawFile">
|
|
119
|
+
<summary>
|
|
120
|
+
The RAW file object.
|
|
121
|
+
</summary>
|
|
122
|
+
</member>
|
|
123
|
+
<member name="F:ThermoFisher.CommonCore.MassPrecisionEstimator.PrecisionEstimate._scanResolution">
|
|
124
|
+
<summary>
|
|
125
|
+
The scan resolution.
|
|
126
|
+
</summary>
|
|
127
|
+
</member>
|
|
128
|
+
<member name="F:ThermoFisher.CommonCore.MassPrecisionEstimator.PrecisionEstimate._ionTime">
|
|
129
|
+
<summary>
|
|
130
|
+
The ion time.
|
|
131
|
+
</summary>
|
|
132
|
+
</member>
|
|
133
|
+
<member name="F:ThermoFisher.CommonCore.MassPrecisionEstimator.PrecisionEstimate._scanNumber">
|
|
134
|
+
<summary>
|
|
135
|
+
The scan number.
|
|
136
|
+
</summary>
|
|
137
|
+
</member>
|
|
138
|
+
<member name="P:ThermoFisher.CommonCore.MassPrecisionEstimator.PrecisionEstimate.Rawfile">
|
|
139
|
+
<summary>
|
|
140
|
+
Sets the raw file as an open IRawData objects.
|
|
141
|
+
</summary>
|
|
142
|
+
</member>
|
|
143
|
+
<member name="P:ThermoFisher.CommonCore.MassPrecisionEstimator.PrecisionEstimate.ScanNumber">
|
|
144
|
+
<summary>
|
|
145
|
+
Sets the scan number of the scan to be analyzed
|
|
146
|
+
</summary>
|
|
147
|
+
<value> The scan number. </value>
|
|
148
|
+
</member>
|
|
149
|
+
<member name="M:ThermoFisher.CommonCore.MassPrecisionEstimator.PrecisionEstimate.GetIonTrapScanType(System.String)">
|
|
150
|
+
<summary>
|
|
151
|
+
Gets the ion trap scan type.
|
|
152
|
+
</summary>
|
|
153
|
+
<param name="scanFilter">
|
|
154
|
+
The scan filter to process
|
|
155
|
+
</param>
|
|
156
|
+
<returns>
|
|
157
|
+
The ion trap scan type as an enumerated value.
|
|
158
|
+
</returns>
|
|
159
|
+
</member>
|
|
160
|
+
<member name="M:ThermoFisher.CommonCore.MassPrecisionEstimator.PrecisionEstimate.#ctor">
|
|
161
|
+
<summary>
|
|
162
|
+
Initializes a new instance of the <see cref="T:ThermoFisher.CommonCore.MassPrecisionEstimator.PrecisionEstimate"/> class.
|
|
163
|
+
</summary>
|
|
164
|
+
</member>
|
|
165
|
+
<member name="M:ThermoFisher.CommonCore.MassPrecisionEstimator.PrecisionEstimate.Dispose">
|
|
166
|
+
<summary>
|
|
167
|
+
Performs application-defined tasks associated with freeing, releasing, or resetting
|
|
168
|
+
unmanaged resources.
|
|
169
|
+
</summary>
|
|
170
|
+
</member>
|
|
171
|
+
<member name="M:ThermoFisher.CommonCore.MassPrecisionEstimator.PrecisionEstimate.GetIonTime(ThermoFisher.CommonCore.Data.FilterEnums.MassAnalyzerType,ThermoFisher.CommonCore.Data.Business.Scan,System.Collections.Generic.List{System.String},System.Collections.Generic.List{System.String})">
|
|
172
|
+
<summary>
|
|
173
|
+
Calculate the ion time (fill (traps and FT) or dwell time (quads))
|
|
174
|
+
</summary>
|
|
175
|
+
<param name="analyzerType">The analyzer type</param>
|
|
176
|
+
<param name="scan">The scan to process</param>
|
|
177
|
+
<param name="trailerHeadings">The trailer extra data headings</param>
|
|
178
|
+
<param name="trailerValues">The trailer extra data values</param>
|
|
179
|
+
<returns> The calculated ion time</returns>
|
|
180
|
+
</member>
|
|
181
|
+
<member name="M:ThermoFisher.CommonCore.MassPrecisionEstimator.PrecisionEstimate.GetMassPrecisionEstimate(ThermoFisher.CommonCore.Data.Business.Scan,ThermoFisher.CommonCore.Data.FilterEnums.MassAnalyzerType,System.Double,System.Double)">
|
|
182
|
+
<summary>
|
|
183
|
+
Gets mass precision estimate and stores them in a class property list of classes
|
|
184
|
+
This method will throw an Exception or ArgumentException if a problem occurs
|
|
185
|
+
during processing.
|
|
186
|
+
</summary>
|
|
187
|
+
<param name="scan">
|
|
188
|
+
The scan to process
|
|
189
|
+
</param>
|
|
190
|
+
<param name="analyzerType">
|
|
191
|
+
The analyzer type for the scan
|
|
192
|
+
</param>
|
|
193
|
+
<param name="ionTime">
|
|
194
|
+
The ion time for the scan
|
|
195
|
+
</param>
|
|
196
|
+
<param name="resolution">
|
|
197
|
+
The resolution for the scan
|
|
198
|
+
</param>
|
|
199
|
+
<returns>
|
|
200
|
+
Returns the list of Mass Precision Estimation results
|
|
201
|
+
</returns>
|
|
202
|
+
</member>
|
|
203
|
+
<member name="M:ThermoFisher.CommonCore.MassPrecisionEstimator.PrecisionEstimate.GetMassPrecisionEstimate">
|
|
204
|
+
<summary>
|
|
205
|
+
Gets mass precision estimate and stores them in a class property list of classes
|
|
206
|
+
This method will throw an Exception or ArgumentException if a problem occurs
|
|
207
|
+
during processing.
|
|
208
|
+
</summary>
|
|
209
|
+
<returns>
|
|
210
|
+
Returns the list of Mass Precision Estimation results
|
|
211
|
+
</returns>
|
|
212
|
+
</member>
|
|
213
|
+
<member name="M:ThermoFisher.CommonCore.MassPrecisionEstimator.PrecisionEstimate.PopulateScanData(ThermoFisher.CommonCore.Data.Business.Scan,ThermoFisher.CommonCore.Data.FilterEnums.MassAnalyzerType)">
|
|
214
|
+
<summary>
|
|
215
|
+
Populate the mass precision estimator data list from raw or label data
|
|
216
|
+
as appropriate for the scan data.
|
|
217
|
+
</summary>
|
|
218
|
+
<param name="scan">The scan</param>
|
|
219
|
+
<param name="analyzerType"> The analyzer type </param>
|
|
220
|
+
<returns>Returns true or false based upon if the scan could be filled in</returns>
|
|
221
|
+
</member>
|
|
222
|
+
<member name="M:ThermoFisher.CommonCore.MassPrecisionEstimator.PrecisionEstimate.CalculateMassPrecisionEstimateFromFormula">
|
|
223
|
+
<summary>
|
|
224
|
+
Calculate the MPE for the scan from formula.
|
|
225
|
+
</summary>
|
|
226
|
+
</member>
|
|
227
|
+
<member name="M:ThermoFisher.CommonCore.MassPrecisionEstimator.PrecisionEstimate.CompareMassAccuracyToTables(ThermoFisher.CommonCore.Data.FilterEnums.MassAnalyzerType,System.String)">
|
|
228
|
+
<summary>
|
|
229
|
+
Compare the calculated MPE to tables of information from Alexander and Jae
|
|
230
|
+
</summary>
|
|
231
|
+
<param name="analyzerType"> the analyzer type. </param>
|
|
232
|
+
<param name="scanFilter"> the scan filter. </param>
|
|
233
|
+
</member>
|
|
234
|
+
<member name="M:ThermoFisher.CommonCore.MassPrecisionEstimator.PrecisionEstimate.GetScanResolution">
|
|
235
|
+
<summary>
|
|
236
|
+
Gets the scan resolution from the file header
|
|
237
|
+
</summary>
|
|
238
|
+
<returns>The resolution from the run header.</returns>
|
|
239
|
+
</member>
|
|
240
|
+
</members>
|
|
241
|
+
</doc>
|
|
Binary file
|