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.



615
616
617
# File 'lib/assembly/all_orfs.rb', line 615

def fwd_orfs_result
  @fwd_orfs_result
end

#otrailObject

Returns the value of attribute otrail.



615
616
617
# File 'lib/assembly/all_orfs.rb', line 615

def otrail
  @otrail
end

#twin_orfs_resultObject

Returns the value of attribute twin_orfs_result.



615
616
617
# File 'lib/assembly/all_orfs.rb', line 615

def twin_orfs_result
  @twin_orfs_result
end

Instance Method Details

#each(&block) ⇒ Object



618
619
620
621
622
# File 'lib/assembly/all_orfs.rb', line 618

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