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
17
30
18
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.
19
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
+
20
38
Attributes
21
39
-----------
22
40
molecular_search: MolecularFormulaSearchSettings
@@ -29,6 +47,11 @@ class MSParameters:
29
47
MassSpecPeakSetting object
30
48
data_input: DataInputSetting
31
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.
32
55
"""
33
56
34
57
molecular_search=MolecularFormulaSearchSettings()
@@ -56,12 +79,22 @@ class GCMSParameters:
56
79
57
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.
58
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
+
59
87
Attributes
60
88
-----------
61
89
molecular_search: MolecularFormulaSearchSettings
62
90
MolecularFormulaSearchSettings object
63
91
gc_ms: GasChromatographSetting
64
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.
65
98
"""
66
99
67
100
molecular_search=CompoundSearchSettings()
@@ -80,6 +113,11 @@ class LCMSParameters:
80
113
81
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.
82
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