Skip to content
Snippets Groups Projects
mmciffile_model.py 252 B
from neomodel import StructuredNode, StringProperty, IntegerProperty,UniqueIdProperty, RelationshipTo
from uuid import uuid4

class mmCIFFile(StructuredNode):
	uuid=StringProperty(unique_index=True, default=uuid4)
	coordinates_filetype=StringProperty()