Description Usage Arguments Value Author(s) Examples
Correlation between mutation and expression
1 2 3 4 5 6 | tcgaMutationExpr(
cancer,
genes,
location = NULL,
isLocalPath = global_env$isLocalPath
)
|
cancer |
The type of TCGA cancer, such as CHOL |
gene |
gene symbol, such as ARID1A |
a data frame
YangWang 1749748955@qq.com
1 2 3 4 5 6 7 8 | plot_data <- tcgaMutationExpr(cancer="CHOL",gene="ARID1A")
boxplot(expr~mutation,data =plot_data,col=c("red","blue"),main="ARID1A")
plot_data <- tcgaMutationExpr(cancer="CHOL",gene=c("ARID1A","PTEN"))
lapply(plot_data,function(x){
dev.new()
boxplot(expr~mutation,data =x$expr,col=c("red","blue"),main=x$gene)
})
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.