cormotiffitsep | R Documentation |
This function fits a mixture modified t-distribution model to each study seperately.
cormotiffitsep(exprs,groupid,compid, tol=1e-3, max.iter=100)
exprs |
a matrix, the expression data after normalization that is on log2 scale, each row of the matrix corresponds to a gene and each column of the matrix corresponds to a sample array. |
groupid |
the group label for each sample array, two arrays in the same study with same experinment condition |
compid |
the study design and comparison matrix, each row of the matrix corresponds to one study with the first column being the first experinment condition and the second column being the second experinment condition |
tol |
the relative tolerance level of error. |
max.iter |
maximun number of iterations. |
p.post |
the posterior probability for each gene to be differentially expressed. |
motif.prior |
fitted values of the probability for genes to be differentially expressed in each study, a |
loglike |
log-likelihood of the fitted model. |
Hongkai Ji, Yingying Wei
Ji, H., Wei, Y.,(2011) Correlation Motif. Unpublished
data(simudata2)
n<-nrow(simudata2)
m<-ncol(simudata2)
#the expression data is from the second column to m
exprs.simu2<-as.matrix(simudata2[,2:m])
#prepare the group ID number for each sample array
data(simu2_groupid)
#prepare the design matrix for each group of samples
data(simu2_compgroup)
#fit seperate models to each study
motif.fitted.sep<-cormotiffitsep(exprs.simu2, simu2_groupid,simu2_compgroup)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.