Visualization Module
Functions for visualizing ARC FGraphs.
Functions and values
Function or value | Description |
Full Usage:
isaGraphToFullCyGraph graph
Parameters:
FGraph<string, IParam, ARCRelation>
Returns: CyGraph
|
Takes an ISA-based FGraph and returns a CyGraph according to its structure.
|
Full Usage:
isaIntermediateGraphToFullCyGraph graph
Parameters:
FGraph<string, IParam seq, ARCRelation>
Returns: CyGraph
|
Takes an ISA-based FGraph and returns a CyGraph according to its structure.
|
Full Usage:
isaSplitGraphToFullCyGraph graph
Parameters:
FGraph<(string * int), IParam, ARCRelation>
Returns: CyGraph
|
Takes an ISA-based FGraph and returns a CyGraph according to its structure.
|
Full Usage:
ontoGraphToFullCyGraph graph
Parameters:
FGraph<string, OboTerm, ARCRelation>
Returns: CyGraph
|
Takes an OboOntology-based FGraph and returns a CyGraph according to its structure.
|
Full Usage:
printGraph transformFunction graph
Parameters:
'a -> string
graph : FGraph<'b, 'a, 'c>
|
Takes an FGraph and prints all its nodes and edges by using a given node-transforming function.
|
Full Usage:
toFullCyGraph nodeKeyTransformer nodeDataTransformer edgeTransformer fGraph
Parameters:
'a -> string
nodeDataTransformer : 'b -> 'c
edgeTransformer : 'd -> CyStyleParam list
fGraph : FGraph<'a, 'b, 'd>
Returns: CyGraph
|
Takes an FGraph and returns a CyGraph by using given functions for transforming node keys, node data and edges.
|