Contains methods for reading and displaying contents of the
pcgr.snvs_indels.tiers.tsv
file output from PCGR.
Super class
dracarys::File
-> PcgrTiersFile
Methods
Method read()
Reads the pcgr.snvs_indels.tiers.tsv
file output from PCGR.
Method write()
Writes a tidy version of the pcgr.snvs_indels.tiers.tsv
file output from PCGR.
Examples
if (FALSE) { # \dontrun{
x <- "/path/to/pcgr.snvs_indels.tiers.tsv"
d <- PcgrTiersFile$new(x)
d_parsed <- d$read() # or read(d)
d$write(d_parsed, out_dir = tempdir(), prefix = "sample705", out_format = "both")
} # }