Class: Bio::Velvet::Underground::Graph::NodedRead

Inherits:
Object
  • Object
show all
Defined in:
lib/bio-velvet_underground/graph.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#directionObject

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_nodeObject



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_idObject



167
168
169
# File 'lib/bio-velvet_underground/graph.rb', line 167

def read_id
  @internal_short_read_struct[:readID]
end

#start_coordObject



175
176
177
# File 'lib/bio-velvet_underground/graph.rb', line 175

def start_coord
  @internal_short_read_struct[:offset]
end