R/arrayReport.R

Defines functions QCReport

Documented in QCReport

##  arrayReport.R
##  09-Jun-2005
##
##  Craig Parman craig.parman@bifix.org
##  Conrad Halling conrad.halling@bifx.org

QCReport <-
function(
    object,
    file    = "AffyQCReport.pdf",
    ... )
{
    pdf(
        file    = file,
        width   = 8,
        height  = 11,
        onefile = TRUE )
    plot.window(
        c( 1, 1 ),
        c( 0, 1 ) )
    plot.new()
    titlePage( object )
    signalDist( object )
    plot( qc( object ) )
    borderQC1( object )
    borderQC2( object )
    correlationPlot( object )
    dev.off()
    return( TRUE )
}

Try the affyQCReport package in your browser

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

affyQCReport documentation built on Nov. 8, 2020, 5:40 p.m.