borders: Get border intensity values from an AffyBatch object

Description Usage Arguments Details Value See Also Examples

Description

Get border intensity values from an AffyBatch object

Usage

1
borders(x.batch)

Arguments

x.batch

An AffyBatch object.

Details

The borders of Affy arrays form a plus/minus checkerboard; this function returns their intensities.

Value

A list of lists:

plus

A list of four vectors, containing the bottom, left, top, and right “plus” values.

minus

A list of four vectors, containing the bottom, left, top, and right “minus” values.

See Also

The package affyQCReport.

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
  

  library(affydata)
  data(Dilution)
  
  bord <- borders(Dilution)

  bord.all <- sapply(bord, unlist)

  plotDensity(log2(bord.all),
    xlab = 'log2 intensity',
    main = 'Array border intensity distribution')
  legend('topright', legend = sampleNames(Dilution),
    lty = 1:4, col = 1:4)

aroneklund/bias documentation built on May 10, 2019, 1:46 p.m.