Skip to content
Snippets Groups Projects
ligandsfitting_model.py 447 B
Newer Older
from neomodel import StructuredNode, StringProperty, IntegerProperty,UniqueIdProperty, RelationshipTo, DateTimeProperty, BooleanProperty
root's avatar
root committed
from uuid import uuid4

class LigandsFitting(StructuredNode):
root's avatar
root committed
 	uuid=StringProperty(unique_index=True, default=uuid4)
 	dp_step_name = StringProperty()
 	created_at=DateTimeProperty()
 	updated_at=DateTimeProperty()
 	pipedream_id=IntegerProperty()
 	score=IntegerProperty()
 	fitting_success=BooleanProperty()