Replies: 1 comment 1 reply
-
Hi, maftools::oncoplot(maf = maf.filef, genes = c("POLQ", "ATR", "BRCA1", "ERCC2")) |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi,
I am trying to create an oncoplot of genes that are mutated within a pathway I defined. The code is working great but does anyone know how to remove the bottom grey row of the oncoplot that shows the distribution of the pathway?
`#Define the pathway
GI_R_pathways = data.frame(
Genes = c(
"ATM",
"BRCA2",
"ATR",
"BRCA1",
"CHEK2",
"ERCC2",
"MSH6",
"POLQ",
"STAG2",
"PPM1D",
"SMC1A"
),
Pathway = rep(c(
"Genome_integrity"
), c(11)),
stringsAsFactors = FALSE
)
oncoplot(maf = maf.filef, pathways = GI_R_pathways)`
Beta Was this translation helpful? Give feedback.
All reactions