Learn R Programming

GOGANPA (version 1.0)

getGNET: Gene Network Construction by Similarity-Thresholding

Description

Construct a gene network by linking gene-pairs with GO similarity above a chosen threshold.

Usage

getGNET(simMat, rho)

Arguments

simMat
The GO-similairty matrix. Missing and negative entries are not allowed. The gene names should be assigned to the row and column names.
rho
The threshold, chosen e.g. by selectRho. Gene-pairs with similarity above the threshold will be linked.

Value

A list, where each element contains the names of the genes connected to the corresponding gene indicated by the element-header.

References

Chang, B., Kustra, R. and Tian, WD (2012) Functional-Network-based Gene Set Analysis using Gene Ontology. Submitted.

Zhang, B. and Horvath, S. (2005) A General Framework for Weighted Gene Co-Expression Network Analysis. Statistical Applications in Genetics and Molecular Biology. 4:1:A17.

See Also

selectRho

Examples

Run this code
#Not to Run
data("simMatSmall",package="GOGANPA")
gNET <- getGNET(simMatSmall,rho=0.7)
hist(sapply(gNET,length)) # network connectivities (excluding unconnected genes)

Run the code above in your browser using DataLab