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
|
# File 'lib/chemicalml/cml/base/cml_module.rb', line 7
def self.included(klass)
klass.class_eval do
include Chemicalml::Cml::Role::Module
attribute :id, :string
attribute :title, :string
attribute :dict_ref, :string
attribute :convention, :string
attribute :file_id, :string
attribute :version, :string
attribute :role, :string
attribute :serial, :string
attribute :molecules, :molecule, collection: true
attribute :modules, :module, collection: true
attribute :parameter_lists, :parameterList, collection: true
attribute :property_lists, :propertyList, collection: true
attribute :metadata_lists, :metadataList, collection: true
attribute :lists, :list, collection: true
xml do
namespace Chemicalml::Cml::Namespace
root 'module'
map_attribute 'id', to: :id
map_attribute 'title', to: :title
map_attribute 'dictRef', to: :dict_ref
map_attribute 'convention', to: :convention
map_attribute 'fileId', to: :file_id
map_attribute 'version', to: :version
map_attribute 'role', to: :role
map_attribute 'serial', to: :serial
map_element 'molecule', to: :molecules
map_element 'module', to: :modules
map_element 'parameterList', to: :parameter_lists
map_element 'propertyList', to: :property_lists
map_element 'metadataList', to: :metadata_lists
map_element 'list', to: :lists
end
key_value do
map 'molecule', to: :molecules
map 'module', to: :modules
map 'parameterList', to: :parameter_lists
map 'propertyList', to: :property_lists
map 'metadataList', to: :metadata_lists
map 'list', to: :lists
map 'id', to: :id
map 'title', to: :title
map 'dictRef', to: :dict_ref
map 'convention', to: :convention
map 'fileId', to: :file_id
map 'version', to: :version
map 'role', to: :role
map 'serial', to: :serial
end
end
end
|