ParserParams(WMBrukerParser)
ParserParams()所属R语言包:WMBrukerParser
Input Parameter List
输入参数列表
译者:生物统计家园网 机器人LoveR
描述----------Description----------
ParserParams is a list of seven parameters which identify the data to be parsed, and specify whether or not data from multiple bioprocessor runs are to be concatenated and if memory use information is to be printed during parsing. For convenience, it is stored in a file named OptionsAndParameters.txt file which can be edited and sourced prior to execution of ParseAndSave.
ParserParams是一个确定的数据进行解析,并指定是否要连接的数据从多个bioprocessor运行,如果是要打印内存使用信息,在分析过程中的七个参数列表。为方便起见,它被存储在一个文件名为OptionsAndParameters.txt文件,可以编辑和源之前执行ParseAndSave。
格式----------Format----------
ParserParams$dataSource : character string (e.g. “Lab1”)<br> ParserParams$multipleRuns : character string (“yes” or “no” )<br> ParserParams$concatLists : character string (“yes” or “no” )<br> ParserParams$runIndices : numeric array (e.g. 1 or c(1,3,2) )<br> ParserParams$dataDirLeft : character string (e.g. “scr/MyRun”)<br> ParserParams$dataDirRight : character string (e.g. “QC”)<br> ParserParams$printMemoryUse: character string (“yes” or “no” )
ParserParams元数据源:字符串(例如,“LAB1”)<BR> ParserParams $ multipleRuns:字符串(“是”或“否”)参考ParserParams concatLists:字符串(“是”或“无“)参考ParserParams,$ runIndices,数字阵列(如1或c(1,3,2))参考ParserParams dataDirLeft:字符串(例如,”SCR / MyRun的参考ParserParams dataDirRight“):字符串(如“QC”)参考ParserParams printMemoryUse:字符串(“是”或“否”)
Details
详细信息----------Details----------
Data directories contain the spot directories with names such as 0_A1 or 0_B17. ParserParams$dataDirLeft, ParserParams$runIndices and ParserParams$dataDirRight are defined so that pasting them together generates the data directory paths desired. If multiple runs are to be parsed, the ParserParams$runIndices need not be in order but must appear in the paths. The "run branch" can occur at the level of the data directory or above. If it occurs at the data directory level,ParserParams$dataDirRight <- "". If a single run is to be parsed, ParserParams$dataDirLeft is assigned the complete data directory path, ParserParams$runIndices <- 1 and ParserParams$dataDirRight <- "".
数据目录包含的点目录与,如0_A1或0_B17的名称。 ParserParams $ dataDirLeft,ParserParams runIndices和ParserParams $ dataDirRight的定义,以便粘贴在一起,生成所需的数据目录路径。如果有多个运行进行解析,ParserParams $ runIndices需要不合乎规程,但必须出现在的路径。 “运行分支”,可能会发生在数据目录或以上的水平。如果它出现在数据目录级别,ParserParams $ dataDirRight < - “。如果一个单一的运行是要被解析,ParserParams dataDirLeft分配完整的数据目录路径,ParserParams $ runIndices < - 1和ParserParams dataDirRight“ - ”。
参见----------See Also----------
WMBrukerParser, BrukerParser, ParserParams, ParseAndSave, tofListMetaData
WMBrukerParser,BrukerParser,ParserParams,ParseAndSave,tofListMetaData
实例----------Examples----------
## Example1: Parse data from a single bioprocessor run:[例1:解析数据从单一的bioprocessor运行:]
ParserParams<-list()
ParserParams$dataSource <- "Lab1"
ParserParams$multipleRuns <- "no"
ParserParams$concatLists <- "no"
ParserParams$runIndices <- 1
directory = system.file("Examples", package = "WMBrukerParser")
ParserParams$dataDirLeft <-
paste(directory,"/C3ValidationExtractSmall/RobotRun1/2-100kDa",sep="")
ParserParams$dataDirRight <- ""
ParserParams$printMemoryUse <- "no"
ParseAndSave(ParserParams)
## Example2: Parse and concatenate data from two bioprocessor[例2:解析和CONCATENATE从两个bioprocessor的数据的]
## two runs with memory information printed:[#2运行与内存信息打印:]
ParserParams<-list()
ParserParams$dataSource <- "Lab1"
ParserParams$multipleRuns <- "yes"
ParserParams$concatLists <- "yes"
ParserParams$runIndices <- c(1,2)
directory = system.file("Examples", package = "WMBrukerParser")
ParserParams$dataDirLeft <-
paste(directory,"/C3ValidationExtractSmall/RobotRun",sep="")
ParserParams$dataDirRight <- "/2-100kDa"
ParserParams$printMemoryUse <- "yes"
ParseAndSave(ParserParams)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|