nbiNet: Network Based Inference

Description Usage Arguments Details References Examples

Description

Given a bipartite graph , a two phase resource transfer Information from X(x,y,z) set of nodes gets distributed to Y set of nodes and then again goes back to resource X. This process allows us to define a technique for the calculation of the weight matrix W. if the similarity matrices are not provided it uses bipartite graph to compute netowrk based inference .

Usage

1
2
nbiNet(A, alpha = 0.5, lamda = 0.5, s1 = NA, s2 = NA,
  format = c("igraph", "matrix", "pairs"))

Arguments

A

Adjacency Matrix

alpha

Tuning parameter (value between 0 and 1) to adjust the performance of the algorithm.

lamda

Tuning parameter (value between 0 and 1) which determines how the distribution of resources takes place in thesecond phase

s1

Target Similarity matrix

s2

Chemical Similarity Matrix

format

type of file as Adjacnency file

Details

Network based inference on Bipartite networks

References

Examples

1
2
3
4
5
6
7
8
data(Enzyme)
A <- t(enzyme_ADJ)
S1 = as.matrix(enzyme_Csim)
S2 = as.matrix(enzyme_Gsim)
g1 = upgrade_graph(graph.incidence(A))
## other format available \code{format = c("igraph","matrix","pairs")}
M2 <- nbiNet(A,alpha=0.5, lamda=0.5,  s1=S1, s2=S2,format = "matrix")
M3 <- nbiNet(A,alpha=0.5,lamda=0.5,format="matrix")

abhik1368/netpredictor documentation built on May 10, 2019, 4:09 a.m.