This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Getting RNA expression from TCGA only for these patients IDs

Hi

I have been asked to download RNA expression from TCGA only for some tumour IDs like below

Patient_ids Tumor_type
TCGA-IG-A4QS    Esophagus
TCGA-JY-A6FB    Esophagus
TCGA-JY-A938    Esophagus
TCGA-JY-A939    Esophagus

I then tried this R package that returns error

> query <- GDCquery(project = "TCGA-ESCA",
+                   data.category = "Transcriptome Profiling",
+                   data.type = "Gene Expression Quantification", 
+                   workflow.type = "HTSeq - Counts")
Error in value[[3L]](cond) : 
  GDC server down, try to use this package later

Can somebody please help i getting RNA-seq for these samples from TCGA? Thanks in advance

tcga r rna-seq

Have you solved it?Can you give me a hand?wuuwu

What is your question?

1 answer

query <- GDCquery(project = "TCGA-ESCA",
data.category = "Transcriptome Profiling",
data.type = "Gene Expression Quantification",
workflow.type = "HTSeq - Counts",barcode = c("SAMPLE IDs"),sample.type = "Primary solid Tumor")
GDCdownload(query)
data <- GDCprepare(query)

So in summary, you tried again a few hours later and the server was up again, and it now worked.

This isn't an answer. A block of unexplained code doesn't help people in future.

Log in to answer this question.