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
Copy file name to clipboardExpand all lines: README.md
+23Lines changed: 23 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,29 @@
2
2
3
3
Global Spectra Deconvolution + Peak optimizer
4
4
5
+
##Paramters
6
+
7
+
#### minMaxRatio=0.00025 (0-1)
8
+
Threshold to determine if a given peak should be considered as a noise, bases on its relative height compared to the higest peak.
9
+
10
+
#### broadRatio=0.00 (0-1)
11
+
If broadRatio is higher than 0, then all the peaks which second derivative smaller than broadRatio*maxAbsSecondDerivative will be marked with the soft mask equal to true.
12
+
13
+
#### noiseLevel=0 (-inf, inf)
14
+
Noise threshold in spectrum units
15
+
16
+
#### maxCriteria=true [true||false]
17
+
Peaks are local maximum(true) or minimum(false)
18
+
19
+
#### smoothY=true [true||false]
20
+
Select the peak intensities from a smoothed version of the independent variables?
21
+
22
+
#### realTopDetection=false [true||false]
23
+
Use a cuadratic optmizations with the peak and its 3 closest neighbors to determine the true x,y values of the peak?
24
+
25
+
#### sgOptions={windowSize: 5, polynomial: 3}
26
+
Savitzky-Golay paramters. windowSize should be odd; polynomial is the degree of the polinomial to use in the approximations. > 2
0 commit comments