SearchDB(DECIPHER)
SearchDB()所属R语言包:DECIPHER
Obtain Specific Sequences from A Database
从数据库中获得特异序列
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Returns the set of sequences meeting the search criteria.
返回符合搜寻条件的一组序列。
用法----------Usage----------
SearchDB(dbFile,
tblName = "DNA",
identifier = "",
limit = -1,
replaceChar = "-",
orderBy = "row_names",
countOnly = FALSE,
removeGaps = "none",
verbose = TRUE,
...)
参数----------Arguments----------
参数:dbFile
A SQLite connection object or a character string specifying the path to the database file.
一个SQLite连接对象或一个字符串指定的数据库文件的路径。
参数:tblName
Character string specifying the table where the sequences are located.
字符串指定序列表。
参数:identifier
Optional character string used to narrow the search results to those matching a specific identifier. If "" then all identifiers are selected.
可选的字符串匹配一个特定的标识符用来缩小搜索结果。 “”如果所有标识符选择。
参数:limit
Number of results to display. The default (-1) does not limit the number of results.
结果显示的数目。默认(-1)没有限制的结果数量。
参数:replaceChar
Optional character used to replace any characters of the sequence that are not present in the DNA_ALPHABET.
可选字符用来代替任何字符的序列是不存在DNA_ALPHABET。
参数:orderBy
Character string giving the column name for sorting the results. Defaults to the order of entries in the database. Optionally can be followed by " ASC" or " DESC" to specify ascending (the default) or descending order.
字符串排序结果的列名。默认数据库中条目的顺序。可选可以遵循" ASC"或" DESC"指定升序(默认)或者降序。
参数:countOnly
Logical specifying whether to return only the number of sequences.
指定是否只返回序列的逻辑。
参数:removeGaps
Determines how gaps are removed in the sequences. This should be (an unambiguous abbreviation of) one of "none", "all" or "common".
确定如何在序列中删除空白。这应该是("none","all"或"common"一个明确的缩写)。
参数:verbose
Logical indicating whether to display queries as they are sent to the database.
逻辑表明是否显示,因为他们被发送到数据库的查询。
参数:...
Additional expressions to add as part of a where clause in the query. Further arguments provided in ... will be added to the query separated by " and " as part of the where clause.
其他表达式添加在查询的WHERE子句的一部分。提供进一步的论据...将被添加到" and "分开查询的where子句的一部分。
Details
详情----------Details----------
If RNA is present in the database then all U's are converted to T's before creating the DNAStringSet.
如果RNA是在数据库中,然后被转换为T的所有U创建DNAStringSet之前。
值----------Value----------
A DNAStringSet with the sequences that meet the specified criteria. The names of the DNAStringSet correspond to the value in the "row_names" column of the database.
一个DNAStringSet序列,满足指定的条件。 namesDNAStringSet对应的的“row_names”的数据库列的值。
作者(S)----------Author(s)----------
Erik Wright <a href="mailto ECIPHER@cae.wisc.edu">DECIPHER@cae.wisc.edu</a>
参见----------See Also----------
Seqs2DB, DB2FASTA
Seqs2DB,DB2FASTA
举例----------Examples----------
db <- system.file("extdata", "Bacteria_175seqs.sqlite", package="DECIPHER")
dna <- SearchDB(db)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|