Class: Bio::AssemblyGraphAlgorithms::AllOrfsFinder::Marker
- Inherits:
-
Object
- Object
- Bio::AssemblyGraphAlgorithms::AllOrfsFinder::Marker
- Defined in:
- lib/assembly/all_orfs.rb
Overview
positions of last base of codons
Instance Attribute Summary collapse
-
#node ⇒ Object
Returns the value of attribute node.
-
#position_in_node ⇒ Object
Returns the value of attribute position_in_node.
-
#position_in_trail ⇒ Object
Returns the value of attribute position_in_trail.
Instance Method Summary collapse
Instance Attribute Details
#node ⇒ Object
Returns the value of attribute node.
540 541 542 |
# File 'lib/assembly/all_orfs.rb', line 540 def node @node end |
#position_in_node ⇒ Object
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_trail ⇒ Object
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
#copy ⇒ Object
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 |