Learn R Programming

TCGAretriever (version 1.9.1)

get_clinical_data: Retrieve Clinical Information for a Cancer Study.

Description

Retrieve Clinical Information about the samples included in a cancer study of interest. For each sample/case, information about the corresponding cancer patient are returned. These may include sex, age, therapeutic regimen, tumor stage, survival status, as well as other information.

Usage

get_clinical_data(csid, case_list_id = NULL, dryrun = FALSE)

Value

data.frame including clinical information of a list of samples/cases of interest.

Arguments

csid

String corresponding to a TCGA Cancer Study identifier.

case_list_id

String corresponding to the case_list identifier of interest. This Can be NULL.

dryrun

Logical. If TRUE, all other arguments (if any) are ignored and a representative example is returned as output. No Internet connection is required for executing the operation when `dryrun` is TRUE.

Author

Damiano Fantini, damiano.fantini@gmail.com

References

https://www.data-pulse.com/dev_site/TCGAretriever/

Examples

Run this code
# Set `dryrun = FALSE` (default option) in production!
clinic_data <- get_clinical_data("blca_tcga", dryrun = TRUE)  
utils::head(clinic_data[, 1:7])
 


Run the code above in your browser using DataLab