Method: Bio::MAFFT#initialize

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

#initialize(program = 'mafft', opt = []) ⇒ MAFFT

Creates a new alignment factory. program is the name of the program. opt is options of the program.



108
109
110
111
112
113
114
115
116
# File 'lib/bio/appl/mafft.rb', line 108

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