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