BioinformaticsFMRP / TCGAbiolinks

TCGAbiolinks
http://bioconductor.org/packages/devel/bioc/vignettes/TCGAbiolinks/inst/doc/index.html
291 stars 111 forks source link

GDCquery, copy number variation error #576

Closed sanazmo closed 1 year ago

sanazmo commented 1 year ago

Hello my R version is R 4.3 and my libraries are up to date. I have a problem with GDC query. I am trying to build a gdcquery for copy number variation, but it does not work, It seems that my R could not connect to GDC portal while it works for transcription profiling and protem. how can I fix it?

tiagochst commented 1 year ago

Could you post the query code please ?

sanazmo commented 1 year ago

my codes:

query <- GDCquery(project = "TCGA-LUAD", data.category = "Copy Number Variation", data.type = "Gene Level Copy Number ",sample.type = c("Primary Tumor", "Solid Tissue Normal"),
access="open")

tiagochst commented 1 year ago

Could you test the code below?

query <- GDCquery(
    project = "TCGA-LUAD",
    data.category = "Copy Number Variation",
    data.type = "Gene Level Copy Number",
    access = "open"
) 
GDCdownload(query,files.per.chunk = 20) 
data <- GDCprepare(query)
sanazmo commented 1 year ago

thank you, It works