TCGA metastatic samples
2
2
Entering edit mode
5.8 years ago
Vasei ▴ 30

I downloaded clinical data of BLCA and BRCA cancers from firebrowse which provides an easy way to access TCGA project's data. Using sample barcodes with sample type code "06"(according to this link), I could not find any metastatic samples. I also tried to use GDC Data Portal to find metastatic samples but I failed there too! Is there any metastatic sample in TCGA project? If yes which cancer types contain more metastatic samples? Should I use the sample barcode to find metastatic samples?

Note: I think this links states the opposite of what I observed! TCGA Tissue Sample Requirements: High Quality Requirements Yield High Quality Data It states that:

Sample from primary tumor was necessary: A primary tumor is the tumor at the initial site of cancer, not where the cancer may have spread or metastasized, called the secondary tumor. TCGA only studied secondary tumors if they matched to a primary as part of a series (germline, primary and metastasis), or in tumor types for which the primary tumor is rarely diagnosed (such as in melanoma).

TCGA • 6.7k views
ADD COMMENT
0
Entering edit mode

Hi

what is the host organ for metastatic cancer in TCGA?

can I get the RNAseq of adjacent normal tissue for metastatic cancer?

Thank you

ADD REPLY
0
Entering edit mode

What do you mean? Do you mean, what are the distant metastatic sites? For example, in breast cancer, a metastatic site may be the brain tissue.

There is matched normal RNA-seq for some of the TCGA cancers.

ADD REPLY
0
Entering edit mode

Actually I have seen the same situation, too. It is not exactly non but most of the cancer data that I also downloaded from firebrowse contains only a few or non-metastatic (code 06) samples.

ADD REPLY
6
Entering edit mode
5.8 years ago

I am fairly sure that I have seen samples with code 06 - in fact, almost certain. The number of these samples will differ across cancer and data-type, though. I don't know how samples were selected for profiling - there does not appear to have been any formal agreement among the various centers partaking in the project in this regard.

Note that patients who had a metastatic site are definitively part of TCGA. One can infer this from the clinical data that is held on the GDC Legacy: BRCA

Sample:

barcode         new_tumor_event new_neoplasm_event_type new_neoplasm_event_occurrence_anatomic_site
TCGA-A2-A0T7    NO              [Not Available]         [Not Available]
TCGA-A2-A0YC    YES             Locoregional Disease    [Not Available]
TCGA-A2-A0YC    YES             Distant Metastasis      Bone
TCGA-A2-A0YG    NO              [Not Available]         [Not Available]
TCGA-A2-A0YH    NO              [Not Available]         [Not Available]
TCGA-A2-A0YI    NO              [Not Available]         [Not Available]
TCGA-A2-A0YJ    YES             Distant Metastasis      Other, specify

To select out these files, search for your cancer of interest (via the checkboxes at left on the GDC Legacy), and select the Clinical data and Biotab format.

ADD COMMENT
5
Entering edit mode
5.7 years ago

A second answer to programmatically obtain all metastatic TCGA samples, or those for a particular study:

library(GenomicDataCommons)

1, Metastatic TCGA-BRCA

response <- cases() %>%
  filter(~ project.project_id=='TCGA-BRCA' & samples.sample_type=='Metastatic') %>%
  GenomicDataCommons::select(c(default_fields(cases()), 'samples.sample_type')) %>%
  response_all()

nrow(response$results)
[1] 7

2, All TCGA metastatic samples

response <- cases() %>%
  filter(~ project.program.name=='TCGA' & samples.sample_type=='Metastatic') %>%
  GenomicDataCommons::select(c(default_fields(cases()), 'samples.sample_type')) %>%
  response_all()

nrow(response$results)
[1] 398

table(response$results$primary_site)
 Adrenal Gland       Bladder        Breast        Cervix    Colorectal 
            2             1             7             2             2 
    Esophagus Head and Neck      Pancreas      Prostate          Skin 
            1             2             1             1           370 
  Soft Tissue       Thyroid 
            1             8
ADD COMMENT

Login before adding your answer.

Traffic: 3152 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6