Returns two tibbles in CNAqc-ready format, one with clonal calls and the other with subclonal calls extracted by parsing the Battenberg format. This function can be used to process raw date released by PCAWG.
parse_Battenberg(x)
Two tibbles in CNAqc-ready format.
if (FALSE) { # \dontrun{
# Load some CSV results from Battenberg
x = read.csv(....) %>% parse_Battenberg()
# Work with clonal calls (omitting mutations and other parameters here)
x = init(cna = x$clonal, ...)
# work with subclonal calls (omitting mutations and other parameters here)
x = analyze_peaks_subclonal(cna = x$subclonal, ...)
} # }