findHighestSD {beadarray}R Documentation

Highest standard deviation.

Description

Function for finding which bead types on a particular array have the standard deviation of their intensities greater than some limit.

Usage

findHighestSD(BLData, array, limit = 1)

Arguments

BLData BeadLevelList object containing bead level data
array numeric value for the array that we want to use
limit threshold value for the standard deviation of beads

Details

The standard deviation for bead intensities of each bead type is calculated in turn and if this value exceeds the defined limit then we add the ProbeID of the bead type to a list which we return.

The standard deviation that we calculate is based on the log2 bead intensities.

Value

numeric vector giving the ProbeIDs which were calculated to have standard deviation greater than 'limit'.

Author(s)

Mark Dunning

Examples


data(BLData)

##Default is to find bead types with standard deviation of intensity > 1

findHighestSD(BLData, 1)

##limit can be changed eg. to give ProbeIDs with standard deviation > 0.7

findHighestSD(BLData, 1, limit=0.7)

##Any ProbeIDs can be examined in more detail

plotBeadIntensities(BLData, 678,1)

probeDiagnostics(BLData, 678, 1)


[Package beadarray version 1.0.0 Index]