Description Usage Arguments Value Author(s) Examples
After getElist and make a DesignList.
1 2 3 4 5 6 7 | AddDesignList(eset,
factor,
levels,
control.probes,
array.annotation,
NA.method = c("one","all")[1],
normalizeBetweenArrays=F)
|
factor |
a group defined vector. |
levels |
the levels of factor.Note that Control should be placed last. |
control.probes |
a list of control probe information including control.col and control.symbol |
array.annotation |
array annotation information including probeid.col,symbol.cols,anno.cols,sequence.col and db.anno. |
NA.method |
one of "one" and "all".one means the row should be deleted just as one NA value exists,and all means the row should be deleted only when all elements were NA value.Default is "one". |
DesignList Object
Weibin Huang
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | ## parameters
factor = ifelse(pdata$pnstage == "N0","N0","Np")
levels = c("Np","N0") # factor的level
control.probes = list(
l1=list(control.col="Probe_Type",control.symbol = c("A","I")),
l1=list(control.col="Source",control.symbol = "ILMN_Controls"))
array.annotation = list(
probeid.col="ID",
symbol.cols=c("Symbol","Unigene_ID","Entrez_Gene_ID"),
anno.cols=c("SYMBOL","UNIGENE","ENTREZID"),
sequence.col = "SEQUENCE",
db.anno=common.annot)
## Running
AddDesignList(eset,
factor,
levels,
control.probes,
array.annotation,
NA.method = c("one","all")[1],
normalizeBetweenArrays=F)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.