Title: | Structural Model for Variances |
---|---|
Description: | Implementation of the structural model for variances in order to detect differentially expressed genes from gene expression data. |
Authors: | Guillemette Marot [aut, cre] |
Maintainer: | Samuel Blanck <[email protected]> |
License: | GPL |
Version: | 1.3.4 |
Built: | 2025-03-01 05:51:36 UTC |
Source: | https://github.com/cran/SMVar |
Package containing moderated t-tests to detect differentially expressed genes for paired and unpaired data
Package: | SMVar |
Type: | Package |
Version: | 1.3.3 |
Date: | 2011-08-03 |
License: | GPL |
SMVar.unpaired and SMVar.paired are the most important functions.
Guillemette Marot <[email protected]>
F. Jaffrezic, Marot, G., Degrelle, S., Hue, I. and Foulley, J. L. (2007) A structural mixed model for variances in differential gene expression studies. Genetical Research (89) 19:25
library(SMVar) data(ApoAIdata) attach(ApoAIdata) SMVar.unpaired(ApoAIGeneId,list(ApoAICond1,ApoAICond2))
library(SMVar) data(ApoAIdata) attach(ApoAIdata) SMVar.unpaired(ApoAIGeneId,list(ApoAICond1,ApoAICond2))
Example dataset for unpaired data
data(ApoAIdata)
data(ApoAIdata)
ApoAIdata is a list with 3 elements
vector of fictive gene names)
matrix with 6226 rows and 8 columns with normalized normal mice measurements
matrix with 6226 rows and 8 columns with normalized KO mice measurements
Similar to the example dataset used in the package Varmixt
M.J. Callow, S. Dudoit, E.L. Gong, T.P. Speed, and E.M. Rubin. Microarray expression profiling identifies genes with altered expression in hdl-deficien mice. Genome Res., 10(12) : 2022-9, 2000
data(ApoAIdata) attach(ApoAIdata)
data(ApoAIdata) attach(ApoAIdata)
Function to detect differentially expressed genes when data are paired
SMVar.paired(geneNumbers, logratio, fileexport = NULL, minrep = 2, method = "BH", threshold = 0.05)
SMVar.paired(geneNumbers, logratio, fileexport = NULL, minrep = 2, method = "BH", threshold = 0.05)
geneNumbers |
Vector with gene names or dataframe which contains all information about spots on the chip |
logratio |
matrix with one row by gene and one column by replicate giving the logratio |
fileexport |
file to export the list of differentially expressed genes |
minrep |
minimum number of replicates to take a gene into account, |
method |
method of multiple tests adjustment for p.values |
threshold |
threshold of False Discovery Rate |
This function implements the structural model for variances described in (Jaffrezic et al., 2007).
Data must be normalized before calling the function. Matrix geneNumbers
must have one of
the following formats: "matrix","data.frame","vector","character","numeric","integer".
Only the number of differentially expressed genes is printed. If asked, the file giving the list of differentially expressed genes is created
If the user creates an object when calling the function (for example "Stat=SMVar.paired(...)") then Stat contains the information for all genes, is sorted by ascending p-values and
Stat$TestStat |
gives the test statistics as described in the paper |
Stat$StudentPValue |
gives the raw p-values |
Stat$DegOfFreedom |
gives the number of degrees of freedom for the Student distribution for the test statistics |
Stat$LogRatio |
gives the logratios |
Stat$AdjPValue |
gives the adjusted p-values |
If the first column of the file geneNumbers contains identical names for two different spots, these two spots are only counted once if they are both differentially expressed. By default, the correction for multiple testing is Benjamini Hochberg with a threshold of False Discovery Rate (FDR) of 5%. The FDR threshold can be changed, and it is also possible to choose the multiple test correction method ("holm", "hochberg", "hommel", "bonferroni", "BH", "BY", "fdr", "none"). To see the references for these methods, use the R-help ?p.adjust.
Guillemette Marot with contributions from Anne de la Foye
F. Jaffrezic, Marot, G., Degrelle, S., Hue, I. and Foulley, J. L. (2007) A structural mixed model for variances in differential gene expression studies. Genetical Research (89) 19:25
library(SMVar) data(Spleendata) attach(Spleendata) SMVar.paired(SpleenGeneId,SpleenLogRatio)
library(SMVar) data(Spleendata) attach(Spleendata) SMVar.paired(SpleenGeneId,SpleenLogRatio)
Function to detect differentially expressed genes when data are unpaired
SMVar.unpaired(geneNumbers, listcond, fileexport = NULL, minrep = 2, method = "BH", threshold = 0.05)
SMVar.unpaired(geneNumbers, listcond, fileexport = NULL, minrep = 2, method = "BH", threshold = 0.05)
geneNumbers |
Vector with gene names or dataframe which contains all information about spots on the chip |
listcond |
list of the different conditions to be compared |
fileexport |
file to export the list of differentially expressed genes |
minrep |
minimum number of replicates to take a gene into account, |
method |
method of multiple tests adjustment for p.values |
threshold |
threshold of False Discovery Rate |
This function implements the structural model for variances described in (Jaffrezic et al., 2007).
Data must be normalized before calling the function. Matrix geneNumbers
must have one of
the following formats: "matrix","data.frame","vector","character","numeric","integer".
Only the number of differentially expressed genes is printed. If asked, the file giving the list of differentially expressed genes is created.
If the user creates an object when calling the function (for example "Stat=SMVar.paired(...)") then Stat contains the information for all genes, is sorted by ascending p-values and
Stat$TestStat |
gives the test statistics as described in the paper |
Stat$StudentPValue |
gives the raw p-values |
Stat$DegOfFreedom |
gives the number of degrees of freedom for the Student distribution for the test statistics |
Stat$Cond1 |
gives the first condition considered in the log-ratio |
Stat$Cond2 |
gives the second condition considered in the log-ratio |
Stat$LogRatio |
gives the logratios (listcond[[Cond2]]-listcond[[Cond1]]) |
Stat$AdjPValue |
gives the adjusted p-values |
If the first column of the file geneNumbers contains identical names for two different spots, these two spots are only counted once if they are both differentially expressed. By default, the correction for multiple testing is Benjamini Hochberg with a threshold of False Discovery Rate (FDR) of 5%. The FDR threshold can be changed, and it is also possible to choose the multiple test correction method ("holm", "hochberg", "hommel", "bonferroni", "BH", "BY", "fdr", "none"). To see the references for these methods, use the R-help ?p.adjust.
Guillemette Marot with contributions from Anne de la Foye
F. Jaffrezic, Marot, G., Degrelle, S., Hue, I. and Foulley, J. L. (2007) A structural mixed model for variances in differential gene expression studies. Genetical Research (89) 19:25
library(SMVar) data(ApoAIdata) attach(ApoAIdata) SMVar.unpaired(ApoAIGeneId,list(ApoAICond1,ApoAICond2))
library(SMVar) data(ApoAIdata) attach(ApoAIdata) SMVar.unpaired(ApoAIGeneId,list(ApoAICond1,ApoAICond2))
Example dataset for paired data
data(Spleendata)
data(Spleendata)
Spleendata is a list with 2 elements
Gene names)
Matrix with 4360 rows and 6 columns with normalized log-ratio
Similar to the example dataset used in the package Varmixt
P. Delmar, Robin, S., Tronik-Le Roux S. and Daudin J.-J. (2005) Mixture model on the variance for the differential analysis of gene expression data, JRSS series C, 54(1), 31:50
data(Spleendata) attach(Spleendata)
data(Spleendata) attach(Spleendata)