Hi everyone
Probably, my question fits better in any global R blog, but I am not sure. Anyway, this is que question:
I have applied synergise function to a set of MSe/HDMSe files and then saved the result as .rda file:
syn <- synergise(.....)
save(syn, file = ......)
Now, I would like to load again that data to follow with the synapter pipeline. To this, I have tried with:
syn <- load(filename)
and when I started to convert it into MSnbase object, (x <- as(syn, "MSnSet")), I get the following message:
Error in as(syn, "MSnSet") :
no method or default for coercing “character” to “MSnSet”
Applying class function to syn, class(syn), returns [1] "character"
How can I save my data after synergise function and then load it again?
Thanks in advance
Samuel
Thanks again Laurent. I have obtained some data from synapter managing only a few number of MSe/HDMSe files (8). Now, I going to perform the same analysis with a pretty large number of files (40). First attemps in my laptop creating the master file from HDMSe files, crashed R; next ones, will be attemped in a workstation.
Regards