Method: Bio::Alignment::ArrayExtension#each_seq
- Defined in:
- lib/bio/alignment.rb
#each_seq(&block) ⇒ Object
Iterates over each sequences. Yields a sequence.
It works the same as Array#each.
1344 1345 1346 |
# File 'lib/bio/alignment.rb', line 1344 def each_seq(&block) #:yields: seq each(&block) end |