Method: Bio::Command::Wrapper#initialize

Defined in:
lib/wrapper.rb

#initialize(binary = nil, options = {}) ⇒ Object



41
42
43
44
45
46
47
# File 'lib/wrapper.rb', line 41

def initialize(binary=nil, options={})
  @program = binary || self.class.program
  @options = options
  @params = {}
  @pipe_ahead = []
  @path = options.delete(:path) || "."
end