Method: Bio::Alignment::OriginalAlignment#to_fastaformat_array
- Defined in:
- lib/bio/alignment.rb
#to_fastaformat_array(*arg) ⇒ Object
Convets to fasta format and returns an array of FastaFormat objects.
It will be obsoleted.
2123 2124 2125 2126 2127 2128 2129 2130 2131 |
# File 'lib/bio/alignment.rb', line 2123 def to_fastaformat_array(*arg) #(original) require 'bio/db/fasta' a = self.to_fasta_array(*arg) a.collect! do |x| Bio::FastaFormat.new(x) end a end |