| Bioinformatics Toolbox™ | ![]() |
Edges = getedgesbynodeid(BGobj,SourceIDs,SinkIDs)
BGobj | Biograph object. |
SourceIDs, SinkIDs | Enter a cell string, or an empty cell array (gets all edges). |
Edges = getedgesbynodeid(BGobj,SourceIDs,SinkIDs) gets the handles to the edges that connect the specified source nodes (SourceIDs) to the specified sink nodes (SinkIDs) in a biograph object.
Create a biograph object for the Hominidae family.
species = {'Homo','Pan','Gorilla','Pongo','Baboon',...
'Macaca','Gibbon'};
cm = magic(7)>25 & 1-eye(7);
bg = biograph(cm, species);
Find all the edges that connect to the Homo node.
EdgesIn = getedgesbynodeid(bg,[],'Homo'); EdgesOut = getedgesbynodeid(bg,'Homo',[]); set(EdgesIn,'LineColor',[0 1 0]); set(EdgesOut,'LineColor',[1 0 0]); bg.view;
Find all edges that connect members of the Cercopithecidae family to members of the Hominidae family.
Cercopithecidae = {'Macaca','Baboon'};
Hominidae = {'Homo','Pan','Gorilla','Pongo'};
edgesSel = getedgesbynodeid(bg,Cercopithecidae,Hominidae);
set(bg.edges,'LineColor',[.5 .5 .5]);
set(edgesSel,'LineColor',[0 0 1]);
bg.view;Bioinformatics Toolbox function: biograph (object constructor)
Bioinformatics Toolbox object: biograph object
Bioinformatics Toolbox methods of a biograph object: dolayout, get, getancestors, getdescendants, getedgesbynodeid, getnodesbyid, getrelatives, set, view
![]() | getdescendants (geneont) | getmatrix (biograph) | ![]() |
| © 1984-2008- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |