class Bio::MAF::MaxSizeFilter
Public Class Methods
new(n, idx)
click to toggle source
# File lib/bio/maf/index.rb, line 908 def initialize(n, idx) @n = n end
Public Instance Methods
match(entry)
click to toggle source
# File lib/bio/maf/index.rb, line 911 def match(entry) extract_text_size(entry) <= @n end