Installation
We recommend installing the package directly from GitHub (requires devtools
dependency).
if (!require("devtools")) install.packages("devtools")
::install_github(
devtools"morinlab/GAMBLR.viz",
repos = BiocManager::repositories()
)
You can confirm successful installation by running one of the most popular functions:
library(GAMBLR.data)
<- get_gambl_metadata(seq_type_filter = "genome") %>%
maf_metadata ::filter(pathology %in% c("FL", "DLBCL"))
dplyr
<- get_ssm_by_samples(
maf_data these_samples_metadata = maf_metadata
)
#define some genes of interest
= c("RRAGC", "CREBBP", "VMA21", "ATP6V1B2")
fl_genes = c("EZH2", "KMT2D", "MEF2B", "CD79B", "MYD88", "TP53")
dlbcl_genes = c(fl_genes, dlbcl_genes)
genes
prettyOncoplot(
maf_df = maf_data,
genes = genes,
these_samples_metadata = maf_metadata
)
There is a lot of functionality to hand-craft this plot exactly in the way you want. Interested? Read more in the tutorials section.