Nothing
#' Enrichment of known oncogenic pathways
#' @description Checks for enrichment of known oncogenic pathways
#' @references Sanchez-Vega F, Mina M, Armenia J, Chatila WK, Luna A, La KC, Dimitriadoy S, Liu DL, Kantheti HS, Saghafinia S et al. 2018. Oncogenic Signaling Pathways in The Cancer Genome Atlas. Cell 173: 321-337 e310
#'
#' @details
#' Oncogenic signalling pathways are derived from TCGA cohorts. See reference for details.
#' @param maf an \code{\link{MAF}} object generated by \code{\link{read.maf}}
#' @param pathways Can be a two column data.frame/tsv-file with pathway-name and genes involved in them. Default `NULL`, uses a predefined list of pathways. See reference for details.
#' @param fontSize Default 1
#' @param panelWidths Default c(2, 4, 4)
#' @return Prints fraction of altered pathway
#' @seealso \code{\link{PlotOncogenicPathways}}
#' @export
#' @examples
#' laml.maf <- system.file("extdata", "tcga_laml.maf.gz", package = "maftools")
#' laml <- read.maf(maf = laml.maf)
#' OncogenicPathways(maf = laml)
OncogenicPathways = function(maf, pathways = NULL, fontSize = 1, panelWidths = c(2, 4, 4)){
if(is.null(pathways)){
pathdb <- system.file("extdata", "oncogenic_sig_patwhays.tsv", package = "maftools")
pathdb = data.table::fread(input = pathdb)
}else{
pathdb = data.table::copy(x = pathways)
colnames(pathdb) = c("Gene", "Pathway")
data.table::setDT(x = pathdb)
}
pathdb_size = pathdb[,.N,Pathway]
pathdb = split(pathdb, as.factor(pathdb$Pathway))
altered_pws = lapply(pathdb, function(pw){
x = suppressMessages(try(genesToBarcodes(maf = maf, genes = pw$Gene)))
if(class(x) == "try-error"){
pw_genes = NULL
}else{
pw_genes = names(genesToBarcodes(maf = maf, genes = pw$Gene, justNames = TRUE, verbose = FALSE))
}
pw_genes
})
mut_load = lapply(altered_pws, function(x){
if(is.null(x)){
nsamps = 0
}else{
nsamps = length(unique(as.character(unlist(
genesToBarcodes(
maf = maf,
genes = x,
justNames = TRUE
)
))))
}
nsamps
})
altered_pws = as.data.frame(t(data.frame(lapply(altered_pws, length))))
data.table::setDT(x = altered_pws, keep.rownames = TRUE)
colnames(altered_pws) = c("Pathway", "n_affected_genes")
altered_pws$Pathway = gsub(pattern = "\\.", replacement = "-", x = altered_pws$Pathway)
altered_pws = merge(pathdb_size, altered_pws, all.x = TRUE)
altered_pws[, fraction_affected := n_affected_genes/N]
altered_pws$Mutated_samples = unlist(mut_load)
nsamps = as.numeric(maf@summary[ID == "Samples", summary])
altered_pws[,Fraction_mutated_samples := Mutated_samples/nsamps]
altered_pws = altered_pws[order(n_affected_genes, fraction_affected, decreasing = FALSE)]
altered_pws = altered_pws[!n_affected_genes %in% 0]
if(nrow(altered_pws) == 0){
stop("None of the provided pathways are altered!")
}
lo = layout(mat = matrix(c(1, 2, 3), ncol = 3, nrow = 1), widths = panelWidths)
par(mar = c(2, 2, 2, 0))
plot(NA, xlim = c(0, 1), ylim = c(0, nrow(altered_pws)), axes = FALSE)
text(x = 1, y = seq(0.5, nrow(altered_pws), by = 1), labels = altered_pws$Pathway, adj = 1, xpd = TRUE, cex = fontSize)
title(main = "Pathway", adj = 0)
par(mar = c(2, 0, 2, 1), xpd = TRUE)
plot(NA, xlim = c(0, 1.2), ylim = c(0, nrow(altered_pws)), axes = FALSE)
rect(xleft = 0, ybottom = seq(0.1, nrow(altered_pws), by = 1), xright = 1, ytop = seq(0.2, nrow(altered_pws), by = 1)+0.7, col = '#ecf0f1', border = "white")
rect(xleft = 0, ybottom = seq(0.1, nrow(altered_pws), by = 1), xright = altered_pws$fraction_affected, ytop = seq(0.2, nrow(altered_pws), by = 1)+0.7, col = "#c0392b", border = "white")
text(x = 1.05, y = seq(0.5, nrow(altered_pws), by = 1), labels = paste0(altered_pws$n_affected_genes, "/", altered_pws$N), adj = 0, cex = fontSize)
axis(side = 1, at = seq(0, 1, 0.25), line = -1, cex.axis = fontSize)
title(main = "Fraction of pathway affected", adj = 0)
par(mar = c(2, 0, 2, 1), xpd = TRUE)
plot(NA, xlim = c(0, 1.2), ylim = c(0, nrow(altered_pws)), axes = FALSE)
rect(xleft = 0, ybottom = seq(0.1, nrow(altered_pws), by = 1), xright = 1, ytop = seq(0.2, nrow(altered_pws), by = 1)+0.7, col = '#ecf0f1', border = "white")
rect(xleft = 0, ybottom = seq(0.1, nrow(altered_pws), by = 1), xright = altered_pws$Fraction_mutated_samples, ytop = seq(0.2, nrow(altered_pws), by = 1)+0.7, col = "#c0392b", border = "white")
text(x = 1.05, y = seq(0.5, nrow(altered_pws), by = 1), labels = paste0(altered_pws$Mutated_samples, "/", nsamps), adj = 0, cex = fontSize)
axis(side = 1, at = seq(0, 1, 0.25), line = -1, cex.axis = fontSize)
title(main = "Fraction of samples affected")
altered_pws
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.