list.celfiles(oligoClasses)
list.celfiles()所属R语言包:oligoClasses
List CEL files.
列出CEL文件。
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Function used to get a list of CEL files.
函数用于获取CEL文件列表。
用法----------Usage----------
list.celfiles(..., listGzipped=FALSE)
参数----------Arguments----------
参数:...
Passed to list.files
传递list.files
参数:listGzipped
Logical. List .CEL.gz files?
逻辑。名单。CEL.gz文件?
值----------Value----------
Character vector with filenames.
特征向量与文件名。
注意----------Note----------
Quite often users want to use this function to pass filenames to other methods. In this situations, it is safer to use the argument 'full.names=TRUE'.
往往用户要使用此功能通过其他方法的文件名。在这种情况下,它是安全使用参数full.names = TRUE“。
参见----------See Also----------
list.files
list.files
举例----------Examples----------
if (require(hapmapsnp5)){
path <- system.file("celFiles", package="hapmapsnp5")
## only the filenames[#唯一的文件名]
list.celfiles(path)
## the filenames with full path...[#文件名的完整路径...]
## very useful when genotyping samples not in the working directory[#非常有用的基因分型样品时,在工作目录]
list.celfiles(path, full.names=TRUE)
}else{
## this won't return anything[#这将不返回任何内容]
## if in the working directory there isn't any CEL[#如果在工作目录没有任何CEL]
list.celfiles(getwd())
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|