Class: Bio::AssemblyGraphAlgorithms::AllOrfsFinder::Marker

Inherits:
Object
  • Object
show all
Defined in:
lib/assembly/all_orfs.rb

Overview

positions of last base of codons

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#nodeObject

Returns the value of attribute node.



594
595
596
# File 'lib/assembly/all_orfs.rb', line 594

def node
  @node
end

#position_in_nodeObject

Returns the value of attribute position_in_node.



594
595
596
# File 'lib/assembly/all_orfs.rb', line 594

def position_in_node
  @position_in_node
end

#position_in_trailObject

Returns the value of attribute position_in_trail.



594
595
596
# File 'lib/assembly/all_orfs.rb', line 594

def position_in_trail
  @position_in_trail
end

Instance Method Details

#copyObject



596
597
598
599
600
601
602
# File 'lib/assembly/all_orfs.rb', line 596

def copy
  copy = Marker.new
  copy.position_in_trail = @position_in_trail
  copy.position_in_node = @position_in_node
  copy.node = @node
  return copy
end