bnpathplotCustom: bnpathplotCustom

bnpathplotCustomR Documentation

bnpathplotCustom

Description

Plot pathway relationship using customized theme

Usage

bnpathplotCustom(
  results,
  exp,
  expSample = NULL,
  algo = "hc",
  R = 20,
  expRow = "ENSEMBL",
  color = "p.adjust",
  cexCategory = 1,
  cl = NULL,
  showDir = FALSE,
  chooseDir = FALSE,
  labelSize = 4,
  layout = "nicely",
  strType = "normal",
  compareRef = FALSE,
  disc = FALSE,
  tr = NULL,
  remainCont = NULL,
  qvalueCutOff = 0.05,
  adjpCutOff = 0.05,
  nCategory = 15,
  cexLine = 1,
  returnNet = FALSE,
  dep = NULL,
  sizeDep = FALSE,
  cellLineName = "5637_URINARY_TRACT",
  fontFamily = "sans",
  otherVar = NULL,
  otherVarName = NULL,
  onlyDf = FALSE,
  algorithm.args = NULL,
  strengthPlot = FALSE,
  nStrength = 10,
  edgeLink = FALSE,
  strThresh = NULL,
  hub = NULL,
  glowEdgeNum = NULL,
  nodePal = c("blue", "red"),
  edgePal = c("blue", "red"),
  textCol = "black",
  backCol = "white",
  barTextCol = "black",
  barPal = c("red", "blue"),
  barBackCol = "white",
  scoreType = "bic-g",
  barLegendKeyCol = "white",
  orgDb = org.Hs.eg.db,
  barAxisCol = "black",
  barPanelGridCol = "black",
  bg.colour = NULL,
  bg.r = 0.1,
  seed = 1,
  bypassConverting = FALSE
)

Arguments

results

the enrichment analysis result

exp

gene expression matrix

expSample

candidate rows to be included in the inference default to all

algo

structure learning method used in boot.strength() default to "hc"

R

the number of bootstrap

expRow

the type of the identifier of rows of expression matrix

color

color of node, default to adjusted p-value

cexCategory

scaling factor of size of nodes

cl

cluster object from parallel::makeCluster()

showDir

show the confidence of direction of edges

chooseDir

if undirected edges are present, choose direction of edges

labelSize

the size of label of the nodes

layout

ggraph layout, default to "nicely"

strType

"normal" or "ms" for multiscale implementation

compareRef

whether compare to the reference network between pathway

disc

discretize the expressoin data

tr

Specify data.frame if one needs to discretize as the same parameters as the other dataset

remainCont

Specify characters when perform discretization, if some columns are to be remain continuous

qvalueCutOff

the cutoff value for qvalue

adjpCutOff

the cutoff value for adjusted pvalues

nCategory

the number of pathways to be included

cexLine

scaling factor of width of edges

returnNet

whether to return the network

dep

the tibble storing dependency score from library depmap

sizeDep

whether to reflect DepMap score to the node size

cellLineName

the cell line name to be included

fontFamily

font family name to be used for plotting

otherVar

other variables to be included in the inference

otherVarName

the names of other variables

onlyDf

return only data.frame used for inference

algorithm.args

parameters to pass to bnlearn structure learnng function

strengthPlot

append the barplot depicting edges with high strength

nStrength

specify how many edges are included in the strength plot

edgeLink

use geom_edge_link() instead of geom_edge_diagonal()

strThresh

threshold for strength, automatically determined if NULL

hub

change the shape of node according to hub scores (default NULL)

glowEdgeNum

edges with top-n confidence of direction are highlighted

nodePal

vector of coloring of nodes (low, high)

edgePal

vector of coloring of edges (low, high)

textCol

color of texts in network plot

backCol

color of background in network plot

barTextCol

text color in barplot

barPal

bar color

barBackCol

background color in barplot

scoreType

score type to use on inference

barLegendKeyCol

legend key color in barplot

orgDb

perform clusterProfiler::setReadable based on this organism database

barAxisCol

axis color in barplot

barPanelGridCol

panel grid color in barplot

bg.colour

parameter to pass to geom_node_text

bg.r

parameter to pass to geom_node_text

seed

A random seed to make the analysis reproducible, default is 1.

bypassConverting

bypass the symbol converting ID of rownames and those listed in EA result must be same

Value

ggplot2 object

Examples

data("exampleEaRes");data("exampleGeneExp")
res <- bnpathplotCustom(results=exampleEaRes, exp=exampleGeneExp,
                        fontFamily="sans", glowEdgeNum=3, hub=3)

noriakis/CBNplot documentation built on April 7, 2024, 8:27 p.m.