Class: BEL::Script::AnnotationDefinition

Inherits:
Struct
  • Object
show all
Defined in:
lib/bel/parse_objects.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#prefixObject

Returns the value of attribute prefix

Returns:

  • (Object)

    the current value of prefix



25
26
27
# File 'lib/bel/parse_objects.rb', line 25

def prefix
  @prefix
end

#typeObject

Returns the value of attribute type

Returns:

  • (Object)

    the current value of type



25
26
27
# File 'lib/bel/parse_objects.rb', line 25

def type
  @type
end

#valueObject

Returns the value of attribute value

Returns:

  • (Object)

    the current value of value



25
26
27
# File 'lib/bel/parse_objects.rb', line 25

def value
  @value
end

Instance Method Details

#to_sObject



26
27
28
29
30
31
32
33
34
35
# File 'lib/bel/parse_objects.rb', line 26

def to_s
  case self.type
  when :list
    %Q{DEFINE ANNOTATION #{self.prefix} AS LIST {#{self.value.join(',')}}}
  when :pattern
    %Q{DEFINE ANNOTATION #{self.prefix} AS PATTERN "#{self.value}"}
  when :url
    %Q{DEFINE ANNOTATION #{self.prefix} AS URL "#{self.value}"}
  end
end