class BELParser::Language::Version1_0::Relationships::IsA

IsA: +A isA B+ - For terms A and B, +A isA B+ indicates that A is a subset of B. All terms in BEL represent classes, but given that classes implicitly have instances, one can also interpret +A isA B+ to mean that any instance of A must also be an instance of B. This relationship can be used to represent GO and MeSH hierarchies: +pathology(MESH:Psoriasis) isA pathology(MESH:“Skin Diseases”)+

Constants

DESCRIPTION
LONG
SHORT

Public Class Methods

description() click to toggle source
# File lib/bel_parser/language/version1_0/relationships/is_a.rb, line 39
def self.description
  DESCRIPTION
end
directed?() click to toggle source
# File lib/bel_parser/language/version1_0/relationships/is_a.rb, line 43
def self.directed?
  true
end
long() click to toggle source
# File lib/bel_parser/language/version1_0/relationships/is_a.rb, line 35
def self.long
  LONG
end
short() click to toggle source
# File lib/bel_parser/language/version1_0/relationships/is_a.rb, line 31
def self.short
  SHORT
end