getMatchInfo.JointIdMap {IdMappingAnalysis} | R Documentation |
Get match table(s) for a given set of primary IDs.
## S3 method for class 'JointIdMap' getMatchInfo(this, IDs, idMapNames=NULL, ...)
IDs |
A |
idMapNames |
A |
... |
Not used |
A list
of match table(s) for a given set of primary IDs. The match table is a data frame
where the column set is a union of secondary IDs over all idMapNames for a given primary ID
while each row containes the matches between the primary ID and a particular secondary ID
for a given IdMap.
Alex Lisovich, Roger Day
For more information see JointIdMap
.
jointIdMap<-JointIdMap(examples$identDfList); #get match info for Uniprot accessions P48539 and Q5T089 matches<-jointIdMap$getMatchInfo(c("P48539","Q5T089")); print(matches);