dmpFinder(minfi)
dmpFinder()所属R语言包:minfi
Find differentially methylated positions
找到差异甲基化的位置
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Identify CpGs where methylation is associated with a continuous or categorical phenotype.
确定甲基化与连续或分类型的CPGs。
用法----------Usage----------
dmpFinder(dat, pheno, type = c("categorical", "continuous"),
qCutoff = 1, shrinkVar = FALSE)
参数----------Arguments----------
参数:dat
A MethylSet or a matrix.
一个MethylSet或matrix。
参数:pheno
The phenotype to be tested for association with methylation.
表型进行测试与甲基化的关联。
参数:type
Is the phenotype '"continuous" or "categorical"?
是“连续”或“类别”的表型?
参数:qCutoff
DMPs with an FDR q-value greater than this will not be returned.
1FDRQ值比这更大的DMPS将不予退还。
参数:shrinkVar
Should variance shrinkage be used? See details.
应该方差收缩吗?查看详情。
Details
详情----------Details----------
This function tests each genomic position for association between methylation and a phenotype. Continuous phenotypes are tested with linear regression, while an F-test is used for categorical phenotypes.
该功能测试各协会之间的甲基化和表型的基因组的位置。连续的表型与线性回归测试,而分类表型的F-测试。
Variance shrinkage (shrinkVar=TRUE) is recommended when sample sizes are small (<10). The sample variances are squeezed by computing empirical Bayes posterior means using the limma package.
方差收缩(shrinkVar=TRUE)建议时,样本量小(<10)。样本方差计算经验贝叶斯后,意味着使用limma包被挤压。
值----------Value----------
A table with one row per CpG.
每一个CPG行表。
作者(S)----------Author(s)----------
Martin Aryee <a href="mailto:aryee@jhu.edu">aryee@jhu.edu</a>.
参见----------See Also----------
squeezeVar and the limma package in general.
squeezeVar和limma一般的包。
举例----------Examples----------
if (require(minfiData)) {
grp <- pData(MsetEx)$Sample_Group
MsetExSmall <- MsetEx[1:1e4,] # To speed up the example[加快范例]
dmp <- dmpFinder(MsetExSmall, pheno=grp, type="categorical")
sum(dmp$qval < 0.05, na.rm=TRUE)
head(dmp)
}
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|