Skip to contents

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.

Usage

module_content_to_tibble(modules)

Arguments

modules

list, output of separate_modules()

Value

list, same as input but with content converted to tibble

Examples

lines <- readLines(system.file("extdata", "SRR622457_2_fastqc.txt", package = "fastqcviz"))
modules <- separate_modules(lines)
modules <- module_content_to_tibble(modules)