class Mspire::Lipid::Search::DBIsobarGroup

this is a group of Lipid::Ion objects that all have the same (or possibly similar) m/z

Attributes

mz[RW]

it is implemented like this so that the isobar group could have individuals in it with slightly different m/z values and this coudl still be used as a container. In my current implementation they have exactly the same m/z

Public Class Methods

new( ar=[], mz=nil) click to toggle source
# File lib/mspire/lipid/search/db_isobar_group.rb, line 13
def initialize( ar=[], mz=nil)
  @mz = mz if mz
  self.replace(ar)
end