R/AffyRegress.R

Defines functions AffyRegress

Documented in AffyRegress

AffyRegress<-function(normal.data, cov, compare1, compare2, method, 
    int=NULL, level=NULL, adj="none", p.value=0.05, m.value=0, 
	filename="result")
{    
    cdf.name<-annotation(normal.data)
    target<-pData(normal.data)
    design<-make.design(target, cov, int)
    contrast<-make.contrast(design, compare1, compare2, level)
    result<-regress(normal.data, design, contrast, method, adj=adj)
    select<-select.sig.gene(result, p.value=p.value, m.value=m.value)
    result2html(cdf.name, select, filename)
    select
}

Try the AffyExpress package in your browser

Any scripts or data that you put into this service are public.

AffyExpress documentation built on Nov. 8, 2020, 7:50 p.m.