-
Notifications
You must be signed in to change notification settings - Fork 12
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
can not access the GDC dataset #12
Comments
anthor question is the package can continue download or not ?
|
@jianguozhouzunyimedicaluniversity Thank you for reporting this issue. I can reproduce it. It seems GDC hub has a different parse rule. I will try to fix this.
By the way, download process cannot continue. I will take a look if it can be implemented. Thanks again. |
fine. shixiang, you can check the dong's package (GDCRNATools).This package can continue download.best wishes
Jian-Guo ZHOU
Department of Oncology, Affiliated Hospital of Zunyi Medical University
Address: NO.149, Dalian Road, Zunyi City, Guizhou Province, China, 563000
Email: [email protected]
Shixiang Wang <[email protected]> 于 2019年9月26日星期四 GMT+2 下午05:58:50写道:
Closed #12 via 5daf250.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or mute the thread.
|
你可以从 github 安装最新版本看下问题解决了吗 |
OK. 我下班回家就看。到时候邮件给你回复。thanks
Jian-Guo ZHOU
Department of Oncology, Affiliated Hospital of Zunyi Medical University
Address: NO.149, Dalian Road, Zunyi City, Guizhou Province, China, 563000
Email: [email protected]
Shixiang Wang <[email protected]> 于 2019年9月26日星期四 GMT+2 下午06:03:37写道:
你可以从 github 安装最新版本看下问题解决了吗
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or mute the thread.
|
我测试过了,目前服务器端不支持断点续传。所以即使我写好了代码也成功不了。我已经写邮件问 UCSC Xena 了,有消息回复你。 |
没事。Jian-Guo ZHOU M.D.Department of Oncology, Affiliated Hospital of Zunyi Medical UniversityAddress: NO.149, Dalian Road, Zunyi City, Guizhou Province, China, 563000Email: [email protected] 原始邮件 --------发件人: Shixiang Wang <[email protected]>日期: 2019年9月26日周四 19:20收件人: ropensci/UCSCXenaTools <[email protected]>抄送: Jian-Guo Zhou <[email protected]>, Mention <[email protected]>主 题: Re: [ropensci/UCSCXenaTools] can not access the GDC dataset (#12)我测试过了,目前服务器端不支持断点续传。所以即使我写好了代码也成功不了。我已经写邮件问 UCSC Xena 了,有消息回复你。
—You are receiving this because you were mentioned.Reply to this email directly, view it on GitHub, or mute the thread.
|
@jianguozhouzunyimedicaluniversity UCSCXena 已经支持断点续传。 下面是一个示例代码
|
cool, thanks Shixiang.
Jian-Guo ZHOU
Shixiang Wang <[email protected]> 于 2019年10月8日星期二 GMT+2 上午11:49:38写道:
@jianguozhouzunyimedicaluniversity UCSCXena 已经支持断点续传。
下面是一个示例代码
library(UCSCXenaTools)
xe = XenaGenerate(subset = XenaDatasets == "TcgaTargetGtex_expected_count")
xe
xq = XenaQuery(xe)
# You cannot resume from breakpoint in default mode
XenaDownload(xq, destdir = "~/test/", force = TRUE)
# You can do it with 'curl' command
XenaDownload(xq, destdir = "~/test/", method = "curl", extra = "-C -", force = TRUE)
# You can do it with 'wget' command
XenaDownload(xq, destdir = "~/test/", method = "wget", extra = "-c", force = TRUE)
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or mute the thread.
|
The text was updated successfully, but these errors were encountered: