Learn R Programming

IdMappingAnalysis (version 1.16.0)

getDiff.JointIdMap: Create an IdMapDiff object

Description

A fail-safe way to create IdMapDiff object from the ID Map pair which is guaranteed to be properly aligned (see also IdMapDiff class)

Usage

"getDiff"(this, idMapName1, idMapName2, verbose=FALSE, ...)

Arguments

idMapName1
The name of the first ID Map within the joint ID Map object.
idMapName2
Thee name of the second ID Map within the joint ID Map object.
verbose
if TRUE enables diagnostic messages. Default is @FASLE.
...
Not used

Value

An IdMapDiff object created from two IdMap objects extracted from a given JointIdMap object based on their names (idMapName1 and idMapName2).

See Also

For more information see JointIdMap.

Examples

Run this code
 jointIdMap<-JointIdMap(examples$identDfList);
 mapDiff<-jointIdMap$getDiff("NetAffx_F","DAVID_Q",verbose=TRUE);
 class(mapDiff);
 mapDiff[1:10,];
 

Run the code above in your browser using DataLab