I am using 3.2.0 version of R on 64-bit system with Windows 7 OS. I am facing a problem while using the package GEOquery for bioinformatics
library(Biobase)
library(GEOquery)
library(limma)
library(RCurl)
library(XML)
getGEO("GSE1739", GSEMatrix = TRUE) # to get the data
I got the error
ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE1nnn/GSE1739/matrix/
Error in function (type, msg, asError = TRUE) :
Failed to connect to ftp.ncbi.nlm.nih.gov port 21: Timed out
Any help in this direction will be greatly appreciated.
This works for me. Can you access this via web browser?
Edit: As suggested on SO try
GSEMatrix = FALSE
Dear Pgibas, It works with (with some warnings)
GSEMatrix = F
. But when I rungetGEOSuppFiles("GSE27447")
. It throws an errorHow this can be handled? Is there any significant difference between setting
GSEMatrix
equal toTRUE
orFALSE
?This is again likely the same connection problem as you noted in your original post. You will likely want to use
GSEMatrix=TRUE
, but you can check the GEOquery vignette for details. Yes, there is a significant difference betweenGSEMatrix=FALSE
andGSEMatrix=TRUE
. You will likely want to useGSEMatrix=TRUE
, but you can check the GEOquery vignette for details.Worked for me too, double check your connection
Hi can any one please tell me how to install GEOquery packages on windows. It is showing an error XML file and RCURL file is not installed. Then I tried to install XML it is again showing error
Please elaborate the exact error and versions of R and packages.
Please ask a new question adding a new post (link "New post" in the top-right side of your browser, or alternatively click here). Posting here is meant for adding answers to the current question (first post above).