booldog.classes
Classes
A dataclass to represent a node in a Boolean network. |
|
A dataclass to represent metadata about a Boolean network model. |
Module Contents
- class booldog.classes.BoolDogNode
A dataclass to represent a node in a Boolean network.
- identifier
The identifier of the node.
- Type:
str
- name
The name of the node.
- Type:
str
- rule
The Boolean rule of the node in Bnet format.
- Type:
str
- identifier: str
- rule: str
- name: str | None = None
- __post_init__()
- __repr__()
- class booldog.classes.BoolDogModelInfo
A dataclass to represent metadata about a Boolean network model.
- source
The source of the model (e.g., file name, database, etc.).
- Type:
str
- identifier: str | None = None
- source: str | None = None
- source_format: str | None = None
- notes: str | None = None
- __post_init__()
- __repr__()