Unlimited learning, half price | 50% off

Last chance! 50% off unlimited learning

Sale ends in


Fragman (version 1.0.1)

separate: Separating peaks by a shift window

Description

This function takes a list with positions, heights and weights called "g" and using a shift in base pairs determines when 2 neighboring peaks should be considered only one by getting the tallest peak. For example two peaks found at 173 and 173.5 base pairs are unlikely to be 2 different peaks, therefore only the tallest peak will pe chosen.

Usage

separate(g, shift=1, type="bp")

Arguments

g
List with 3 elements; the information of positions, heights and weights for an individual in certain channel
shift
The number of base pairs to be used for discarding neighboring peaks to the tallest peaks, i.e. if 2 peaks are 0.3 bp together the smalles will be discarded
type
A word indicating if the shift to be used should be used in base pairs or in index. The use is "bp" or "ind"

Value

  • If arguments are correct the function returns a new list containing [object Object],[object Object],[object Object]

Details

No major details.

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

Run this code
data(my.plants)
x <- big.peaks.col(my.plants[[1]][,1],100)#for any color
#separate(x, shift=1, type="bp") #still needs weight information

Run the code above in your browser using DataLab