public IQuantitationChannel Add(IQuantitationChannel channel)
        {
            _channels.Add(channel.ReporterMass, channel);
            MonoisotopicMass += channel.MonoisotopicMass;

            return(channel);
        }
 public bool Remove(IQuantitationChannel channel)
 {
     if (_channels.Remove(channel.MonoisotopicMass))
     {
         MonoisotopicMass -= channel.MonoisotopicMass;
         return(true);
     }
     return(false);
 }
Esempio n. 3
0
 public bool Remove(IQuantitationChannel channel)
 {
     if (_channels.Remove(channel.MonoisotopicMass))
     {
         MonoisotopicMass -= channel.MonoisotopicMass;
         return true;
     }
     return false;
 }
Esempio n. 4
0
        public IQuantitationChannel Add(IQuantitationChannel channel)
        {
            _channels.Add(channel.ReporterMass, channel);
            MonoisotopicMass += channel.MonoisotopicMass;

            return channel;
        }