Description Usage Arguments Value Author(s) Examples
View source: R/interaction-methods.R
Reduce genetic interactions matrix to the pairs that genetically interact and that are present in the interactome of interest.
1 | gi2Interactome(iMat, interactome, threshold=0)
|
iMat |
Genetic interaction matrix. Each entry has usually a value of 0 or 1, representing positive or negative interaction of corresponding pairs of row and column, respectively. |
interactome |
Interactome matrix, e.g. |
threshold |
Integer |
The returned value is the genetic interaction matrix reduced to the row and column (genes) names that are present in the interactome and where the row and column sums are higher than the specified threshold.
N. LeMeur
1 2 3 4 5 6 7 8 9 10 11 | ##Create the genetic interaction matrix
gInt <- sample(c(0, 1), 25, TRUE)
iMat <- matrix(gInt, nrow=5, ncol=5, dimnames=list(letters[1:5],letters[4:8]))
##Create the interactome
cInt <- sample(c(0,1),30, TRUE)
interactome <- matrix(cInt, nrow=6, ncol=5,dimnames=list(letters[2:7],LETTERS[1:5]))
## Reduce the genetic interaction matrix to match the gene present in
## the interactome
reducediMat <- gi2Interactome(iMat, interactome)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.