get_het_pos {findGSEP}R Documentation

Filter Peaks from K-mer Histogram

Description

This function filters peaks from a k-mer histogram to find a major peak with enough support information on both sides.

Usage

get_het_pos(histo_data)

Arguments

histo_data

A data frame representing the k-mer histogram.

Value

A data frame with filtered peaks.

Examples


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)


[Package findGSEP version 1.2.0 Index]