combineGSE(RTopper)
combineGSE()所属R语言包:RTopper
Combines GSE results
结合GSE结果
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Combines GSE results obtained from a sepatate set of gene-to-phenotypes scores
结合从基因到表型分数sepatate集获得GSE结果
用法----------Usage----------
combineGSE(gseOut, method)
参数----------Arguments----------
参数:gseOut
a list of lists containing the enrichment results to be combined. This is usually the the output of runBatchGSE obtained from a set of distinct genes-to-phenotype scores (usually one per genomic platform)
一个含有富集列出列表,结果被结合。这通常是runBatchGSE从一组不同的基因表型的分数(通常是每一个基因组平台)获得输出
参数:method
character, this argument specifies the method used to combine the enrichment results obtained from distinct genes-to-phenotype scores (usually one per genomic platform). Available options are the computation of the geometric or arithmetic means, the use of the median, the selection of the minimun or the maximum enrichment score, and the random selection of a score (respectively "geometricMean", "mean", "median", "min", "max", and "random")
字符,这个参数指定用于浓缩取得的成果,从不同的基因表型的分数(通常是每一个基因组平台)结合起来的方法。可用的选项是计算几何或算术平均值,中位数的最低限度的或最大的浓缩得分的选择和随机选择的得分(分别使用"geometricMean","mean" "median","min","max","random")
Details
详情----------Details----------
This function summarize enrichment results obtained from distinct gene-to-phenotypes scores (usually one per genomic platform) by one of several alternative methods.
此功能概括浓缩的结果,从不同的基因到表型的分数(通常是每一个基因组平台)获得几种替代方法之一。
值----------Value----------
The output is a list of lists containing integrated enrichment results for all FGS collections
输出是一个包含所有佛光集合的综合富集结果名单列表
作者(S)----------Author(s)----------
Luigi Marchionni <a href="mailto:marchion@jhu.edu">marchion@jhu.edu</a>
参考文献----------References----------
"Integrating diverse genomic data using gene sets." Manuscript submitted.
举例----------Examples----------
###load gse analysis results for separate gene-to-phenotype score[#负载GSE单独的基因表型的得分分析结果]
data(gseResultsSep)
###combine enrichment score results using geometric mean[#结合使用几何平均的富集得分结果]
gseABS.sep.geoMean <- combineGSE(gseResultsSep, method="geometricMean")
###combine enrichment score results using maximum value[#结合使用最大价值的的富集得分结果]
gseABS.sep.max <- combineGSE(gseResultsSep, method="max")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|