找回密码
 注册
查看: 612|回复: 0

R语言 puma包 pumaCombImproved()函数中文帮助文档(中英文对照)

[复制链接]
发表于 2012-2-26 11:36:23 | 显示全部楼层 |阅读模式
pumaCombImproved(puma)
pumaCombImproved()所属R语言包:puma

                                        Combining replicates for each condition with the true gene expression  
                                         结合复制与每个条件的真正的基因表达

                                         译者:生物统计家园网 机器人LoveR

描述----------Description----------

This function calculates the combined (from replicates) signal for each condition using Bayesian models, which are added a hidden variable to represent the true expression for each gene on each chips. The inputs are gene expression levels and the probe-level standard deviations associated with expression measurements for each gene on each chip. The outputs include gene expression levels and standard deviation for each condition.
此函数计算每个使用贝叶斯模型的条件下,添加一个隐藏的变量,每个芯片的每个基因代表真实表达合并(复制)的信号。输入基因表达水平和每个芯片上的每个基因表达测量探针级标准偏差。输出包括基因表达水平,并为每个条件的标准偏差。


用法----------Usage----------


pumaCombImproved(
        eset
,        design.matrix=NULL
,        numOfChunks=1000
,       maxOfIterations=200
,        save_r=FALSE
,        cl=NULL
,        parallelCompute=FALSE
)



参数----------Arguments----------

参数:eset
An object of class ExpressionSet.  
对象类ExpressionSet。


参数:design.matrix
A design matrix.  
一个设计矩阵。


参数:numOfChunks
An integer defining how many chunks the data is divided into before processing. There is generally no need to change the default value.  
一个整数,定义多少块数据被分为前处理。一般不存在需要更改默认值。


参数:maxOfIterations
The maximum number of iterations controls the convergence.  
最大迭代次数控制的收敛性。


参数:save_r
Will save an internal variable r to a file. Used for debugging purposes.  
将内部变量r文件保存。用于调试目的。


参数:cl
A "cluster" object. See makeCluster function from snow package for more details (if available).  
一个“聚类”的对象。看到makeCluster从snow了解更多的细节(如果可用)的功能。


参数:parallelCompute
Boolean identifying whether processing in parallel should occur.  
布尔确定是否应该发生在并行处理。


Details

详情----------Details----------

It is generally recommended that data is normalised prior to using this function. Note that the default behaviour of mmgmos is to normalise data so this shouldn't generally be an issue. See the function pumaNormalize for more details on normalisation.
一般建议,数据标准化之前,使用此功能。请注意,mmgmos的默认行为是规范的数据,所以这个一般不应是一个问题。见功能pumaNormalize标准化更多细节。

The maxOfIterations is used to control the maximum number of the iterations in the EM algorithm. You can change the number of maxOfIterations, but the best value of the maxOfIterations is from 200 to 1000, and should be set 200 at least. The default value is 200.
maxOfIterations是用来控制迭代的EM算法的最大数量。你可以改变的数量maxOfIterations,但的maxOfIterations的最佳值是从200到1000,并应设置至少200。默认值是200。


值----------Value----------

The result is an ExpressionSet object.
结果是ExpressionSet对象。


作者(S)----------Author(s)----------


Li Zhang, Xuejun Liu



参考文献----------References----------





参见----------See Also----------

Related methods pumaNormalize, hcomb, mmgmos and pumaDE
相关的方法pumaNormalize,hcomb,mmgmos和pumaDE


举例----------Examples----------


        #        Next 4 lines commented out to save time in package checks, and saved version used[接下来的4行注释掉包检查,以节省时间,并保存版本使用]
    # if (require(affydata)) {[(要求(affydata)){]
        #        data(Dilution)[数据(稀释)]
        #        eset_mmgmos &lt;- mmgmos(Dilution)[< -  mmgmos eset_mmgmos(稀释)]
        # }[}]
        data(eset_mmgmos)

        #        Next line shows that eset_mmgmos has 4 arrays, each of which is a different[下一行显示,eset_mmgmos有4阵列,其中每一个不同]
        #   condition (the experimental design is a 2x2 factorial, with both liver and[条件(实验设计是一个2x2的因子,肝脏和]
        #        scanner factors)[扫描器的因素)]
        pData(eset_mmgmos)
       
        #        Next line shows expression levels of first 3 probe sets[下一行显示,前3个探针组的表达水平]
        exprs(eset_mmgmos)[1:3,]

        #        Next line used so eset_mmgmos only has information about the liver factor[下一行使用,所以eset_mmgmos只有肝因子的信息]
        #        The scanner factor will thus be ignored, and the two arrays of each level[扫描器的因素将被忽略,每个级别的两个数组]
        #        of the liver factor will be treated as replicates[肝因子,将被视为重复]
        pData(eset_mmgmos) <- pData(eset_mmgmos)[,1,drop=FALSE]

        #        To save time we'll just use 100 probe sets for the example[为了节省时间,我们只使用100个探针组的例子]
        eset_mmgmos_100 <- eset_mmgmos[1:100,]
        eset_combimproved <- pumaCombImproved(eset_mmgmos_100)
       
        #        We can see that the resulting ExpressionSet object has just two conditions[我们可以看到,产生ExpressionSet对象只有两个条件]
        #        and 1 expression level for each condition[1每种条件下的表达水平]
        pData(eset_combimproved)
        exprs(eset_combimproved)[1:3,]

转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。


注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

手机版|小黑屋|生物统计家园 网站价格

GMT+8, 2025-2-1 03:03 , Processed in 0.024791 second(s), 15 queries .

Powered by Discuz! X3.5

© 2001-2024 Discuz! Team.

快速回复 返回顶部 返回列表