Example #1
0
 public AreaCVGraphSettings(GraphTypeSummary graphType, AreaCVNormalizationMethod normalizationMethod, int ratioIndex, string group, string annotation, PointsTypePeakArea pointsType, double qValueCutoff,
                            double cvCutoff, int minimumDetections, double binwidth)
 {
     GraphType           = graphType;
     NormalizationMethod = normalizationMethod;
     RatioIndex          = ratioIndex;
     Group             = group;
     Annotation        = annotation;
     PointsType        = pointsType;
     QValueCutoff      = qValueCutoff;
     CVCutoff          = cvCutoff;
     MinimumDetections = minimumDetections;
     BinWidth          = binwidth;
 }
Example #2
0
 public AreaCVGraphSettings(GraphTypeSummary graphType, NormalizeOption normalizeOption, ReplicateValue group, object annotation, PointsTypePeakArea pointsType, double qValueCutoff,
                            double cvCutoff, int minimumDetections, double binwidth, AreaCVMsLevel msLevel, AreaCVTransitions transitions, int countTransitions)
 {
     GraphType         = graphType;
     NormalizeOption   = normalizeOption;
     Group             = group;
     Annotation        = annotation;
     PointsType        = pointsType;
     QValueCutoff      = qValueCutoff;
     CVCutoff          = cvCutoff;
     MinimumDetections = minimumDetections;
     BinWidth          = binwidth;
     MsLevel           = msLevel;
     Transitions       = transitions;
     CountTransitions  = countTransitions;
 }