Class: Bio::KEGG::KGML::Reaction
Overview
Bio::KEGG::KGML::Reaction contains a reaction element in the KGML.
Instance Attribute Summary collapse
-
#alt ⇒ Object
alt element (Hash).
-
#id ⇒ Object
ID of this reaction (Integer or nil).
-
#name ⇒ Object
(also: #entry_id)
KEGG-stype ID string of this reaction (String or nil) (‘name’ attribute in ‘reaction’ element).
-
#products ⇒ Object
Products.
-
#substrates ⇒ Object
Substrates.
-
#type ⇒ Object
(also: #direction)
type of this reaction (String or nil).
Instance Attribute Details
#alt ⇒ Object
alt element (Hash)
500 501 502 |
# File 'lib/bio/db/kegg/kgml.rb', line 500 def alt @alt end |
#id ⇒ Object
ID of this reaction (Integer or nil)
474 475 476 |
# File 'lib/bio/db/kegg/kgml.rb', line 474 def id @id end |
#name ⇒ Object Also known as: entry_id
KEGG-stype ID string of this reaction (String or nil) (‘name’ attribute in ‘reaction’ element)
478 479 480 |
# File 'lib/bio/db/kegg/kgml.rb', line 478 def name @name end |
#products ⇒ Object
Products. Each product name is the KEGG-style ID string. (Array containing String objects, or nil)
497 498 499 |
# File 'lib/bio/db/kegg/kgml.rb', line 497 def products @products end |
#substrates ⇒ Object
Substrates. Each substrate name is the KEGG-style ID string. (Array containing String objects, or nil)
493 494 495 |
# File 'lib/bio/db/kegg/kgml.rb', line 493 def substrates @substrates end |
#type ⇒ Object Also known as: direction
type of this reaction (String or nil). Normally “reversible” or “irreversible”. (‘type’ attribute in ‘reaction’ element)
486 487 488 |
# File 'lib/bio/db/kegg/kgml.rb', line 486 def type @type end |