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.

__init__()[source]#

Initializes a new MedRecordBuilder instance.

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:

MedRecordBuilder

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:

MedRecordBuilder

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:

MedRecordBuilder

Returns:

MedRecordBuilder – The current instance of the builder.

build()[source]#

Constructs a MedRecord instance from the builder’s configuration.

Return type:

MedRecord

Returns:

MedRecord – The constructed MedRecord instance.

with_schema(schema)[source]#

Specifies a schema for the MedRecord.

Parameters:

schema (Schema) – The schema to apply.

Return type:

MedRecordBuilder

Returns:

MedRecordBuilder – The current instance of the builder.