saturate: Checking and correcting saturated peaks

Description Usage Arguments Details Value References Examples

Description

This function takes a vector of intensities and looks for peaks above 8000 RFUs and correct for possible splits at the top of the peaks by inverting the vally between splitted peaks and correcting the peak.

Usage

1

Arguments

y

a vector containing the DNA intensities for the capillary electrophoresis.

Details

No major details.

Value

If arguments are correctly specified the function returns:

$y

A new vector of DNA intensities adjusted for saturated peaks over 8000 RFUs.

References

Robert J. Henry. 2013. Molecular Markers in Plants. Wiley-Blackwell. ISBN 978-0-470-95951-0.

Ben Hui Liu. 1998. Statistical Genomics. CRC Press LLC. ISBN 0-8493-3166-8.

Examples

1
2
3
4
5
6
data(my.plants)
y <- my.plants[[1]][,3]
layout(matrix(1:2,2,1))
plot(y, type="l", xlim=c(2750,2850))
y2 <- saturate(y=y)
plot(y2, type="l", xlim=c(2750,2850))

Fragman documentation built on May 2, 2019, 8:26 a.m.