-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathxcms_mik.R
More file actions
54 lines (44 loc) · 1.58 KB
/
Copy pathxcms_mik.R
File metadata and controls
54 lines (44 loc) · 1.58 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
library(xcms)
library(CAMERA)
xset <- xcmsSet(
method = "matchedFilter",
fwhm = 28,#7.5
snthresh = 3,
step = 1, # numeric(1) specifying the width of the bins/slices in m/z dimension
steps = 6, # numeric(1) defining the number of bins to be merged before filtration (i.e. the number of neighboring bins that will be joined to the slice in which filtration and peak detection will be performed).
sigma = 3.18498386274843,
max = 3,# 5
mzdiff = 1,
index = FALSE)
xset2 <- retcor(
xset,
method = "obiwarp",
plottype = "none",
distFunc = "cor_opt",
profStep = 1,
response = 1,
gapInit = 0,
gapExtend = 2.7,
factorDiag = 2,
factorGap = 1,
localAlignment = 0)
xset3 <- group(
xset2,
method = "density",
bw = 22,
mzwid = 1,
minfrac = 0.3,
minsamp = 1,
max = 50)
xset4 <- fillPeaks(xset3)
# The IPO script ends here
# Substitute the object names inside the ( ) accordingly.
an <- xsAnnotate(xset4)
#Creation of an xsAnnotate object
anF <- groupFWHM(an, perfwhm = 0.6)
#Perfwhm = parameter defines the window width, which is used for matching
anI <- findIsotopes(anF, mzabs=0.01)
#Mzabs = the allowed m/z error
anIC <- groupCorr(anI, cor_eic_th=0.75)
anFA <- findAdducts(anIC, polarity="negative") #change polarity accordingly
write.csv(getPeaklist(anIC), file='test.csv') # generates a table of features