summary.IdMapDiffCounts {IdMappingAnalysis} | R Documentation |
Get a counts summary report where each row is a count of matches corresponding to a particular compound event
## S3 method for class 'IdMapDiffCounts' summary(object, ...)
... |
Not used |
A data.frame
with a single 'counts' column
where each row is a count of matches corresponding to a particular compound event.
Alex Lisovich, Roger Day
For more information see IdMapDiffCounts
.
#create IdMapDiffCounts object IDs<-IdMapBase$primaryIDs(examples$msmsExperimentSet); jointIdMap<-JointIdMap(examples$identDfList,primaryIDs=IDs); diffs<-jointIdMap$getDiff("NetAffx_F","DAVID_Q",verbose=TRUE); diffCounts<-IdMapDiffCounts(diffs); # get summary diffCounts$summary();