public O16O18ParentIqWorkflow(Run run, TargetedWorkflowParameters parameters)
     : base(run, parameters)
 {
     PeakFitter      = new PeakLeastSquaresFitter();
     _mspeakDetector = new DeconToolsPeakDetectorV2(parameters.MSPeakDetectorPeakBR,
                                                    parameters.MSPeakDetectorSigNoise,
                                                    DeconTools.Backend.Globals.PeakFitType.QUADRATIC,
                                                    run.IsDataThresholded);
 }
Exemple #2
0
        public ChromPeakDetectorOld(double peakBackgroundRatio, double sigNoise)
        {
            this.PeakBackgroundRatio = peakBackgroundRatio;
            this.SigNoise            = sigNoise;

            _peakDetectorV2 = new DeconToolsPeakDetectorV2();
            _peakDetectorV2.PeakToBackgroundRatio  = peakBackgroundRatio;
            _peakDetectorV2.SignalToNoiseThreshold = sigNoise;
            _peakDetectorV2.PeakFitType            = Globals.PeakFitType.QUADRATIC;
            _peakDetectorV2.IsDataThresholded      = false;
        }
Exemple #3
0
        public ChromPeakDetectorOld(double peakBackgroundRatio, double sigNoise)
        {
            PeakBackgroundRatio = peakBackgroundRatio;
            SigNoise            = sigNoise;

            _peakDetectorV2 = new DeconToolsPeakDetectorV2
            {
                PeakToBackgroundRatio  = peakBackgroundRatio,
                SignalToNoiseThreshold = sigNoise,
                PeakFitType            = Globals.PeakFitType.QUADRATIC,
                IsDataThresholded      = false
            };
        }