Class: BELParser::Language::Version2_0::Functions::Translocation

Inherits:
Object
  • Object
show all
Extended by:
Function
Defined in:
lib/bel_parser/language/version2_0/functions/translocation.rb

Overview

Translocation: Denotes the frequency or abundance of events in which members move between locations

Defined Under Namespace

Modules: Signatures

Constant Summary collapse

SHORT =
:tloc
LONG =
:translocation
RETURN_TYPE =
BELParser::Language::Version2_0::ReturnTypes::Abundance
DESCRIPTION =
'Denotes the frequency or abundance of events in which members move between locations'.freeze
SIGNATURES =
Signatures.constants.map do |const|
  Signatures.const_get(const)
end.freeze

Class Method Summary collapse

Methods included from Function

===, =~, deprecated?, description, long, return_type, short, signatures, to_h, to_s, to_sym

Class Method Details

.descriptionObject



32
33
34
# File 'lib/bel_parser/language/version2_0/functions/translocation.rb', line 32

def self.description
  DESCRIPTION
end

.longObject



24
25
26
# File 'lib/bel_parser/language/version2_0/functions/translocation.rb', line 24

def self.long
  LONG
end

.return_typeObject



28
29
30
# File 'lib/bel_parser/language/version2_0/functions/translocation.rb', line 28

def self.return_type
  RETURN_TYPE
end

.shortObject



20
21
22
# File 'lib/bel_parser/language/version2_0/functions/translocation.rb', line 20

def self.short
  SHORT
end

.signaturesObject



36
37
38
# File 'lib/bel_parser/language/version2_0/functions/translocation.rb', line 36

def self.signatures
  SIGNATURES
end