Skip to content
Snippets Groups Projects
Commit 0847baea authored by root's avatar root
Browse files

Update models

parent a3092980
No related branches found
No related tags found
No related merge requests found
No preview for this file type
No preview for this file type
......@@ -16,6 +16,7 @@ class Ligand(StructuredNode):
# Properties
uuid=StringProperty(unique_index=True, default=uuid4)
id=StringProperty()
ligandomin=StringProperty()
mogulzbond=StringProperty()
ligandbmin=StringProperty()
......@@ -57,6 +58,7 @@ class Ligand(StructuredNode):
'ligand_node_properties': {
'uuid': self.uuid,
'id': self.id,
'ligandomin': self.ligandomin,
'mogulzbond': self.mogulzbond,
'ligandbmin': self.ligandbmin,
......
......@@ -22,6 +22,8 @@ class Refinement(StructuredNode):
RMSangles=IntegerProperty()
R=IntegerProperty()
WatersPresent=StringProperty()
selectedmodel=StringProperty()
refinementprotocol=StringProperty()
@property
def serialize(self):
......@@ -41,6 +43,8 @@ class Refinement(StructuredNode):
'RMSangles': self.RMSangles,
'R': self.R,
'WatersPresent': self.WatersPresent,
'selectedmodel': self.selectedmodel,
'refinementprotocol': self.refinementprotocol,
},
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment