Method: Bio::FlatFileIndex::DataBank#bdb_open

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

#bdb_open(*bdbarg) ⇒ Object



1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
# File 'lib/bio/io/flatfile/index.rb', line 1204

def bdb_open(*bdbarg)
  if @bdb then
    @config.close
    @config.open(*bdbarg)
    @bdb_fileids.close
    @bdb_fileids.open(*bdbarg)
    true
  else
    nil
  end
end