The procedure for constructing decomposable Gaussian Graph from microarry data:
• Pre-process affymetrix microarray data using BioConductor
Use BioConductor to pre-process the affymetrix microarray data.
R
library("hgu133plus2cdf",lib.loc="/data/BioConductor/")Because the hgu133plus2cdf is not defaultly installed when install BioConductor, I install hgu133plus2cdf by hand. First download hgu133plus2cdf_1.43.tar.gz from website http://bioconductor.org/data/cdfenvs/repos/html/, store it in one directory. Go to this directory, use the following command to install the cdf library. "/data/BioConductor" is the directory where BioConductor is installed.
R CMD INSTALL -l "/data/BioConductor" "hgu133plus2cdf_1.4.3.tar.gz"
library(affy)
senescent<-ReadAffy()
eset<-justRMA()
write.exprs(eset,file="mydata.txt")
• Select gene expression for sub gene list
Select gene expression by given gene IDs (the outfile of justRMA in BioConductor consists of gene IDs).
• Center the data to Standard Normal
Center the data to N(0,1), compg:~/GaussianModels/MH-d/pre_process_data/StandardNormalized.cpp
• Construct Gaussian Graphical models
if((k>2000000)&&(k%1000==0)){output graphs}
make metropolis
./metropolis < infile > Young_networks.txt &
Last modified:
9 June, 2006