class openfe.AlchemicalNetwork(edges: Iterable[Transformation] | None = None, nodes: Iterable[ChemicalSystem] | None = None, name: str | None = None)#
property graph: MultiDiGraph#

A networkx representation of the AlchemicalNetwork

Nodes are represented as ChemicalSystem objects and directed edges are represented as Transformation objects

property edges: frozenset[gufe.transformations.transformation.Transformation]#

Network edges as a frozenset of Transformation instances.

property nodes: frozenset[gufe.chemicalsystem.ChemicalSystem]#

Network nodes as a frozenset of ChemicalSystem instances.

property name: str | None#

Optional identifier for the network.

to_graphml() str#

Currently not implemented

classmethod from_graphml(str)#

Currently not implemented