subsetGroups.JointUniquePairs {IdMappingAnalysis} | R Documentation |
Creates a new UniquePairsMatch object which represents a subset of UniquePairs in the original object. Only the rows which have at least a single match are kept from the original object, so the resulting object events form the unity i.e. full event group.
## S3 method for class 'JointUniquePairs' subsetGroups(x, groups=NULL, verbose=FALSE, ...)
groups |
The subset of groups (DBs) incapsulated within
the given JointUniquePairs object to be subsetted on.
If |
verbose |
|
... |
Not used |
JointUniquePairs object representing a full group (unity) for a subset of UniquePairs objects.
Alex Lisovich, Roger Day
For more information see JointUniquePairs
.
jointIdMap<-JointIdMap(examples$identDfList); pairs<-as.UniquePairs(jointIdMap$getUnionIdMap()); jointPairs<-JointUniquePairs(pairs,jointIdMap$getIdMapList()); jointPairs$getMapNames(); jointPairsSubset<-jointPairs$subsetGroups(c("NetAffx_Q","DAVID_Q","EnSembl_F")); jointPairsSubset$getMapNames();