Class: Exe_CompareDeterminations

Inherits:
CommandLine_Exe show all
Defined in:
lib/exe_comparedeterminations.rb

Instance Attribute Summary

Attributes inherited from CommandLine_Exe

#exe_path

Instance Method Summary collapse

Methods inherited from CommandLine_Exe

#executable_path

Methods included from Utilities

which

Constructor Details

#initialize(filepath1, filepath2, *params) ⇒ Exe_CompareDeterminations

Returns a new instance of Exe_CompareDeterminations.



5
6
7
8
9
10
11
12
# File 'lib/exe_comparedeterminations.rb', line 5

def initialize(filepath1,filepath2,*params)

  @filepath1 = filepath1
  @filepath2 = filepath2

  super('CompareDeterminations.py',*params)

end

Instance Method Details

#generate_png(filepath) ⇒ Object



14
15
16
17
# File 'lib/exe_comparedeterminations.rb', line 14

def generate_png(filepath)
  ret_code, rundetails = run(cmd_to_print(filepath))
  return ret_code, rundetails
end

#viewObject



19
20
21
22
# File 'lib/exe_comparedeterminations.rb', line 19

def view
  ret_code, rundetails = run(cmd_to_view)
  return ret_code, rundetails
end