| Title: | Easily access TCGA gistic data |
|---|---|
| Description: | Streams TCGA GISTIC2 copynumber data into the R session. |
| Authors: | Sam El-Kamand [aut, cre] (ORCID: <https://orcid.org/0000-0003-2270-8088>) |
| Maintainer: | Sam El-Kamand <[email protected]> |
| License: | MIT + file LICENSE |
| Version: | 0.0.0.9000 |
| Built: | 2026-05-20 09:36:10 UTC |
| Source: | https://github.com/CCICB/TCGAgistic |
List Available Datasets
tcga_gistic_available()tcga_gistic_available()
a dataframe listing available datasets
tcga_gistic_available()tcga_gistic_available()
Load TCGA GISTIC objects into R. Streams data from TCGAgisticDB repo.
tcga_gistic_load( cohort, source = "Firehose", cnLevel = c("all", "deep", "shallow"), verbose = TRUE )tcga_gistic_load( cohort, source = "Firehose", cnLevel = c("all", "deep", "shallow"), verbose = TRUE )
cohort |
abbreviation of TCGA cohort See |
source |
source of the data (currently we only support 'Firehose' data (string) |
cnLevel |
level of CN changes to use. Can be 'all', 'deep' or 'shallow'. Default uses all i.e, genes with both 'shallow' or 'deep' CN changes |
verbose |
verbosity (flag) |
A maftools & CRUX-compatible list of summarized data.
# Load libraries library(TCGAgistic) library(maftools) # Load dataset gistic <- tcga_gistic_load("ACC", source = "Firehose", cnLevel = "all") # Visualise results gisticChromPlot(gistic)# Load libraries library(TCGAgistic) library(maftools) # Load dataset gistic <- tcga_gistic_load("ACC", source = "Firehose", cnLevel = "all") # Visualise results gisticChromPlot(gistic)