FastQC-viz: Module content to tibble
Source:R/module_content_to_tibble.R
module_content_to_tibble.Rd
After reading the fastqc_data.txt file, and separating the modules, the content of each module is still a character vector. This function converts it to a tibble.
Examples
lines <- readLines(system.file("extdata", "SRR622457_2_fastqc.txt", package = "fastqcviz"))
modules <- separate_modules(lines)
modules <- module_content_to_tibble(modules)