class MS::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/ms/lipid/search/hit.rb, line 70 def best_hit() first end
delta()
click to toggle source
should implement with delegator obviously… should allow setting ???
# File lib/ms/lipid/search/hit.rb, line 62 def delta() first.delta end
observed_mz()
click to toggle source
# File lib/ms/lipid/search/hit.rb, line 66 def observed_mz() first.observed_mz end
ppm()
click to toggle source
# File lib/ms/lipid/search/hit.rb, line 63 def ppm() first.ppm end
pvalue()
click to toggle source
# File lib/ms/lipid/search/hit.rb, line 67 def pvalue() first.pvalue end
query_group()
click to toggle source
# File lib/ms/lipid/search/hit.rb, line 65 def query_group() first.query_group end
qvalue()
click to toggle source
# File lib/ms/lipid/search/hit.rb, line 68 def qvalue() first.pvalue end
theoretical_mz()
click to toggle source
# File lib/ms/lipid/search/hit.rb, line 64 def theoretical_mz() first.theoretical_mz end