Class: Bio::Velvet::Underground::Graph::NodedRead
- Inherits:
-
Object
- Object
- Bio::Velvet::Underground::Graph::NodedRead
- Defined in:
- lib/bio-velvet_underground/graph.rb
Instance Attribute Summary collapse
-
#direction ⇒ Object
Returns the value of attribute direction.
Instance Method Summary collapse
-
#initialize(short_read_struct, direction) ⇒ NodedRead
constructor
A new instance of NodedRead.
- #offset_from_start_of_node ⇒ Object
- #read_id ⇒ Object
- #start_coord ⇒ Object
Constructor Details
#initialize(short_read_struct, direction) ⇒ NodedRead
Returns a new instance of NodedRead.
162 163 164 165 |
# File 'lib/bio-velvet_underground/graph.rb', line 162 def initialize(short_read_struct, direction) @internal_short_read_struct = short_read_struct @direction = direction end |
Instance Attribute Details
#direction ⇒ Object
Returns the value of attribute direction.
160 161 162 |
# File 'lib/bio-velvet_underground/graph.rb', line 160 def direction @direction end |
Instance Method Details
#offset_from_start_of_node ⇒ Object
171 172 173 |
# File 'lib/bio-velvet_underground/graph.rb', line 171 def offset_from_start_of_node @internal_short_read_struct[:position] end |
#read_id ⇒ Object
167 168 169 |
# File 'lib/bio-velvet_underground/graph.rb', line 167 def read_id @internal_short_read_struct[:readID] end |
#start_coord ⇒ Object
175 176 177 |
# File 'lib/bio-velvet_underground/graph.rb', line 175 def start_coord @internal_short_read_struct[:offset] end |