Method: Bio::FlatFileIndex::DataBank#to_s

Defined in:
lib/bio/io/flatfile/index.rb

#to_sObject



1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
# File 'lib/bio/io/flatfile/index.rb', line 1187

def to_s
  a = ""
  a << "index\t#{@index_type}\n"

  unless @bdb then
    a << "format\t#{@format}\n"
    @fileids.each_with_index do |x, i|
      a << "#{x.to_s(i)}\n"
    end
    a << "primary_namespace\t#{@primary.name}\n"
    a << "secondary_namespaces\t"
    a << @secondary.names.join("\t")
    a << "\n"
  end
  a
end