Source code for fairgraph.openminds.computation.workflow_execution
"""
Structured information about an execution of a computational workflow.
"""
# this file was auto-generated
from openminds.properties import Property
from openminds.v4.computation import WorkflowExecution as OMWorkflowExecution
from fairgraph import KGObject
[docs]
class WorkflowExecution(KGObject, OMWorkflowExecution):
"""
Structured information about an execution of a computational workflow.
"""
type_ = "https://openminds.om-i.org/types/WorkflowExecution"
default_space = "computation"
# forward properties are defined in the parent class (in openMINDS-Python)
reverse_properties = []
existence_query_properties = ("stages",)
def __init__(
self,
configuration=None,
recipe=None,
stages=None,
started_by=None,
id=None,
data=None,
space=None,
release_status=None,
):
return KGObject.__init__(
self,
id=id,
space=space,
release_status=release_status,
data=data,
configuration=configuration,
recipe=recipe,
stages=stages,
started_by=started_by,
)