class Bio::FlatFileIndex::BDB_1::SecondaryNameSpace
Public Instance Methods
filename()
click to toggle source
# File lib/bio/io/flatfile/bdb.rb 234 def filename 235 File.join(dbname, "id_#{name}") 236 end
mapping(filename)
click to toggle source
# File lib/bio/io/flatfile/bdb.rb 231 def mapping(filename) 232 BDBMappingFile.new(filename) 233 end
search(key)
click to toggle source
Calls superclass method
# File lib/bio/io/flatfile/bdb.rb 238 def search(key) 239 r = super(key) 240 file.close 241 r 242 end