Skip to main content

Topics

This section allows you to view all Topics made by this member. Note that you can only see Topics made in areas you currently have access to.

Topics - allend

1
XCMS / How to access data returned by getEIC?
I am a dill and a dodo with failing Google fu,

I can open a data file in R with
Code: [Select]
filename <- "#4606.mzXML"
xraw <- xcmsRaw(filename)
and get an extracted ion chromatogram with
Code: [Select]
mzr <- cbind(179.9,180.3)
rtr <- cbind(397,1560.3)
eicm <- getEIC(xraw, mzrange = mzr, rtrange = rtr)
but for further processing I would now like to access the values for 'rt' and 'intensity' as displayed by
Code: [Select]
> attr(eicm,"eic")
$xcmsRaw
$xcmsRaw[[1]]
              rt  intensity
  [1,]  397.022      1425
  [2,]  397.241      13700
...
[5510,] 1560.069          0
[5511,] 1560.288      36000
Could somebody please help with the required voodoo?

TIA