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.



540
541
542
# File 'lib/assembly/all_orfs.rb', line 540

def node
  @node
end

#position_in_nodeObject

Returns the value of attribute position_in_node.



540
541
542
# File 'lib/assembly/all_orfs.rb', line 540

def position_in_node
  @position_in_node
end

#position_in_trailObject

Returns the value of attribute position_in_trail.



540
541
542
# File 'lib/assembly/all_orfs.rb', line 540

def position_in_trail
  @position_in_trail
end

Instance Method Details

#copyObject



542
543
544
545
546
547
548
# File 'lib/assembly/all_orfs.rb', line 542

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