Module: BEL::Nanopub::MapReferences

Included in:
HashMapReferences
Defined in:
lib/bel/nanopub/map_references.rb

Instance Method Summary collapse

Instance Method Details

#annotation_referencesObject

Raises:

  • (NotImplementedError)


5
6
7
8
9
# File 'lib/bel/nanopub/map_references.rb', line 5

def annotation_references
  raise NotImplementedError.new(
    "#{__method__} is not implemented for class #{self.class}"
  )
end

#map_annotation_reference(reference) ⇒ Object

Raises:

  • (NotImplementedError)


17
18
19
20
21
# File 'lib/bel/nanopub/map_references.rb', line 17

def map_annotation_reference(reference)
  raise NotImplementedError.new(
    "#{__method__} is not implemented for class #{self.class}"
  )
end

#map_namespace_reference(reference) ⇒ Object

Raises:

  • (NotImplementedError)


23
24
25
26
27
# File 'lib/bel/nanopub/map_references.rb', line 23

def map_namespace_reference(reference)
  raise NotImplementedError.new(
    "#{__method__} is not implemented for class #{self.class}"
  )
end

#namespace_referencesObject

Raises:

  • (NotImplementedError)


11
12
13
14
15
# File 'lib/bel/nanopub/map_references.rb', line 11

def namespace_references
  raise NotImplementedError.new(
    "#{__method__} is not implemented for class #{self.class}"
  )
end