Пример #1
0
 public TransitionExp(ExplicitMods mods, int precursorCharge, IsotopeLabelType labelType, int precursorMassShift)
 {
     Precursor = new PrecursorExp(mods, precursorCharge, labelType, precursorMassShift);
 }
Пример #2
0
 public bool Equals(PrecursorExp other)
 {
     if (ReferenceEquals(null, other)) return false;
     if (ReferenceEquals(this, other)) return true;
     return Equals(other.VariableMods, VariableMods) &&
         other.PrecursorCharge == PrecursorCharge &&
         Equals(other.LabelType, LabelType);
 }