analyzeNetwork: Analyze Functional Network

Description Usage Arguments Value See Also Examples

View source: R/3_analyzeNetwork.R

Description

Analyzes the degree and betweenness of the genes in the functional network.

Usage

1
analyzeNetwork(incidMatrices, fNw = NULL, plotOutput = TRUE, colors = NULL)

Arguments

incidMatrices

list or matrix. Output from fea2incidMat or the equivalent incidence matrices.

fNw

list. Return from functionalNetwork to avoid recalculating.

plotOutput

logical. Wether to plot the degree and betweenness boxplots.

colors

vector. Colors for the metagroups

Value

List:

See Also

Overview of the package: FGNet

Package tutorial: vignette("FGNet-vignette")

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
## Not run: 
# Previous Steps
jobID <- 3907019
results <- fea_gtLinker_getResults(jobID)
incidMat <- fea2incidMat(results, filterAttribute="Silhouette Width")


# Plot node degree and betweensess
analyzeNetwork(incidMat)

# Get stats without plotting
nwStats <- analyzeNetwork(incidMat, plotOutput=FALSE)
names(nwStats)
nwStats$hubsTable

## End(Not run)

FGNet documentation built on Nov. 8, 2020, 5:43 p.m.