Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Updated to timsrust 0.4.0
Major differences:
calibrate
only is sensible for dda data. Works best if there are many precursors (i.e. long gradient).calibration tolerance
roughly defines the maximum possible mz difference before/after calibration.smoothing_window
defines how adjacent tof indices are smoother.centroiding_window
sets the minimum tof difference between two detections, i.e. relates to TOF resolution in combination withsmoothing_window
.dia_strategy
allows to control how dia windows or even frames are translated to DDA-like spectra that are searchable with Sage. OptionsQuadrupole
vs.Window
: use the whole frame or just that portion where the quadrupole is not changingNone
,Even(usize)
,UniformMobility((f64, f64))
,UniformScan((usize, usize)),
: The method to split up scans. Even splits its up in an equal partition, whereas the Uniform methods allow finegrained control how many scans are aggregated.There is room for improvement on how this is implemented on Sage, most is roughly copy-paste at the moment. Feel free to suggest an alternative/better way.