Entering edit mode
Yisong Zhen
▴
200
@yisong-zhen-2952
Last seen 7.4 years ago
Dear All,
I use the following code to generate HTML report on deferential
expression
genes after LIMMA analysis. The code is from Bioinformatics
and Computational Biology Solutions Using R and Bioconductor. Now, I
want to
add a column in the final output, which includes the gene accession
number
of reference sequence, for example, NM_008725 besides gene entrez ID
and
gene name. In this way, I could match probe ID to their corresponding
accession number.
But how can I write a code to implement it?
Thanks in advance.
YiSong
PS.
library("annotate");
library("mouse4302.db");
totalGeneNumber<-dim(exprs(rma.data))[1];
iso_control<-topTable(fit2,coef=1,adjust.method="BH",number=totalGeneN
umber);
genenames = as.character(iso_control$ID);
sym<-getSYMBOL(genenames,"mouse4302");
ll<-getEG(genenames,"mouse4302");
iso_control=data.frame(sym,signif(iso_control[,-1],3));
htmlpage(list(ll),othernames=iso_control,filename="iso_control.html",t
itle="HTML
report", table.center=TRUE, table.head=c("ENTREZ ID",
colnames(iso_control)));
[[alternative HTML version deleted]]