Module: Chemicalml::Cml::Base::ReactionScheme

Included in:
Schema24::ReactionScheme, Schema3::ReactionScheme
Defined in:
lib/chemicalml/cml/base/reaction_scheme.rb

Class Method Summary collapse

Class Method Details

.included(klass) ⇒ Object



7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
# File 'lib/chemicalml/cml/base/reaction_scheme.rb', line 7

def self.included(klass)
  klass.class_eval do
    include Chemicalml::Cml::Role::ReactionScheme
    include Chemicalml::Cml::Base::CommonChildren

    attribute :id, :string
    attribute :title, :string
    attribute :dict_ref, :string
    attribute :convention, :string

    attribute :reaction_step_lists, :reactionStepList, collection: true
    attribute :reactions, :reaction, collection: true

    attribute :ref, :string
    attribute :reaction_role, :string
    attribute :reaction_type, :string
    attribute :state, :string
    attribute :reaction_format, :string
    attribute :type, :string
    attribute :reaction_schemes, :reactionScheme, collection: true

    xml do
      namespace Chemicalml::Cml::Namespace
      map_element 'reactionStepList', to: :reaction_step_lists
      map_element 'reactionScheme', to: :reaction_schemes
      map_element 'reaction', to: :reactions
      root 'reactionScheme'
      map_attribute 'id', to: :id
      map_attribute 'title', to: :title
      map_attribute 'dictRef', to: :dict_ref
      map_attribute 'convention', to: :convention
      map_attribute 'ref', to: :ref
      map_attribute 'reactionRole', to: :reaction_role
      map_attribute 'role', to: :reaction_role
      map_attribute 'reactionType', to: :reaction_type
      map_attribute 'type', to: :reaction_type
      map_attribute 'state', to: :state
      map_attribute 'reactionFormat', to: :reaction_format
      map_attribute 'format', to: :reaction_format
    end
    key_value do
      map 'metadataList', to: :metadata_lists
      map 'label', to: :labels
      map 'name', to: :names
      map 'description', to: :descriptions
      map 'reactionStepList', to: :reaction_step_lists
      map 'reactionScheme', to: :reaction_schemes
      map 'reaction', to: :reactions
      map 'id', to: :id
      map 'title', to: :title
      map 'dictRef', to: :dict_ref
      map 'convention', to: :convention
      map 'ref', to: :ref
      map 'reactionRole', to: :reaction_role
      map 'role', to: :reaction_role
      map 'reactionType', to: :reaction_type
      map 'type', to: :reaction_type
      map 'state', to: :state
      map 'reactionFormat', to: :reaction_format
      map 'format', to: :reaction_format
    end
  end
end