import(rtracklayer)
import()所属R语言包:rtracklayer
Importing objects
导入对象
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Imports an object from a connection according to a specified format.
进口从一个连接对象,按照指定的格式。
用法----------Usage----------
import(con, format, text, ...)
参数----------Arguments----------
参数:con
The connection through which the data is received. If this is a character vector, it is assumed to be a filename.
通过它接收数据的连接。如果这是一个特征向量,它被认为是一个文件名。
参数:format
The format in which to expect the input. If omitted and con is a filename, the format is taken from the file extension.
期望输入的格式。如果省略con是一个文件名,格式的文件扩展名。
参数:text
If con is missing, this can be a character vector directly providing the string data to import.
con如果缺少,这可以是一个字符向量,直接提供的字符串数据导入。
参数:...
Arguments to pass to the format-specific import routines.
参数传递给特定格式的进口程序。
Details
详情----------Details----------
This function delegates to a format-specific function named according to the scheme import.format where format is specified by the format parameter.
此函数代表一个特定格式的功能,根据该计划命名import.format其中formatformat参数的指定。
值----------Value----------
The object parsed from the connection or text.
从连接或文字对象的解析。
作者(S)----------Author(s)----------
Michael Lawrence
参见----------See Also----------
export to do the reverse.
export做反向。
举例----------Examples----------
track <- import(system.file("tests", "bed.wig", package = "rtracklayer"))
track <- import(system.file("tests", "v1.gff", package = "rtracklayer"), version = "1")
# or[或]
track <- import(system.file("tests", "v1.gff", package = "rtracklayer"), "gff1")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|