Class: Bio::AssemblyGraphAlgorithms::AllOrfsFinder::ORFsTracingTrail

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#fwd_orfs_resultObject

Returns the value of attribute fwd_orfs_result.



561
562
563
# File 'lib/assembly/all_orfs.rb', line 561

def fwd_orfs_result
  @fwd_orfs_result
end

#otrailObject

Returns the value of attribute otrail.



561
562
563
# File 'lib/assembly/all_orfs.rb', line 561

def otrail
  @otrail
end

#twin_orfs_resultObject

Returns the value of attribute twin_orfs_result.



561
562
563
# File 'lib/assembly/all_orfs.rb', line 561

def twin_orfs_result
  @twin_orfs_result
end

Instance Method Details

#each(&block) ⇒ Object



564
565
566
567
568
# File 'lib/assembly/all_orfs.rb', line 564

def each(&block)
  unless @otrail.nil?
    @otrail.each(&block)
  end
end