Home | plug-in's | Documentation | Tools |
getShortestPath()
is really public (it wasn't in 0.2
as said) and 2 new methods where added: setDirected()
and
setUndirected()
.
getShortestPath()
is now public, so one can use it from
another plugin.
This plugin will show the shortest pathway between 2 nodes in the current network.
Select 2 nodes in the network and call the plugin. There are 2 options in the plugin menu: directed (consider the direction of the edges) and undirected (doesn't consider direction).
If you want to use the shortest path functionality in your plugin, you can
call it directly using the getShortestPath()
method. Use it this way:
import csplugins.mrsva.ShortestPath ShortestPath sp = new ShortestPath(); sp.setDirected(); // or sp.setUndirected(); int[] path = sp.getShortestPath(source,target);
For more information, look at the javadoc.
Download the files from the project page. Then
just put the .jar
file in the plugins folder of Cytoscape.
Here you can find the javadoc of this plugin.
Author: | Márcio Rosa da Silva |
<mrs (a) gbf de> | |
http://www.gbf.de/SystemsBiology |