Description Usage Arguments Fields and Methods Author(s) Examples
Package: IdMappingAnalysis
Class IdMapDiffCounts
Object
~~|
~~+--
IdMapBase
~~~~~~~|
~~~~~~~+--
IdMapDiffCounts
Directly known subclasses:
public static class IdMapDiffCounts
extends IdMapBase
The IdMapDiffCounts class handles statistics on IdMapDiff object. IdMapDiffCounts object encapsulates a data frame with row names corresponding to the primary IDs and 6 columns subdivided into pairs <match(TRUE/FALSE),count> each pair corresponding to the disjoint events <A-A*B,A*B,B-A*B>, where A and B are secondary ID lists for ID Maps A and B from the IdMapDiff object. The 'pairNames' attribute of the IdMapDiffCounts contains the names of the source ID Map pair from which the IdMapDiff object was created.
1 | IdMapDiffCounts(idMapDiff=NULL, verbose=FALSE, ...)
|
idMapDiff |
The IdMapDiff on which IdMapDiffCounts is cretated. Default is |
verbose |
If |
... |
Not used. |
Methods:
getCompoundEvents | Get compound events. | |
getCompoundGroups | Get counts for each compound event in IdMapDiffCounts. | |
plot | Produce a fountain plot representing the quantitative relationship of the compound events. | |
summary | Get a compaund event counts summary report. | |
Methods inherited from IdMapBase:
[, aligned, as.data.frame, dim, dimnames, getName, primaryIDs, primaryKey, secondaryKey
Methods inherited from Object:
$, $<-, [[, [[<-, as.character, attach, attachLocally, clearCache, clearLookupCache, clone, detach, equals, extend, finalize, gc, getEnvironment, getFieldModifier, getFieldModifiers, getFields, getInstantiationTime, getStaticInstance, hasField, hashCode, ll, load, objectSize, print, registerFinalizer, save
Alex Lisovich, Roger Day
1 2 3 4 5 6 7 8 9 10 11 12 13 | #get primary IDs from an msms experiment set
IDs<-IdMapBase$primaryIDs(examples$msmsExperimentSet);
#create JointIdMap object aligned by primaryIDs
jointIdMap<-JointIdMap(examples$identDfList,primaryIDs=IDs);
#create IdMapDiff object
diffs<-jointIdMap$getDiff("NetAffx_F","DAVID_Q",verbose=TRUE);
# create IdMapDiffCounts object
diffCounts<-IdMapDiffCounts(diffs);
diffCounts[1:10,];
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.