class Bio::MAF::AtLeastNSequencesFilter
Attributes
n[R]
Public Class Methods
new(n, idx)
click to toggle source
# File lib/bio/maf/index.rb, line 898 def initialize(n, idx) @n = n end
Public Instance Methods
match(entry)
click to toggle source
# File lib/bio/maf/index.rb, line 902 def match(entry) extract_n_sequences(entry) >= @n end