Method: Bio::ClustalW#initialize

Defined in:
lib/bio/appl/clustalw.rb

#initialize(program = 'clustalw', opt = []) ⇒ ClustalW

Creates a new CLUSTAL W execution wrapper object (alignment factory).



41
42
43
44
45
46
47
48
49
50
# File 'lib/bio/appl/clustalw.rb', line 41

def initialize(program = 'clustalw', opt = [])
  @program = program
  @options = opt
  @command = nil
  @output = nil
  @report = nil
  @data_stdout = nil
  @exit_status = nil
  @output_dnd = nil
end