module Bio::FlatFileIndex::BDBdefault
Public Class Methods
flag_append()
click to toggle source
# File lib/bio/io/flatfile/bdb.rb 37 def flag_append 38 'r+' 39 end
flag_read()
click to toggle source
# File lib/bio/io/flatfile/bdb.rb 27 def flag_read 28 BDB::RDONLY 29 end
flag_write()
click to toggle source
# File lib/bio/io/flatfile/bdb.rb 32 def flag_write 33 (BDB::CREATE | BDB::TRUNCATE) 34 end
permission()
click to toggle source
# File lib/bio/io/flatfile/bdb.rb 22 def permission 23 (0666 & (0777 ^ File.umask)) 24 end