Usage
qpPlotNetwork(g, vertexSubset=graph::nodes(g), boundary=FALSE, minimumSizeConnComp=2, pairup.i=NULL, pairup.j=NULL, highlight=NULL, annotation=NULL, layout=c("twopi", "dot", "neato", "circo", "fdp"))
Arguments
g
graph to plot provided as a graphNEL-class
object.
vertexSubset
subset of vertices that define the induced subgraph to be plotted.
boundary
flag set to TRUE
when we wish that the subset specified in vertexSubset
also includes the vertices connected to them; FALSE
otherwise.
minimumSizeConnComp
minimum size of the connected components to be plotted.
pairup.i
subset of vertices to pair up with subset pairup.j
.
pairup.j
subset of vertices to pair up with subset pairup.i
.
highlight
subset of vertices to highlight by setting the color font to red.
annotation
name of an annotation package to transform gene identifiers into gene symbols when vertices correspond to genes.
layout
layout argument for the Rgraphviz library that plots the network. Possible values are twopi
(default), dot
, neato
, circo
, fdp
.