Skip to main content

Messages

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

Messages - metaphase

2
Other / Re: Binning software
I read that you can import NetCDF or mzXML file formats...do the txt files qualify? How would I go about importing all of the data into one data frame?

I tried this script:

list.files()
filenames <- list.files()
filenames
negmet <- data.frame(do.call("rbind",lapply(filenames,read.delim,header=FALSE)))
viewData(negmet)

But it just compiles all of samples into 2 columns so it isn't really useful.
Sorry for asking such basic questions, I have tried to figure this out on my own for several days and just can't find a good solution.
3
Other / Binning software
Hello to everyone!

What software/R package or script are you using to bin (bucket) data from LC-MS?

Currently I am using an in-house built software that bins multiple txt files (different samples) into one txt file that I can do statistical analyses on. It works great when binning the m/z values to 1 Da, but when I try to bin it to 0.1 Da, it takes ages to do that.

Is there any good software that can do the same thing but faster?

Thanks in advance!