class Bio::FlatFileIndex::Flat_1::SecondaryNameSpace
secondary name space
Internal use only.
Public Instance Methods
filename()
click to toggle source
# File lib/bio/io/flatfile/index.rb 1040 def filename 1041 File.join(dbname, "id_#{name}.index") 1042 end
mapping(filename)
click to toggle source
# File lib/bio/io/flatfile/index.rb 1037 def mapping(filename) 1038 FlatMappingFile.new(filename) 1039 end
search(key)
click to toggle source
Calls superclass method
Bio::FlatFileIndex::Template::NameSpace#search
# File lib/bio/io/flatfile/index.rb 1043 def search(key) 1044 r = super(key) 1045 file.close 1046 r.flatten! 1047 r 1048 end