get_het_pos: Filter Peaks from K-mer Histogram

View source: R/utils.R

get_het_posR 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)


findGSEP documentation built on May 29, 2024, 3:35 a.m.