You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
"""MSParameters class is used to store the parameters used for the processing of the mass spectrum
7
30
8
31
Each attibute is a class that contains the parameters for the processing of the mass spectrum, see the corems.encapsulation.factory.processingSetting module for more details.
9
32
33
+
Parameters
34
+
----------
35
+
use_defaults: bool, optional
36
+
if True, the class will be instantiated with the default values, otherwise the current values will be used. Default is False.
37
+
10
38
Attributes
11
39
-----------
12
40
molecular_search: MolecularFormulaSearchSettings
@@ -19,6 +47,11 @@ class MSParameters:
19
47
MassSpecPeakSetting object
20
48
data_input: DataInputSetting
21
49
DataInputSetting object
50
+
51
+
Notes
52
+
-----
53
+
One can use the use_defaults parameter to reset the parameters to the default values.
54
+
Alternatively, to use the current values - modify the class's contents before instantiating the class.
"""GCMSParameters class is used to store the parameters used for the processing of the gas chromatograph mass spectrum
32
79
33
80
Each attibute is a class that contains the parameters for the processing of the data, see the corems.encapsulation.factory.processingSetting module for more details.
34
81
82
+
Parameters
83
+
----------
84
+
use_defaults: bool, optional
85
+
if True, the class will be instantiated with the default values, otherwise the current values will be used. Default is False.
86
+
35
87
Attributes
36
88
-----------
37
89
molecular_search: MolecularFormulaSearchSettings
38
90
MolecularFormulaSearchSettings object
39
91
gc_ms: GasChromatographSetting
40
92
GasChromatographSetting object
93
+
94
+
Notes
95
+
-----
96
+
One can use the use_defaults parameter to reset the parameters to the default values.
97
+
Alternatively, to use the current values - modify the class's contents before instantiating the class.
"""LCMSParameters class is used to store the parameters used for the processing of the liquid chromatograph mass spectrum
48
113
49
114
Each attibute is a class that contains the parameters for the processing of the data, see the corems.encapsulation.factory.processingSetting module for more details.
50
115
116
+
Parameters
117
+
----------
118
+
use_defaults: bool, optional
119
+
if True, the class will be instantiated with the default values, otherwise the current values will be used. Default is False.
0 commit comments