class Mspire::Lipid::Search::HitGroup

A query that matched multiple items. Each search returns a hit group which consists of the best hits for that experimental m/z. When queried for values like delta or ppm, it will delegate to the first hit. So, in many ways it can be used as a container for hits, but it puts its best face forward.

Public Instance Methods

best_hit() click to toggle source
# File lib/mspire/lipid/search/hit.rb, line 74
def best_hit() first end
decoy_qvalue() click to toggle source
# File lib/mspire/lipid/search/hit.rb, line 72
def decoy_qvalue() ; first.decoy_qvalue end
delta() click to toggle source

should implement with delegator obviously… should allow setting ???

# File lib/mspire/lipid/search/hit.rb, line 65
def delta() first.delta end
observed_mz() click to toggle source
# File lib/mspire/lipid/search/hit.rb, line 69
def observed_mz() first.observed_mz end
ppm() click to toggle source
# File lib/mspire/lipid/search/hit.rb, line 66
def ppm() first.ppm end
pvalue() click to toggle source
# File lib/mspire/lipid/search/hit.rb, line 70
def pvalue() ; first.pvalue end
query_group() click to toggle source
# File lib/mspire/lipid/search/hit.rb, line 68
def query_group() first.query_group end
qvalue() click to toggle source
# File lib/mspire/lipid/search/hit.rb, line 71
def qvalue() ; first.qvalue end
theoretical_mz() click to toggle source
# File lib/mspire/lipid/search/hit.rb, line 67
def theoretical_mz() first.theoretical_mz end