从下载的文件中将软文件数据读取到R.

时间:2015-11-06 15:14:58

标签: r

我已经将GSE47875断言号的软文件数据下载到我的labtop。现在我想将它加载到R,我已经使用了

getGEO("GSE47875",filename = "Desktop/GSE47875/GSE47875_series_matrix.txt.gz")

命令,但我遇到以下错误:

sh: 1: curl: not found
File stored at: 
/tmp/RtmpHyQAgg/GPL1355.soft
Error in file(fname, "r") : cannot open the connection
In addition: Warning messages:
1: In download.file(myurl, destfile, mode = mode, quiet = TRUE, method = getOption("download.file.method.GEOquery")) :
  download had nonzero exit status
2: In file(fname, "r") :
  cannot open file '/tmp/RtmpHyQAgg/GPL1355.soft': No such file or directory

问题出在哪里?如何将软文件数据加载到R?

1 个答案:

答案 0 :(得分:0)

看起来你在Linux上,并且curl(从命令行或脚本下载的程序)没有安装。它是免费的,所以安装吧!您可以使用sudo apt-get install curl在Debian类型的发行版上安装它。

This post有更多细节。