initial_count_recover_raw {findGSEP} | R Documentation |
Recover Initial Raw K-mer Count
Description
This function recovers the initial raw k-mer count, making the k-mer frequency consecutive.
Usage
initial_count_recover_raw(d0)
Arguments
d0 |
A data frame representing the initial raw k-mer count from software like Jellyfish. |
Value
A data frame with recovered raw k-mer counts.
Examples
d0 <- data.frame(V1 = c(1, 2, 4), V2 = c(100, 200, 300))
dr <- initial_count_recover_raw(d0)
[Package findGSEP version 1.2.0 Index]