Method: Bio::Blast::Default::Report#references

Defined in:
lib/bio/appl/blast/format0.rb

#referencesObject

Returns the bibliography references of the BLAST software. Returns an array of strings.



235
236
237
238
239
240
241
242
# File 'lib/bio/appl/blast/format0.rb', line 235

def references
  unless defined?(@references)
    @references = @f0references.collect do |x|
      x.to_s.gsub(/\s+/, ' ').strip
    end
  end #unless
  @references
end