-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
two CV values? #57
Comments
Hi Anne!
Are you just interested in the parse/quant output? Or do you use the QC
part of it as well? We could probably add CV to the parse/quant output and
you could use a script to split the file based on that. It might be easy
enough to output multiple files straight from RawTools as well, but it has
been a while since I looked at the text writing parts of it so I don't
really know off the top of my head.
Best wishes,
Kevin
…On Tue, Feb 2, 2021, 4:50 PM aulke, ***@***.***> wrote:
Hi Chris,
We are running our MS with FAIMS and multiple CV values and would like to
analyse the data with MaxQuant. However, MaxQuant currently can't analyse
these files.
Kevin had written a "RawSplit" tool for us to be able to analyse .raw
files with MaxQuant. The tool split the .raw file into two files, depending
on CV used, similar to the tool from the Coon lab (FAIMS-MzXML-Generator).
Do you have a RawSplit like functionality in RawTools? We rely heavily on
RawTools and MaxQuant for our quality control pipeline, but it is quite
limiting not being able to analyse multiple CV values.
We are having issues with the tool from the Coon lab not working.
Thanks for your help
Anne
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#57>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AD2PTUHKJQLNMHJH6JAKRSTS5BXRLANCNFSM4W7VUO5A>
.
|
Hi Anne, I have actually been thinking about this quite a bit as we are now using FAIMS files quite often and I know RawTools has some issues with multi-CV raw files. I have been thinking about how best to implement this. The biggest problem I think RawTools has with it is with building precursor ion profiles because MS1 scans are no longer sequential. I would echo Kevin's questions related to how you envision to use RawTools in your pipeline? What functionality is RawSplit not giving you? Regards, |
As I recall, RawSplit made MGF files out of raw files that had both
positive and negative ionization polarity. But that was a while ago, so
perhaps it was CV.
…On Tue, Feb 2, 2021, 9:33 PM Christopher Hughes, ***@***.***> wrote:
Hi Anne,
I have actually been thinking about this quite a bit as we are now using
FAIMS files quite often and I know RawTools has some issues with multi-CV
raw files. I have been thinking about how best to implement this. The
biggest problem I think RawTools has with it is with building precursor ion
profiles because MS1 scans are no longer sequential.
I would echo Kevin's questions related to how you envision to use RawTools
in your pipeline? What functionality is RawSplit not giving you?
Regards,
Chris
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#57 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AD2PTUAR4EY2GL4FIKKSUH3S5CYY3ANCNFSM4W7VUO5A>
.
|
Hi Kevin, Hi Chris, |
Okay, so I think there are two things:
1 might be tricky. I'm really only working on RawTools in my free time right now, and there isn't much of it, so it would probably take me a while to get anything ready. I've been working on reporter ion impurity corrections for someone and its taken me like 3 months to do anything at all... If Chris has time for it, though, we might go faster. Possibly the simplest thing would be to turn off the precursor peak profiling if that is all that is tripping it up. I don't recall if that is an option or not. 2 would be pretty simple, I think. We would just have to modify the RawSplit program to do it. Might be nice to put it into RawTools at the same time as it would be a useful feature. Anne, could you upload the RawSplit program? I don't think I have the original code anymore, but I can get it out of the compiled files. |
The second option sounds easier to me, but I am no programmer... Thank you for your help! |
Yes, it seems that splitting the raw file into independent MGF's is best for now. Although in the future it would be nice to have an option to split for the RawTools calculations and then recombine into a single file, or to keep them separate. But can you use MGF as input for MaxQuant? I don't think so...but I could be wrong. So are you wanting us to split by CV into new raw files (or mzML)? |
You are correct, MGF does not work with MaxQuant, I had that somewhere in the back of my head, too. |
I guess I am just confused exactly what your pipeline is here. RawTools + MaxQuant separately on the raw file? So, you would ideally want RawTools > split raw files by CV to mzML output > MaxQuant? Perhaps this is a good time to code an mzML writer for RawTools |
I believe the group at PNNL has a .NET tool for working with mzML files. If
I recall correctly, it reads fine but they said there might be an issue
with writing? Anyway, that could be a good place to start.
Kevin
…On Wed, Feb 3, 2021, 12:48 PM Christopher Hughes, ***@***.***> wrote:
I guess I am just confused exactly what your pipeline is here. RawTools +
MaxQuant separately on the raw file? So, you would ideally want RawTools >
split raw files by CV to mzML output > MaxQuant?
Perhaps this is a good time to code an mzML writer for RawTools
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#57 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AD2PTUFBPT6DQ422OBTS7O3S5GD6NANCNFSM4W7VUO5A>
.
|
Compomics group does as well that seems to have a good writer, rawfileparser To add - I can't find any indication that it works or doesn't work with FAIMS data though. |
Yes, this is pretty much what we do. A quick and easy way to check the quality of our data. We have the advantage that the MS files we generate are pretty homogenous - similar to your cancer TMT files. |
It looks like FAIMS data is still a unicorn considering how difficult it is to process them. I am nevertheless hoping that Mann / Cox will modify MaxQuant to utilize multiple-CV files. |
I can work on this, but probably not until a bit later this month. The easiest thing is to just code a file that spits out MGF's of the individual CV's like Kevin mentioned above. But, we should work towards having an mzML output and to have RawTools on the whole work with these data. I have a lot of data I can use for testing. |
Sounds good. I'm going to look through the ThermoRawFileParser code base.
Since it already converts MGF files to mzML files, possibly we can make a
version that splits it into multiple mzML files based on CV, polarity or
whatever.
…On Wed, Feb 3, 2021 at 1:50 PM Christopher Hughes ***@***.***> wrote:
I can work on this, but probably not until a bit later this month. The
easiest thing is to just code a file that spits out MGF's of the individual
CV's like Kevin mentioned above. But, we should work towards having an mzML
output and to have RawTools on the whole work with these data. I have a lot
of data I can use for testing.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#57 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AD2PTUDRRLHVPAU7AIZXK4LS5GJ5HANCNFSM4W7VUO5A>
.
|
I mean it converts RAW files into mzML files.... not MGF into mzML |
Thanks guys, looking forward to it. |
We have a converter in the lab that converts .raw into mzXML - also works for multiple-CV files. Still would need to sort the mxXML into two CV files, though. |
This is an interesting discussion. I wonder if RawTools can use mzML files as input to enable processing from other vendors than Thermo. I am preparing a manuscript about our pipeline (same lab as @aulke) and currently, the pipeline is limited to Thermo Orbitrap, because we use RawTools. But if RawTools would be able to process mzML that come from other vendors, we could drop this restriction. |
That is something I have thought about for a while. I agree it would be nice to allow for mzML files. In principle, writing something that loads mzML files into RawTools' internal data structure wouldn't be too difficult, but I'm sure we would discover things that don't translate well for one reason or another. I have very limited time to work on RawTools at the moment, but it's possible I could get permission at work to dedicate a little time to it if you can include some extra names and institutions on the author list. That would also give me time to work on some other issues that have been raised over the past year that I was never able to get to. What is your timeline for publication? |
Ah, well, never mind about that. :) But still, what is your timeline? I will see if I can do some work on this in my free time, but it's a toss-up if I will get it done in time for you. |
I don't know if it is worth making something that reads an mzML format versus reading the actual raw files themselves. It should be possible for vendors like Bruker and Sciex. I guess one advantage of having it read mzML would be that you could maintain complete functionality on Linux systems that I am not sure would be possible if you worked directly with other vendor formats. But, I also think this is a somewhat large undertaking adding this functionality. I will need to think about it more. |
I think the advantage would be to have common entry point for all the formats, however, I agree reading the RAW files from all the different vendors directly would be even better. I thought right now only Thermo RAW files are compatible. |
Hi Chris,
We are running our MS with FAIMS and multiple CV values and would like to analyse the data with MaxQuant. However, MaxQuant currently can't analyse these files.
Kevin had written a "RawSplit" tool for us to be able to analyse .raw files with MaxQuant. The tool split the .raw file into two files, depending on CV used, similar to the tool from the Coon lab (FAIMS-MzXML-Generator).
Do you have a RawSplit like functionality in RawTools? We rely heavily on RawTools and MaxQuant for our quality control pipeline, but it is quite limiting not being able to analyse multiple CV values.
We are having issues with the tool from the Coon lab not working.
Thanks for your help
Anne
The text was updated successfully, but these errors were encountered: