Class: GO
- Inherits:
-
Object
- Object
- GO
- Defined in:
- lib/gene_assembler/go.rb
Instance Attribute Summary collapse
-
#beg ⇒ Object
Returns the value of attribute beg.
-
#code ⇒ Object
Returns the value of attribute code.
-
#end ⇒ Object
Returns the value of attribute end.
-
#name ⇒ Object
Returns the value of attribute name.
-
#obsolete ⇒ Object
Returns the value of attribute obsolete.
-
#ontology ⇒ Object
Returns the value of attribute ontology.
-
#source ⇒ Object
Returns the value of attribute source.
Instance Method Summary collapse
-
#initialize(code, name, obsolete) ⇒ GO
constructor
A new instance of GO.
Constructor Details
#initialize(code, name, obsolete) ⇒ GO
Returns a new instance of GO.
3 4 5 6 7 8 9 10 |
# File 'lib/gene_assembler/go.rb', line 3 def initialize(code,name,obsolete) @beg=nil @end=nil @source=nil @code=code @name=name @obsolete=obsolete end |
Instance Attribute Details
#beg ⇒ Object
Returns the value of attribute beg.
2 3 4 |
# File 'lib/gene_assembler/go.rb', line 2 def beg @beg end |
#code ⇒ Object
Returns the value of attribute code.
2 3 4 |
# File 'lib/gene_assembler/go.rb', line 2 def code @code end |
#end ⇒ Object
Returns the value of attribute end.
2 3 4 |
# File 'lib/gene_assembler/go.rb', line 2 def end @end end |
#name ⇒ Object
Returns the value of attribute name.
2 3 4 |
# File 'lib/gene_assembler/go.rb', line 2 def name @name end |
#obsolete ⇒ Object
Returns the value of attribute obsolete.
2 3 4 |
# File 'lib/gene_assembler/go.rb', line 2 def obsolete @obsolete end |
#ontology ⇒ Object
Returns the value of attribute ontology.
2 3 4 |
# File 'lib/gene_assembler/go.rb', line 2 def ontology @ontology end |
#source ⇒ Object
Returns the value of attribute source.
2 3 4 |
# File 'lib/gene_assembler/go.rb', line 2 def source @source end |