Entering edit mode
6.4 years ago
jaleh.amo
•
0
I am trying to read a GSE file and getting this following error.
gg = getGEO("GSE6929", GSEMatrix = TRUE)
but I receive the following error
https://ftp.ncbi.nlm.nih.gov/geo/series/GSE6nnn/GSE6929/matrix/
OK
Found 2 file(s)
/geo/series/GSE6nnn/GSE6929/
Error in file(con, "r") : cannot open the connection
In addition: Warning messages:
1: In download.file(sprintf("https://ftp.ncbi.nlm.nih.gov/geo/series/%s/%s/matrix/%s", :
URL https://ftp.ncbi.nlm.nih.gov/geo/series/GSE6nnn/GSE6929/matrix//geo/series/GSE6nnn/GSE6929/: cannot open destfile '/tmp/RtmpFquqz8//geo/series/GSE6nnn/GSE6929/', reason 'No such file or directory'
2: In download.file(sprintf("https://ftp.ncbi.nlm.nih.gov/geo/series/%s/%s/matrix/%s", :
download had nonzero exit status
3: In file(con, "r") :
cannot open file '/tmp/RtmpFquqz8//geo/series/GSE6nnn/GSE6929/': No such file or directory
In case you are wondering this is the version of R I am using
sessionInfo()
R version 3.5.0 (2018-04-23)
Platform: x86_64-redhat-linux-gnu (64-bit)
Running under: Red Hat Enterprise Linux
Matrix products: default
BLAS/LAPACK: /usr/lib64/R/lib/libRblas.so
You might get better response at: https://support.bioconductor.org/
In case your GEOquery is old, update it and try again.
Your
sessionInfo()
is incomplete, as it doesn't show the versions of the packages loaded. I can download without problems the dataset you pointed to, here is mysessionInfo()
:I downloaded the dataset without error on my computer. The errors that you have remind me of a R session that just needs to be restarted because it's full of variables and its memory is full-up.
Sorry I didn't realize it was uploaded incomplete
I don't see something like
GEOquery_2.46.15
like in my session, orGEOquery_2.49.0
like in Kevin Blighe session. First load GEOquery withlibrary( GEOquery )
, then issuesessionInfo()
.Sorry fixed it.