Closed ghost closed 3 years ago
Thanks for reporting, Shixiang will reply as soon as possible:)
It seems that the UCSC Xena changed some URLs, I need to update metadata. Please click https://tcga-pancan-atlas-hub.s3.us-east-1.amazonaws.com/download/EB%2B%2BAdjustPANCAN_IlluminaHiSeq_RNASeqV2.geneExp.xena.gz to download.
@Morphy123 Hi, I fixed this bug. Could you install the latest version from GitHub and try again?
# install.packages("remotes")
remotes::install_github("ropensci/UCSCXenaTools")
I still get the same error msg even though I updated the package.
On Tue, May 25, 2021 at 9:50 PM Shixiang Wang @.***> wrote:
install.packages("remotes")remotes::install_github("ropensci/UCSCXenaTools")
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/ropensci/UCSCXenaTools/issues/35#issuecomment-848395661, or unsubscribe https://github.com/notifications/unsubscribe-auth/ANQRUYEV26AU23AMGNGJ5ULTPRHXZANCNFSM45QNB56A .
Could you restart your R? It looks fine for me.
library(UCSCXenaTools)
library(dplyr)
pcA_cohort = XenaData %>%
filter(XenaHostNames == "pancanAtlasHub") # select pancanAtlas Hub
cli_query = pcA_cohort %>%
filter(DataSubtype == "gene expression RNAseq") %>% # select RNAseq data
XenaGenerate() %>% # generate a XenaHub object
XenaQuery() %>%
XenaDownload()
See the output:
> library(UCSCXenaTools)
> library(dplyr)
> pcA_cohort = XenaData %>%
+ filter(XenaHostNames == "pancanAtlasHub") # select pancanAtlas Hub
> cli_query = pcA_cohort %>%
+ filter(DataSubtype == "gene expression RNAseq") %>% # select RNAseq data
+ XenaGenerate() %>% # generate a XenaHub object
+ XenaQuery() %>%
+ XenaDownload()
This will check url status, please be patient.
All downloaded files will under directory /var/folders/bj/nw1w4g1j37ddpgb6zmh3sfh80000gn/T//RtmpCHIe56.
The 'trans_slash' option is FALSE, keep same directory structure as Xena.
Creating directories for datasets...
Downloading EB++AdjustPANCAN_IlluminaHiSeq_RNASeqV2.geneExp.xena.gz
trying URL 'https://pancanatlas.xenahubs.net/download/EB%2B%2BAdjustPANCAN_IlluminaHiSeq_RNASeqV2.geneExp.xena.gz'
Content type 'binary/octet-stream' length 331000731 bytes (315.7 MB)
==================================================
downloaded 315.7 MB
It works! Thx!
On Tue, May 25, 2021 at 10:10 PM Shixiang Wang @.***> wrote:
Could you restart your R? It looks fine for me.
library(UCSCXenaTools) library(dplyr) pcA_cohort = XenaData %>% filter(XenaHostNames == "pancanAtlasHub") # select pancanAtlas Hubcli_query = pcA_cohort %>% filter(DataSubtype == "gene expression RNAseq") %>% # select RNAseq data XenaGenerate() %>% # generate a XenaHub object XenaQuery() %>% XenaDownload()
See the output:
library(UCSCXenaTools)> library(dplyr)> pcA_cohort = XenaData %>% + filter(XenaHostNames == "pancanAtlasHub") # select pancanAtlas Hub> cli_query = pcA_cohort %>% + filter(DataSubtype == "gene expression RNAseq") %>% # select RNAseq data+ XenaGenerate() %>% # generate a XenaHub object+ XenaQuery() %>% + XenaDownload()This will check url status, please be patient.All downloaded files will under directory /var/folders/bj/nw1w4g1j37ddpgb6zmh3sfh80000gn/T//RtmpCHIe56.The 'trans_slash' option is FALSE, keep same directory structure as Xena.Creating directories for datasets...Downloading EB++AdjustPANCAN_IlluminaHiSeq_RNASeqV2.geneExp.xena.gztrying URL 'https://pancanatlas.xenahubs.net/download/EB%2B%2BAdjustPANCAN_IlluminaHiSeq_RNASeqV2.geneExp.xena.gz'Content type 'binary/octet-stream' length 331000731 bytes (315.7 MB)==================================================downloaded 315.7 MB
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/ropensci/UCSCXenaTools/issues/35#issuecomment-848402144, or unsubscribe https://github.com/notifications/unsubscribe-auth/ANQRUYH3ESRUGEG3YLLBZ53TPRKA5ANCNFSM45QNB56A .
Hi authors, I tried to download pancancerAtlas dataset thru UCSCXEnaTools, but failed. Code is pasted below and I have tried paste the url shown in the code result, it doesn't give me proper data. Could you help me with it? Thank you!