Sha256: 059d4a36e0c28c37a5d35e629c7902924bd24d8f592fbc42027ebd24a03d2c1c

Contents?: true

Size: 881 Bytes

Versions: 23

Compression:

Stored size: 881 Bytes

Contents

#!/usr/bin/env ruby
require 'stringio'
# require 'test/unit'
require 'seqtrimnext'
require 'json'
require 'gnuplot'

# ROOT_PATH=File.dirname(File.dirname(__FILE__))

# $: << File.expand_path(File.join(ROOT_PATH,'test'))
# $: << File.expand_path(File.join(ROOT_PATH,'classes'))
# $: << File.expand_path(File.join(ROOT_PATH,'plugins'))
# $: << File.expand_path(File.join(ROOT_PATH,'utils'))

if ARGV.empty?
puts "Usage: #{$0} stats.json initial_stats.json"
exit
end

d=Dir.glob(File.expand_path(File.join(ROOT_PATH,'plugins','*.rb')))

# puts d.entries
# puts "="*20

require 'plugin'

# require 'params'

d.entries.each do |plugin|
	require  plugin
  # puts "Requiring #{plugin}"
end

require 'graph_stats'

#load stats

r=File.read(ARGV[0])
stats=JSON::parse(r)


r2=File.read(ARGV[1])
init_stats=JSON::parse(r2)

gs=GraphStats.new(stats,init_stats)

puts "Graphs generated"
    

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
seqtrimnext-2.0.68 bin/create_graphs.rb
seqtrimnext-2.0.66 bin/create_graphs.rb
seqtrimnext-2.0.62 bin/create_graphs.rb
seqtrimnext-2.0.61 bin/create_graphs.rb
seqtrimnext-2.0.60 bin/create_graphs.rb
seqtrimnext-2.0.59 bin/create_graphs.rb
seqtrimnext-2.0.57 bin/create_graphs.rb
seqtrimnext-2.0.56 bin/create_graphs.rb
seqtrimnext-2.0.55 bin/create_graphs.rb
seqtrimnext-2.0.54 bin/create_graphs.rb
seqtrimnext-2.0.52 bin/create_graphs.rb
seqtrimnext-2.0.51 bin/create_graphs.rb
seqtrimnext-2.0.50 bin/create_graphs.rb
seqtrimnext-2.0.49 bin/create_graphs.rb
seqtrimnext-2.0.48 bin/create_graphs.rb
seqtrimnext-2.0.46 bin/create_graphs.rb
seqtrimnext-2.0.45 bin/create_graphs.rb
seqtrimnext-2.0.42 bin/create_graphs.rb
seqtrimnext-2.0.41 bin/create_graphs.rb
seqtrimnext-2.0.39 bin/create_graphs.rb