get_het_pos | R Documentation |
This function filters peaks from a k-mer histogram to find a major peak with enough support information on both sides.
get_het_pos(histo_data)
histo_data |
A data frame representing the k-mer histogram. |
A data frame with filtered peaks.
x <- seq(-10, 10, length.out = 100)
y <- dnorm(x)
histo_data <- data.frame(V1 = 1:100, V2 = y * 10)
get_het_pos(histo_data)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.