-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmass.js
More file actions
59 lines (59 loc) · 1.27 KB
/
mass.js
File metadata and controls
59 lines (59 loc) · 1.27 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
define(() => {
return {
monoisotopicMass: 300.123,
resolution: 100000,
groups1: '(H+).(H+)2.(H+)3.K+.Na+',
groups2: '',
groups3: '',
groups4: '',
groups5: '',
sequence: '',
sequence2: '',
mfPattern: 'Br2',
fragmentation: {
a: false,
b: false,
c: true,
x: false,
y: false,
z: true,
i: false,
ya: false,
yb: false,
minInternal: 1,
maxInternal: 999,
},
digestion: {
enzyme: undefined,
minMissed: undefined,
maxMissed: undefined,
minResidue: undefined,
maxResidue: undefined,
},
options: {
protonate: false,
protonationPH: 0,
minimalHeight: 0,
widthTop: 0.1,
widthBottom: 0.2,
widthFunction:
'// var widthBottom = 0.01 + mass / 8000;\r\n// var widthTop = widthBottom / 2;',
zone: {
low: -0.5,
high: 4.5,
},
mfRange: 'C0-100 H0-200 N0-10 O0-10 S0-5 F0-5 Cl0-5 Br0-5',
maxResults: 200,
bestOf: 0,
minSimilarity: 50,
minUnsaturation: -5,
maxUnsaturation: 50,
useUnsaturation: false,
integerUnsaturation: false,
massRange: 0.1,
decimalsPPM: 4,
decimalsMass: 4,
addExperimentalExtract: true,
},
};
});