@OVLExtensible @Deprecated(since="Omix 2.0") @ReplacedBy("omix.lang.model.Model") public interface MetabolicNetwork extends Network
Deprecated.
Represents the metabolic network diagram.
This Java interface represents MetabolicNetwork in OVL.
It contain all methods available in OVL.
- Author:
- Dr. Peter Droste, Omix Visualization
-
Method Summary
Modifier and Type Method Description default List<? extends Comment>
comments()
Deprecated.List<? extends Compartment>
compartments()
Deprecated.Returns an unchangeableList
of all compartment items.List<? extends EffectorEdge>
effectorEdges()
Deprecated.Returns an unchangeableList
of all effector edges.List<? extends FluxEdge>
fluxEdges()
Deprecated.Returns an unchangeableList
of all flux edges.default Comment
getComment(String identifier)
Deprecated.Compartment
getCompartment(String name)
Deprecated.Returns a toplevel compartment of the given name if available, otherwise null.GraphicsItem
getGraphicsItem(String identifier)
Deprecated.Returns the graphics item with the given identifier if available, otherwise null.GraphicsNode
getGraphicsNode(String identifier)
Deprecated.Returns the graphics node item with the given identifier if available, otherwise null.Metabolite
getMetabolite(String name)
Deprecated.Returns the (compartment free) metabolite node of the given name if available, otherwise null.Pathway
getPathway(String name)
Deprecated.Returns the pathway of the given name if available, otherwise null.Reaction
getReaction(String name)
Deprecated.Returns the reaction nodes of the given name if available, otherwise null.List<? extends GraphicsEdge>
graphicsEdges()
Deprecated.Returns an unchangeableList
of all graphics edges (connection edges).List<? extends GraphicsItem>
graphicsItems()
Deprecated.Returns an unchangeableList
of all graphical items.List<? extends GraphicsNode>
graphicsNodes()
Deprecated.Returns an unchangeableList
of all graphics node items.List<? extends Metabolite>
metabolites()
Deprecated.Returns an unchangeableList
of all metabolite nodes.List<? extends Pathway>
pathways()
Deprecated.Returns an unchangeableList
of all pathway items.List<? extends Reaction>
reactions()
Deprecated.Returns an unchangeableList
of all reaction nodes.Methods inherited from interface omix.lang.model.Item
customPropertyNames, getCustomProperty, id, onload, setCustomProperty, setTmpCustomProperty
-
Method Details
-
metabolites
List<? extends Metabolite> metabolites()Deprecated.Returns an unchangeableList
of all metabolite nodes.- Returns:
- list of metabolites
-
reactions
Deprecated.Returns an unchangeableList
of all reaction nodes.- Returns:
- list of reactions
-
pathways
Deprecated.Returns an unchangeableList
of all pathway items.- Returns:
- list of pathways
-
compartments
List<? extends Compartment> compartments()Deprecated.Returns an unchangeableList
of all compartment items.- Returns:
- list of compartments
-
graphicsNodes
List<? extends GraphicsNode> graphicsNodes()Deprecated.Returns an unchangeableList
of all graphics node items.- Returns:
- list of node items
- Since:
- Omix 1.8.0
-
graphicsEdges
List<? extends GraphicsEdge> graphicsEdges()Deprecated.Returns an unchangeableList
of all graphics edges (connection edges).- Returns:
- list of graphics edges
- Since:
- Omix 1.8.0
-
fluxEdges
Deprecated.Returns an unchangeableList
of all flux edges.- Returns:
- list of flux edges
-
effectorEdges
List<? extends EffectorEdge> effectorEdges()Deprecated.Returns an unchangeableList
of all effector edges.- Returns:
- list of effector edges
-
comments
Deprecated.Returns an unchangeableList
of all top level comment items.- Returns:
- list of comments
-
graphicsItems
List<? extends GraphicsItem> graphicsItems()Deprecated.Returns an unchangeableList
of all graphical items.- Returns:
- list of graphical items
-
getMetabolite
Deprecated.Returns the (compartment free) metabolite node of the given name if available, otherwise null. In order to get access to metabolites contained in a compartment callCompartment.getMetabolite(String)
.- Parameters:
name
- of metabolite- Returns:
- found metabolite
-
getReaction
Deprecated.Returns the reaction nodes of the given name if available, otherwise null.- Parameters:
name
- of the reaction- Returns:
- found reaction
-
getPathway
Deprecated.Returns the pathway of the given name if available, otherwise null.- Parameters:
name
- of the pathway- Returns:
- found pathway
-
getCompartment
Deprecated.Returns a toplevel compartment of the given name if available, otherwise null. In order to get access to a sub compartment callCompartment.getSubCompartment(String)
.- Parameters:
name
- of the compartment- Returns:
- found compartment
-
getGraphicsNode
Deprecated.Returns the graphics node item with the given identifier if available, otherwise null.- Parameters:
identifier
- of the graphics node- Returns:
- found graphics node
-
getGraphicsItem
Deprecated.Returns the graphics item with the given identifier if available, otherwise null.- Parameters:
identifier
- of the graphics item- Returns:
- found graphics item
- Since:
- Omix 1.8.0
-
getComment
Deprecated.Returns the top level comment item with the given identifier if available, otherwise null.- Parameters:
identifier
- of the comment item- Returns:
- found comment item
-