View source: R/findGSE_v1.95_new.R
filter_peaks_raw | R Documentation |
This function filters peaks from a raw k-mer histogram to find a major peak with enough support information on both sides.
filter_peaks_raw(peaks, histo)
peaks |
A data frame containing the peaks from the histogram. |
histo |
A data frame representing the raw k-mer histogram. |
A data frame with filtered peaks.
peaks <- data.frame(V1=1:20, V2=sample(1:10, 20, replace=TRUE))
histo <- data.frame(V1=1:100, V2=sample(1:10, 100, replace=TRUE))
filtered_peaks <- filter_peaks_raw(peaks, histo)
print(filtered_peaks)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.