Learn R Programming

IdMappingAnalysis (version 1.16.0)

getMatchInfo.JointIdMap: Get match table(s) for a given set of primary IDs

Description

Get match table(s) for a given set of primary IDs.

Usage

"getMatchInfo"(this, IDs, idMapNames=NULL, ...)

Arguments

IDs
A character vector of primary IDs
idMapNames
A character vector of Id Map names encapsulated within the jointIdMap object or NULL, in which case all Id Maps are used. Default is NULL.
...
Not used

Value

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.

See Also

For more information see JointIdMap.

Examples

Run this code
 jointIdMap<-JointIdMap(examples$identDfList);
 #get match info for Uniprot accessions P48539 and Q5T089
 matches<-jointIdMap$getMatchInfo(c("P48539","Q5T089"));
 print(matches);
 

Run the code above in your browser using DataLab