Skip to main content
Topic: Very basic Question on mzML (Read 4650 times) previous topic - next topic

Very basic Question on mzML

Hi everyone,
a very basic question but I'd be really grateful if you could help me: I'm trying to load a set of mzML files saved in a single folder into XCMS. So far I tried doing this:
mzMLpath <- ("~/path")
mzMLfiles <- list.files(mzMLpath,recursive=TRUE,full.names=TRUE)

LCMS <-xcmsRaw (mzMLfiles)

what am I doing wrong? Do i need to read each mzML file separately?

Re: Very basic Question on mzML

Reply #1
XR <- xcmsSet(mzXMLfiles) # load files in path into a xcmSet object

Re: Very basic Question on mzML

Reply #2
Yep!

xcmsRaw - object for single file.
xcmsSet - objects for multiple files ie set of xcmsRaw objects

## not to confuse things but
xcmsEIC - object for holding EIC data for plotting

Have a read through the documentation and tutorial! Very helpful!
http://www.bioconductor.org/packages/re ... rocess.pdf
~~
H. Paul Benton
Scripps Research Institute
If you have an error with XCMS Online please send me the JOBID and submit an error via the XCMS Online contact page

Re: Very basic Question on mzML

Reply #3
thanks, it's a lot easier after reading the manual  :oops: