Sha256: 334bfdb43a6bad8b972dd81e579a40f6af0fd53a7898d80aa558a2f4b4771a0e
Contents?: true
Size: 1.07 KB
Versions: 2
Compression:
Stored size: 1.07 KB
Contents
module BioLocus module Store def Store.run(options) invert_match = options[:invert_match] store = DbMapper.factory(options) count = count_new = count_dup = 0 STDIN.each_line do | line | Keys::each_key(line,options) do | key | has_match = lambda { if invert_match not store[key] else store[key] end } if not has_match.call count_new += 1 store[key] = true else count_dup += 1 if options[:debug] $stderr.print "Store hit: <#{key}>\n" end end count += 1 $stderr.print '.' if (count % 1_000_000) == 0 if not options[:quiet] next end end store.close $stderr.print "Stored #{count_new} positions out of #{count} in #{options[:db]} (#{count_dup} duplicate hits)\n" if !options[:quiet] end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
bio-locus-0.0.7 | lib/bio-locus/store.rb |
bio-locus-0.0.6 | lib/bio-locus/store.rb |