combineData(cn.farms)
combineData()所属R语言包:cn.farms
Combine two ExpressionSet objects
结合两个ExpressionSet对象
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Suitable for SNP or non-polymorphic data which were already processed with single locus FARMS
适合SNP或非多态性数据,其中已处理单基因农场
用法----------Usage----------
combineData(object01, object02, obj01Var = "intensity",
obj02Var = "intensity", runtype = "ff",
saveFile = "combData")
参数----------Arguments----------
参数:object01
An instance of ExpressionSet either with SNP or non-polymorphic data
一个ExpressionSet无论是与实例SNP或非多态性数据
参数:object02
An instance of ExpressionSet either with SNP or non-polymorphic data
一个ExpressionSet无论是与实例SNP或非多态性数据
参数:obj01Var
States the variable which should be combined from the assayData slot. Default is intensity.
各国应结合从assayData插槽的变量。默认是强度。
参数:obj02Var
States the variable which should be combined from the assayData slot. Default is intensity.
各国应结合从assayData插槽的变量。默认是强度。
参数:runtype
Mode how the results are saved. Possible values are ff or bm. If ff is chosen the data will not be saved automatically. With bm the results will be saved permanently.
模式的结果如何保存。可能的值是FF或BM。如果选择FF是数据将不会被自动保存。与BM的结果将永久保存。
参数:saveFile
Name of the file to save.
保存的文件名称。
值----------Value----------
An instance of ExpressionSet.
ExpressionSet实例。
作者(S)----------Author(s)----------
Djork-Arne Clevert <a href="mailto kko@clevert.de">okko@clevert.de</a> and Andreas
Mitterecker <a href="mailto:mitterecker@bioinf.jku.at">mitterecker@bioinf.jku.at</a>
举例----------Examples----------
load(system.file("exampleData/normData.RData", package = "cn.farms"))
notes(experimentData(normData))$annotDir <-
system.file("exampleData/annotation/pd.genomewidesnp.6/1.1.0",
package = "cn.farms")
summaryMethod <- "Variational"
summaryParam <- list()
summaryParam$cyc <- c(10)
slData <- slSummarization(normData,
summaryMethod = summaryMethod,
summaryParam = summaryParam)
assayData(slData)$L_z[1:10, ]
combData <- combineData(slData, slData)
combData
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|