-
Notifications
You must be signed in to change notification settings - Fork 100
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
minWindowSize #2744
Comments
This often indicates the isolation scheme is not correct for what the demultiplexer works with. Can you share what your isolation windows are? |
They're the overlapping windows from the default DIA template in XCalibur; I've attached an Excel sheet with the specific values. |
I sorted by m/z and these windows are weird:
The 8mz windows are interleaved with the 4mz windows? |
That's the way it's set up in the template method in XCalibur. There's a full scan, then the windows from Rows 1-75, then another full scan, then the windows in Rows 76-227. I've tried several things to get around this over time. I'm not sure that the DIA windows are the part that is causing an issue with MSConvert. A method with the same windows will convert and give interpretable data if I replace the template method full MS scans with tSIM scans centered on 400-1000. Does that point to a known issue? |
Full MS1 scans shouldn't interact with the demultiplexing at all. This is almost certainly about there being two sets of windows |
Note you may be able to demultiplex the file if you calculate the isolation window midpoints for either the 4mz windows or the 8mz windows, and then feed those to an mzPrecursor filter (available on the command-line only) with a tight mzTol value. For the subset of windows above, for just the 4mz windows, do something like: |
Oops, nevermind. The 4mz windows don't actually overlap with each other, and the 8mz windows don't overlap with each other. So that won't work. |
I tried importing a new set of normal-looking windows into the default XCalibur method and will see whether those work. |
You were right. It was the odd windows in the default method. Converting proceeds without incident once I replace them. On another question, though, I've noticed that converting overlapping DIA windows with Overlap Only is quick, but converting with MSX is very slow (many hours per file). It will start out fine but then slow to a few spectra per second around 20% of the way through. Is this normal? |
I am attempting to convert DIA files from a Fusion Lumos to mzML with MSConvert 3.0.23208-1321c92. When I attempt to convert, I get the error:
"Error writing run 1: SpectrumToIndices() Number of demultiplexing windows changed. Minimum window size or window boundary tolerance may be set too low."
I have found several threads suggesting that the solution is to run on command line and add minWindowSize to the demultiplexing filter. I have tried this by editing the demultiplexing filter from:
--filter "demultiplex massError=10.0ppm removeNonOverlappingEdges=true"
to
--filter "demultiplex massError=10.0ppm removeNonOverlappingEdges=true minWindowSize=100"
When I do this, however, I get the same error regardless of what number I use as minWindowSize. Is there another solution for this error?
The text was updated successfully, but these errors were encountered: