Class: Bio::AssemblyGraphAlgorithms::AllOrfsFinder::ORFsResult
- Inherits:
-
Object
- Object
- Bio::AssemblyGraphAlgorithms::AllOrfsFinder::ORFsResult
- Defined in:
- lib/assembly/all_orfs.rb
Instance Attribute Summary collapse
-
#final_start_markers ⇒ Object
Returns the value of attribute final_start_markers.
-
#initial_start_markers ⇒ Object
Returns the value of attribute initial_start_markers.
-
#initial_stop_markers ⇒ Object
Returns the value of attribute initial_stop_markers.
-
#start_stop_pairs ⇒ Object
Returns the value of attribute start_stop_pairs.
Instance Method Summary collapse
-
#initialize ⇒ ORFsResult
constructor
A new instance of ORFsResult.
Constructor Details
#initialize ⇒ ORFsResult
Returns a new instance of ORFsResult.
628 629 630 631 632 633 |
# File 'lib/assembly/all_orfs.rb', line 628 def initialize @start_stop_pairs = [] @initial_start_markers = [] @final_start_markers = [] @initial_stop_markers = [] end |
Instance Attribute Details
#final_start_markers ⇒ Object
Returns the value of attribute final_start_markers.
626 627 628 |
# File 'lib/assembly/all_orfs.rb', line 626 def final_start_markers @final_start_markers end |
#initial_start_markers ⇒ Object
Returns the value of attribute initial_start_markers.
626 627 628 |
# File 'lib/assembly/all_orfs.rb', line 626 def initial_start_markers @initial_start_markers end |
#initial_stop_markers ⇒ Object
Returns the value of attribute initial_stop_markers.
626 627 628 |
# File 'lib/assembly/all_orfs.rb', line 626 def initial_stop_markers @initial_stop_markers end |
#start_stop_pairs ⇒ Object
Returns the value of attribute start_stop_pairs.
626 627 628 |
# File 'lib/assembly/all_orfs.rb', line 626 def start_stop_pairs @start_stop_pairs end |