class Bio::GFF::GFF2::Record::Value
Stores GFF2
attribute’s value.
Public Class Methods
new(values = [])
click to toggle source
Public Instance Methods
==(other)
click to toggle source
Returns true if other == self. Otherwise, returns false.
# File lib/bio/db/gff.rb 351 def ==(other) 352 return false unless other.kind_of?(self.class) or 353 self.kind_of?(other.class) 354 self.values == other.values rescue super(other) 355 end
to_s()
click to toggle source
Returns string representation of this Value
object.
- Returns
-
String
# File lib/bio/db/gff.rb 332 def to_s 333 @values.collect do |str| 334 escape_gff2_attribute_value(str) 335 end.join(' ') 336 end