Description Usage Arguments Author(s) Examples
output differentially expressed genes to a HTML file based on a result table from the select.sig.gene function. It contais the following columns: Probe, Symbol, Description, GenBank, LocusLink, Log2ratio, and p value.
1 | result2html(cdf.name, result, filename="result")
|
cdf.name |
cdf name which can be obtained from the annotation function |
result |
a data frame returned from the gene.select function |
filename |
a file name for the output |
Xiwei Wu xwu@coh.org, Xuejun Arthur Li xueli@coh.org
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | data(testData)
normaldata<-pre.process("rma",testData)
## Create design matrix
design<-make.design(pData(normaldata), "group")
## Create contrast matrix - Compare group "A" vs. "C"
contrast<-make.contrast(design, "A", "C")
## Identify differentially expressed gene by using LIMMA method
result<-regress(normaldata, design, contrast, "L")
## Select differentially expressed gene based on p <0.05 and
## fold change >=log2(1.5)
select<-select.sig.gene(result, p.value=0.05, m.value=log2(1.5))
## Output differentially expressed gene to a example.html
result2html(annotation(normaldata), select, "example")
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.