class Bio::FlatFileIndex::BDB_1::PrimaryNameSpace
Public Instance Methods
filename()
click to toggle source
# File lib/bio/io/flatfile/bdb.rb 217 def filename 218 File.join(dbname, "key_#{name}") 219 end
mapping(filename)
click to toggle source
# File lib/bio/io/flatfile/bdb.rb 214 def mapping(filename) 215 BDBMappingFile.new(filename) 216 end
search(key)
click to toggle source
Calls superclass method
# File lib/bio/io/flatfile/bdb.rb 220 def search(key) 221 r = super(key) 222 unless r.empty? then 223 [ r ] 224 else 225 r 226 end 227 end