Learn R Programming

GeneNetworkBuilder (version 1.14.3)

convertID: convert gene IDs by id map

Description

For same gene, there are multple gene alias. In order to eliminate the possibility of missing any connections, convert the gene symbols to unique gene ids is important. This function can convert the gene symbols to unique ids and convert it back according a giving map.

Usage

convertID(x,IDsMap,ByName=c("from","to"))

Arguments

x
a matrix or dataframe contain the columns to be converted.
IDsMap
a character vector of the identifier map
ByName
the column names to be converted

Value

a matrix or dataframe with converted gene IDs

Examples

Run this code
	data("ce.IDsMap")
	bind<-cbind(from="daf-16", to=c("fkh-7", "hlh-13", "mxl-3", "nhr-3", "lfi-1"))
	convertID(toupper(bind), ce.IDsMap, ByName=c("from", "to"))

Run the code above in your browser using DataLab