Method: Chem::KEGG::KCFRXN#initialize

Defined in:
lib/chem/db/kcf.rb

#initialize(reactant, product) ⇒ KCFRXN

Returns a new instance of KCFRXN.



147
148
149
150
151
152
153
# File 'lib/chem/db/kcf.rb', line 147

def initialize reactant, product
  @reactant = reactant
  @product = product
  @matched_reactants = []
  @matched_products = []
  @nodes = []
end