AlchemicalNetwork#
- class gufe.network.AlchemicalNetwork(edges: Iterable[Transformation] | None = None, nodes: Iterable[ChemicalSystem] | None = None, name: str | None = None)#
Methods
Return a generator of all connected subgraphs of the alchemical network.
Currently not implemented
Currently not implemented
Attributes
Network edges as a frozenset of
Transformationinstances.A networkx representation of the AlchemicalNetwork
Optional identifier for the network.
Network nodes as a
frozensetofChemicalSysteminstances.- connected_subgraphs() Generator[Self, None, None]#
Return a generator of all connected subgraphs of the alchemical network.
- property edges: frozenset[Transformation]#
Network edges as a frozenset of
Transformationinstances.
- classmethod from_graphml(str) Self#
Currently not implemented
- property graph: networkx.MultiDiGraph#
A networkx representation of the AlchemicalNetwork
Nodes are represented as
ChemicalSystemobjects and directed edges are represented asTransformationobjects
- property name: str | None#
Optional identifier for the network.
- property nodes: frozenset[ChemicalSystem]#
Network nodes as a
frozensetofChemicalSysteminstances.
- to_graphml() str#
Currently not implemented