Class | Bio::KEGG::KGML::Entry |
In: |
lib/bio/db/kegg/kgml.rb
|
Parent: | Object |
id | -> | entry_id |
id= | -> | entry_id= |
type | -> | category |
type= | -> | category= |
components | [RW] | component elements included in this entry (Array containing Integer objects, or nil) |
graphics | [RW] | graphics elements included in this entry (Array containing Graphics objects, or nil) |
id | [RW] | ID of this entry in this pathway map (Integer or nil). (‘id’ attribute in ‘entry’ element) |
link | [RW] | URL pointing information about this entry (String or nil) |
name | [RW] | KEGG-style ID string of this entry (String or nil) |
pathway | [RW] | (Deprecated?) (‘map’ attribute in ‘entry’ element) |
reaction | [RW] | KEGG-style ID string of this reaction (String or nil) |
type | [RW] |
type of this entry (String or nil).
Normally one of the following:
See www.genome.jp/kegg/xml/docs/ for details. (‘type’ attribute in ‘entry’ element) |
Deprecated. Same as self.graphics[-1].name= (additional nil checks may be needed).
# File lib/bio/db/kegg/kgml.rb, line 255 255: def label=(val) 256: _graphics_set_attr(:name=, val) 257: end
Deprecated. Same as self.graphics[-1].type (additional nil checks may be needed).
shape of the ‘graphics’ element (String or nil) Normally one of the following:
If not specified, "rectangle" is the default value. (‘type’ attribute in ‘graphics’ element)
# File lib/bio/db/kegg/kgml.rb, line 270 270: def shape 271: _graphics_attr(:type) 272: end
Deprecated. Same as self.graphics[-1].type= (additional nil checks may be needed).
# File lib/bio/db/kegg/kgml.rb, line 277 277: def shape=(val) 278: _graphics_set_attr(:type=, val) 279: end