Title: | Easily access TCGA gistic data |
---|---|
Description: | Streams TCGA GISTIC2 copynumber data into the R session. |
Authors: | Sam El-Kamand [aut, cre] |
Maintainer: | Sam El-Kamand <[email protected]> |
License: | MIT + file LICENSE |
Version: | 0.0.0.9000 |
Built: | 2024-10-27 03:18:30 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)