Last active
September 1, 2020 20:58
-
-
Save lwaldron/16147c28ad669c4fec6cd185a3f578d8 to your computer and use it in GitHub Desktop.
Quick test for download/construction time of gbm_tcga IMPACT341 panel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# docker run -it bioconductor/bioconductor_docker:latest R | |
BiocManager::install("cBioPortalData") | |
library(cBioPortalData) | |
cBio <- cBioPortal() | |
system.time(gbm <- cBioPortalData(cBio, studyId = "gbm_tcga", genePanelId = "IMPACT341")) | |
gbm | |
# again | |
system.time(gbm <- cBioPortalData(cBio, studyId = "gbm_tcga", genePanelId = "IMPACT341")) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment