Class: Bio::Stockholm::Store
- Inherits:
-
Object
- Object
- Bio::Stockholm::Store
- Defined in:
- lib/bio-stockholm/stockholm.rb
Instance Attribute Summary collapse
-
#gc_features ⇒ Object
GF and GC type features.
-
#gf_features ⇒ Object
GF and GC type features.
-
#header ⇒ Object
‘# STOCKHOLM 1.0’.
-
#records ⇒ Object
Array of Record objects, which in turn store sequence, GR and GS features.
Instance Method Summary collapse
-
#initialize ⇒ Store
constructor
A new instance of Store.
Constructor Details
#initialize ⇒ Store
Returns a new instance of Store.
108 109 110 |
# File 'lib/bio-stockholm/stockholm.rb', line 108 def initialize @records = {} end |
Instance Attribute Details
#gc_features ⇒ Object
GF and GC type features
106 107 108 |
# File 'lib/bio-stockholm/stockholm.rb', line 106 def gc_features @gc_features end |
#gf_features ⇒ Object
GF and GC type features
106 107 108 |
# File 'lib/bio-stockholm/stockholm.rb', line 106 def gf_features @gf_features end |
#header ⇒ Object
‘# STOCKHOLM 1.0’
100 101 102 |
# File 'lib/bio-stockholm/stockholm.rb', line 100 def header @header end |
#records ⇒ Object
Array of Record objects, which in turn store sequence, GR and GS features
103 104 105 |
# File 'lib/bio-stockholm/stockholm.rb', line 103 def records @records end |