Description Usage Arguments Details Value References See Also Examples
Functions to interact with the 'SomaticCancerAlterations' datasets.
1 2 3 4 5 |
names |
Character vector with data set name(s) to load. The names are the same as returned from 'scaListDatasets()'. |
merge |
Logical. Should the results be a merged 'GRanges' object with data of all studies (TRUE), or a 'GRangesList' with one list element per dataset (FALSE [default]). |
The 'sca_load_dataset' function makes it easy to load the data of a study directly into a variable.
scaMetadata |
A data frame summarizing the available data sets, with rows corresponding to data sets. |
scaListDatasets |
A character vector with all available study names. |
sca_load_dataset |
A GRangesList or GRanges objecs, depending on the 'merge' argument. |
https://tcga-data.nci.nih.gov/tcga/
https://wiki.nci.nih.gov/display/TCGA/TCGA+Data+Primer
https://tcga-data.nci.nih.gov/tcgafiles/ftp_auth/distro_ftpusers/anonymous/tumor/
1 2 3 4 5 6 7 8 9 | meta_data = scaMetadata()
head(meta_data)
all_datasets = scaListDatasets()
head(all_datasets)
grl = scaLoadDatasets(all_datasets[1], merge = FALSE)
gr = scaLoadDatasets(all_datasets[1], merge = TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.