Description Usage Arguments Details Value Author(s) References See Also Examples
View source: R/findComplexes.R
Performs all steps in the local modeling algorithm described by Scholtens and Gentleman (2004) and Scholtens, Vidal, and Gentleman (submitted), beginning with an adjacency matrix recording bait-hit AP-MS data.
1 2 | findComplexes(adjMat,VBs=NULL,VPs=NULL,simMat=NULL,sensitivity=.75,specificity=.995,Beta=0,commonFrac=2/3,wsVal
= 2e7)
|
adjMat |
Adjacency matrix of bait-hit data from an AP-MS experiment. Rows correspond to baits and columns to hits. |
VBs |
|
VPs |
|
simMat |
An optional square matrix with entries between 0 and 1. Rows and columns correspond to the proteins in the experiment, and should be reported in the same order as the columns of |
sensitivity |
Believed sensitivity of AP-MS technology. |
specificity |
Believed specificity of AP-MS technology. |
Beta |
Optional additional parameter for the weight to give data
in |
commonFrac |
This is the fraction of baits that need to be overlapping for a complex combination to be considered. |
wsVal |
A numeric. This is the value assigned as the work-space in the call to fisher.test |
findComplexes
performs all steps in the complex estimation algorithm using the apComplex package functions bhmaxSubgraph
, LCdelta
, and mergeComplexes
. These steps can also be performed separately by the user.
If VBs
and/or VPs
are not specified, then by default VBs
will be assigned the set of baits that detect at least one prey and VPs
the set of prey that are detected by at least one bait.
By default commonFrac
is set relatively high at 2/3. This means
that some potentially reasonable complex combinations could be missed. For
smaller data sets, users may consider decreasing the fraction. For larger
data sets, this may cause a large increase in computation time.
A list of character vectors containing the names of the proteins in the estimated complexes.
Denise Scholtens
Scholtens D and Gentleman R. Making sense of high-throughput protein-protein interaction data. Statistical Applications in Genetics and Molecular Biology 3, Article 39 (2004).
Scholtens D, Vidal M, and Gentleman R. Local modeling of global interactome networks. Bioinformatics 21, 3548-3557 (2005).
1 2 | data(apEX)
PCMG2 <- findComplexes(apEX,sensitivity=.7,specificity=.75)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.