You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I started an initial attempt to get rid of these DYNAMIC_EXCLUSION_MZ_TOL and DYNAMIC_EXCLUSION_RT_TOL parameters in the TopN controller. See this commit. That was the easy part.
Then I realised DYNAMIC_EXCLUSION_RT_TOL is actually used inside the simulated mass spec. It is stored to the self.current_DEW property of the mass spec.
next_DEW = next_scan_param.get(ScanParameters.DYNAMIC_EXCLUSION_RT_TOL)
...
if next_DEW is not None:
self.current_DEW = next_DEW
They're actually used for Top-N dynamic exclusion window, so should be removed from scan_params (when making ms2 scans)
https://github.com/sdrogers/vimms/blob/master/vimms/Controller/base.py#L72
The text was updated successfully, but these errors were encountered: