コード例 #1
0
 public bool Equals(PeptideChromInfo other)
 {
     if (ReferenceEquals(null, other))
     {
         return(false);
     }
     if (ReferenceEquals(this, other))
     {
         return(true);
     }
     return(base.Equals(other) &&
            other.PeakCountRatio == PeakCountRatio &&
            other.RetentionTime.Equals(RetentionTime) &&
            ArrayUtil.EqualsDeep(other.LabelRatios, LabelRatios));
 }
コード例 #2
0
ファイル: ChromInfoData.cs プロジェクト: laeubisoft/pwiz
 private PeptideChromInfoData(MeasuredResults measuredResults, int replicateIndex, ChromFileInfo chromFileInfo, PeptideChromInfo peptideChromInfo, PeptideDocNode peptideDocNode)
     : base(measuredResults, replicateIndex, chromFileInfo, peptideChromInfo, peptideDocNode, null)
 {
 }