Hi,
I am trying to work with TCGAbiolinks, but am having problem with GDCprepare. It fails to connect to BioMart web service.
queryGBM <- GDCquery(project = "TCGA-GBM", + data.category = "Gene expression", + data.type = "Gene expression quantification", + platform = "Illumina HiSeq", file.type = "normalized_results", + experimental.strategy = "RNA-Seq", + barcode = c("TCGA-14-0736-02A-01R-2005-01", "TCGA-06-0211-02A-02R-2005-01"), + legacy = TRUE) Accessing GDC. This might take a while... > GDCdownload(queryGBM) All samples have been already downloded > data <- GDCprepare(queryGBM) |============================================================================================| 100% Downloading genome information. Using: Homo sapiens genes (GRCh37.p13) Error in value[[3L]](cond) : Request to BioMart web service failed. Verify if you are still connected to the internet. Alternatively the BioMart web service is temporarily down.
But I am able access the BioMart web service from biomart
>entrez=c("673","837") > goids = getBM(attributes=c('entrezgene','go_id'), filters='entrezgene', values=entrez, mart=ensembl) > head(goids) entrezgene go_id 1 673 2 673 GO:0005737 3 673 GO:0005886 4 673 GO:0005634 5 673 GO:0005829 6 673 GO:0005509
What could be the issue?
Thanks and Regards,
Sabari
Still no luck.