class MS::Lipid::Search::Query

Attributes

index[RW]

the index of search spectrum that the m/z was derived from this allows for the creation of an isotope envelope starting from a particular m/z value.

mz[RW]

the experimentally observed lowest mz

Public Class Methods

new(mz, index) click to toggle source
# File lib/ms/lipid/search/query.rb, line 17
def initialize(mz, index)
  @mz, @index = mz, index
end