View source: R/parse_Battenberg.R
parse_Battenberg | R Documentation |
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)
x |
The input dataframe, required to have the following columns: |
Two tibbles in CNAqc-ready format.
## Not run:
# 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, ...)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.