TCGAbiolinks has provided a few functions to search, download and parse clinical data. This section starts by explaining the different sources for clinical information in GDC, followed by the necessary function to access these sources and it finishes by showing the insconsistencies between those sources.
In GDC database the clinical data can be retrieved from two sources:
There are two main differences:
In this example we will fetch clinical indexed data.
clinical <- GDCquery_clinic(project = "TCGA-LUAD", type = "clinical")
datatable(clinical, filter = 'top',
options = list(scrollX = TRUE, keys = TRUE, pageLength = 5),
rownames = FALSE)
The process to get data directly from the XML are: 1. Use GDCquery
and GDCDownload
functions to search/download either biospecimen or clinical XML files 2. Use GDCprepare_clinic
function to parse the XML files.
The relation between one patient and other clinical information are 1:n, one patient could have several radiation treatments. For that reason, we only give the option to parse individual tables (only drug information, only radiation informtaion,…) The selection of the tabel is done by the argument clinical.info
.
data.category | clinical.info |
---|---|
Clinical | drug |
Clinical | admin |
Clinical | follow_up |
Clinical | radiation |
Clinical | patient |
Clinical | stage_event |
Clinical | new_tumor_event |
Biospecimen | sample |
Biospecimen | bio_patient |
Biospecimen | analyte |
Biospecimen | aliquot |
Biospecimen | protocol |
Biospecimen | portion |
Biospecimen | slide |
Other | msi |
Below are several examples fetching clinical data directly from the clinical XML files.
query <- GDCquery(project = "TCGA-COAD",
data.category = "Clinical",
barcode = c("TCGA-RU-A8FL","TCGA-AA-3972"))
GDCdownload(query)
clinical <- GDCprepare_clinic(query, clinical.info = "patient")
datatable(clinical, options = list(scrollX = TRUE, keys = TRUE), rownames = FALSE)
clinical.drug <- GDCprepare_clinic(query, clinical.info = "drug")
datatable(clinical.drug, options = list(scrollX = TRUE, keys = TRUE), rownames = FALSE)
clinical.radiation <- GDCprepare_clinic(query, clinical.info = "radiation")
datatable(clinical.radiation, options = list(scrollX = TRUE, keys = TRUE), rownames = FALSE)
clinical.admin <- GDCprepare_clinic(query, clinical.info = "admin")
datatable(clinical.admin, options = list(scrollX = TRUE, keys = TRUE), rownames = FALSE)
MSI-Mono-Dinucleotide Assay is performed to test a panel of four mononucleotide repeat loci (polyadenine tracts BAT25, BAT26, BAT40, and transforming growth factor receptor type II) and three dinucleotide repeat loci (CA repeats in D2S123, D5S346, and D17S250). Two additional pentanucleotide loci (Penta D and Penta E) are included in this assay to evaluate sample identity. Multiplex fluorescent-labeled PCR and capillary electrophoresis were used to identify MSI if a variation in the number of microsatellite repeats was detected between tumor and matched non-neoplastic tissue or mononuclear blood cells. Equivocal or failed markers were re-evaluated by singleplex PCR.
classifications: microsatellite-stable (MSS), low level MSI (MSI-L) if less than 40% of markers were altered and high level MSI (MSI-H) if greater than 40% of markers were altered.
Reference: TCGA wiki
Level 3 data is included in BCR clinical-based submissions and can be downloaded as follows:
query <- GDCquery(project = "TCGA-COAD",
data.category = "Other",
legacy = TRUE,access = "open",
data.type = "Auxiliary test",
barcode = c("TCGA-AD-A5EJ","TCGA-DM-A0X9"))
GDCdownload(query)
msi_results <- GDCprepare_clinic(query, "msi")
datatable(msi_results, options = list(scrollX = TRUE, keys = TRUE))
The clincal data types available in legacy database are:
# Tissue slide image files
query <- GDCquery(project = "TCGA-COAD",
data.category = "Clinical",
data.type = "Tissue slide image",
legacy = TRUE,
barcode = c("TCGA-RU-A8FL","TCGA-AA-3972"))
query %>% getResults %>% datatable(options = list(scrollX = TRUE, keys = TRUE))
# Pathology report
query <- GDCquery(project = "TCGA-COAD",
data.category = "Clinical",
data.type = "Pathology report",
legacy = TRUE,
barcode = c("TCGA-RU-A8FL","TCGA-AA-3972"))
query %>% getResults %>% datatable(options = list(scrollX = TRUE, keys = TRUE))
# Tissue slide image
query <- GDCquery(project = "TCGA-COAD",
data.category = "Clinical",
data.type = "Tissue slide image",
legacy = TRUE,
barcode = c("TCGA-RU-A8FL","TCGA-AA-3972"))
query %>% getResults %>% datatable(options = list(scrollX = TRUE, keys = TRUE))
# Clinical Supplement
query <- GDCquery(project = "TCGA-COAD",
data.category = "Clinical",
data.type = "Clinical Supplement",
legacy = TRUE,
barcode = c("TCGA-RU-A8FL","TCGA-AA-3972"))
query %>% getResults %>% datatable(options = list(scrollX = TRUE, keys = TRUE))
# Clinical data
query <- GDCquery(project = "TCGA-COAD",
data.category = "Clinical",
data.type = "Clinical data",
legacy = TRUE,
file.type = "txt")
query %>% getResults %>% select(-matches("cases"))%>% datatable(options = list(scrollX = TRUE, keys = TRUE))
GDCdownload(query)
clinical.biotab <- GDCprepare(query)
names(clinical.biotab)
## [1] "clinical_radiation_coad" "clinical_nte_coad"
## [3] "clinical_patient_coad" "clinical_drug_coad"
## [5] "clinical_follow_up_v1.0_nte_coad" "clinical_omf_v4.0_coad"
## [7] "clinical_follow_up_v1.0_coad"
datatable(clinical.biotab$clinical_radiation_coad, options = list(scrollX = TRUE, keys = TRUE))
Some inconsisentecies have been found in the indexed clinical data and are being investigated by the GDC team. These inconsistencies are:
# Get XML files and parse them
clin.query <- GDCquery(project = "TCGA-READ", data.category = "Clinical", barcode = "TCGA-F5-6702")
GDCdownload(clin.query)
clinical.patient <- GDCprepare_clinic(clin.query, clinical.info = "patient")
clinical.patient.followup <- GDCprepare_clinic(clin.query, clinical.info = "follow_up")
# Get indexed data
clinical.index <- GDCquery_clinic("TCGA-READ")
select(clinical.patient,vital_status,days_to_death,days_to_last_followup) %>% datatable
select(clinical.patient.followup, vital_status,days_to_death,days_to_last_followup) %>% datatable
# Vital status should be the same in the follow up table
filter(clinical.index,submitter_id == "TCGA-F5-6702") %>% select(vital_status,days_to_death,days_to_last_follow_up) %>% datatable
# Get XML files and parse them
recurrent.samples <- GDCquery(project = "TCGA-LIHC",
data.category = "Transcriptome Profiling",
data.type = "Gene Expression Quantification",
workflow.type = "HTSeq - Counts",
sample.type = "Recurrent Solid Tumor")$results[[1]] %>% select(cases)
recurrent.patients <- unique(substr(recurrent.samples$cases,1,12))
clin.query <- GDCquery(project = "TCGA-LIHC", data.category = "Clinical", barcode = recurrent.patients)
GDCdownload(clin.query)
clinical.patient <- GDCprepare_clinic(clin.query, clinical.info = "patient")
# Get indexed data
GDCquery_clinic("TCGA-LIHC") %>% filter(submitter_id %in% recurrent.patients) %>%
select(progression_or_recurrence,days_to_recurrence,tumor_grade) %>% datatable
# XML data
clinical.patient %>% select(bcr_patient_barcode,neoplasm_histologic_grade) %>% datatable