Description Usage Arguments Note Examples
use curatedTCGAData and Brennan metadata to build an annotated GBM MAE
1 | build_gbm_se(cache = BiocFileCache::BiocFileCache())
|
cache |
if not NULL, location of BiocFileCache instance |
Will cache the created SummarizedExperiment instance unless told not to. 'rname' is '"brenn_gbm_se"'.
1 2 3 4 5 6 7 8 9 10 11 | gbmse = build_gbm_se()
# check effect of MGMT methylation on survival
xm = gbmse[, gbmse$mgmt_status !="" & gbmse$vital_status !=""]
library(survival)
ss = Surv(xm$os_days, 1*(xm$vital_status=="DECEASED"))
plot(survfit(ss~xm$mgmt_status), lty=1:2)
legend(1100, .95, lty=c(1,2), legend=c("MGMT methylated", "unmethylated"))
title("Time-on-study/vital status for 123 GBM patients analyzed in Brennan et al. PMID 24120142")
survdiff(ss~xm$mgmt_status)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.