getNuIDMappingInfo(lumi)
getNuIDMappingInfo()所属R语言包:lumi
get the mapping information from nuID to RefSeq ID
映射信息从nuID的RefSeq编号
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Get the mapping information (including mapping quality information) of nuIDs to the most recent RefSeq release. These information was kept in the IDMapping libraries.
获取的nuIDs映射信息(包括测绘质量信息)到最近的RefSeq释放。这些信息被保存在IDMapping库。
用法----------Usage----------
getNuIDMappingInfo(nuID = NULL, lib.mapping)
参数----------Arguments----------
参数:nuID
a vector of nuIDs. If it is NULL, all mappings will be returned.
向量的nuIDs。如果它是NULL,将返回所有映射。
参数:lib.mapping
the ID mapping library
ID映射库
Details
详情----------Details----------
The function basically return the nuID mapping information kept in the "nuID\_MappingInfo" table of IDMapping libraries (lumiHumanIDMapping, lumiMouseIDMapping, lumiRatIDMapping). For more details of nuID mapping, please refer to the help of corresponding IDMapping library.
功能基本上返回的nuID的映射信息保存的“nuID \ _MappingInfo”的IDMapping库表(lumiHumanIDMapping,lumiMouseIDMapping,lumiRatIDMapping)。为nuID映射的更多细节,请参阅帮助相应IDMapping库。
值----------Value----------
It returns a data.frame with each row corresponding to an input nuID.
它返回的每一行数据框对应输入nuID的。
作者(S)----------Author(s)----------
Warren Kibbe, Pan Du, Simon Lin
举例----------Examples----------
## load example data[#加载数据为例]
data(example.lumi)
if (require(lumiHumanIDMapping)) {
nuIDs <- featureNames(example.lumi)
mappingInfo <- getNuIDMappingInfo(nuIDs, lib.mapping='lumiHumanIDMapping')
head(mappingInfo)
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|