medmodels.medrecord.builder.MedRecordBuilder#
- class MedRecordBuilder[source]#
Bases:
object
A builder class for constructing MedRecord instances.
Allows for adding nodes, edges, and groups incrementally, and optionally specifying a schema.
Methods
__init__
()Initializes a new MedRecordBuilder instance.
add_edges
(edges, *[, group])Adds edges to the builder.
add_group
(group, *[, nodes])Adds a group to the builder with an optional list of nodes.
add_nodes
(nodes, *[, group])Adds nodes to the builder.
build
()Constructs a MedRecord instance from the builder's configuration.
with_schema
(schema)Specifies a schema for the MedRecord.
- add_edges(edges, *, group=None)[source]#
Adds edges to the builder.
- Parameters:
edges (EdgeInput) – Edges to add.
group (Optional[Group], optional) – Group to associate with the edges.
- Return type:
- Returns:
MedRecordBuilder – The current instance of the builder.
- add_group(group, *, nodes=None)[source]#
Adds a group to the builder with an optional list of nodes.
- Parameters:
group (Group) – The name of the group to add.
nodes (List[NodeIndex], optional) – Node indices to add to the group.
- Return type:
- Returns:
MedRecordBuilder – The current instance of the builder.
- add_nodes(nodes, *, group=None)[source]#
Adds nodes to the builder.
- Parameters:
nodes (NodeInput) – Nodes to add.
group (Optional[Group], optional) – Group to associate with the nodes.
- Return type:
- Returns:
MedRecordBuilder – The current instance of the builder.
- build()[source]#
Constructs a MedRecord instance from the builder’s configuration.
- Return type:
- Returns:
MedRecord – The constructed MedRecord instance.