Contains methods for reading and displaying contents of the
bcftools_stats.txt
file (QUAL section) output from running bcftools stats
.
Super class
dracarys::File
-> BcftoolsStatsFile
Methods
Method read()
Reads the QUAL section from the bcftools_stats.txt
file.
Method write()
Writes a tidy version of the bcftools_stats.txt
(only QUAL section)
file output from TSO.
Examples
if (FALSE) { # \dontrun{
x <- "/path/to/bcftools_stats.txt"
d <- BcftoolsStatsFile$new(x)
d_parsed <- d$read()
d$write(d_parsed, out_dir = tempdir(), prefix = "sample123", out_format = "tsv")
} # }