Description Usage Arguments Details Value Author(s) See Also Examples
Find the differential methylation sites or the sites that related with the phenotype who are in the lincRNA etc.
1 2 3 4 5 | dms(data,contin=c("ON","OFF"),classes=c("lincRNA","gene","processed_transcript",
"pseudogene"),testmethod = c("wilcox","limma", "t.test", "satterthwaite"), Padj =
c("holm", "hochberg", "hommel", "bonferroni", "BH", "BY", "fdr", "none"), gcase =
"case", gcontrol = "control", paired = FALSE,rawpcut = 0.05, adjustpcut = 0.05,
betadiffcut = 0.3,XY=c(FALSE,"X","Y",c("X","Y")),tlog=FALSE,num)
|
data |
The objects of class LincMethy450 which return from |
classes |
Whose CoG sites will be calculated |
contin |
If phenotype is continuous,contin is 'ON',and use linear regression to find the sites that related with the phenotype. |
testmethod |
The method to do the test to find dms while contin is 'OFF' which means phenotype is discontinuous. |
Padj |
The method of multiple testing adjustment to adjust P value. |
gcase |
The name of case group while contin is 'OFF'. |
gcontrol |
The name of case group while contin is 'OFF'. |
paired |
Whether compare in pairs while do t.test. |
rawpcut |
The threshold for cutting raw P value. |
adjustpcut |
The threshold for cutting adjust P value. |
betadiffcut |
The minimum differential between two groups' means while contin is 'OFF'. |
num |
The number of sites,elements or regions to plot. |
XY |
The chromosomes that where CpG sites were filtered. |
tlog |
Whether do the log transform for the P values. |
dms is designed to find differential methylation sites or the CpG sites that related with the continuous phenotype. If contin is 'ON', which means the phenotype is continuous, and linear regression will be used. If the phenotype isn't continuous, test such as t test will be used.
dms will return two txt files that one contains the sites whose P value less than rawpcut, adjust P less than adjustpcut and the differ of the means of two groups more than betadiffer while another is the beta matrix of dms. There are box plot for most significative sites,heat map and Manhattan of all significative sites.
Hui Zhizhihui013201@gmail.com,Yanxun Suhmu_yanxunsu@163.com,Xin Lilixin920126@163.com
1 2 3 4 5 6 7 8 9 | Dir <- system.file("extdata/localdata",package="LncDM")
dir.create(paste(Dir,"/dms",sep=""))
###user can set the dir of their own
setwd(paste(Dir,"/dms",sep=""))
###load the result of loaddata()
load(paste(Dir,"/loadData.Rdata",sep=""))
dms(data=loadData,contin="OFF",classes="lincRNA",testmethod = "t.test", Padj = "fdr",
gcase = "case", gcontrol = "control", paired = FALSE,rawpcut = 0.05, adjustpcut = 0.05,
betadiffcut = 0.3,XY=c(FALSE,"X","Y"),tlog=FALSE,num=1)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.