class Bio::FlatFileIndex::BDB_1::PrimaryNameSpace
Public Instance Methods
Source
# File lib/bio/io/flatfile/bdb.rb 217 def filename 218 File.join(dbname, "key_#{name}") 219 end
Source
# File lib/bio/io/flatfile/bdb.rb 214 def mapping(filename) 215 BDBMappingFile.new(filename) 216 end
Source
# 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
Calls superclass method