-
Notifications
You must be signed in to change notification settings - Fork 36
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
'destdir' is ignored when GPL file is downloaded for local GSE matrix file #8
Comments
getGEO cannot use local GPL file directly when GPL is true so far due to a bug in function parseGSEMatrix. In this function, the parameter "destdir=tempdir()" should be "destdir=destdir", which should also be added into other related function parseGEO. I suggest another parameter should be add. Two files will be reivsed (getGEO.R and parseGEO.R ) with a new parameter GPLfn.
##################################################################
$git diff parseGEO.R diff --git a/R/parseGEO.R b/R/parseGEO.R
|
Commit id: bbcc13a Version Bump Commit id: 0f5d2f3 Merge branch 'master' of github.com:seandavi/GEOquery Commit id: d360aa8 Fixes #8 This fixes an issue whereby the destdir was not respected when a filename was specified for a GSEMatrix file. git-svn-id: https://hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/GEOquery@102653 bc3139a8-67e5-0310-9ffc-ced21a209358
Commit id: bbcc13a Version Bump Commit id: 0f5d2f3 Merge branch 'master' of github.com:seandavi/GEOquery Commit id: d360aa8 Fixes #8 This fixes an issue whereby the destdir was not respected when a filename was specified for a GSEMatrix file. git-svn-id: file:///home/git/hedgehog.fhcrc.org/bioconductor/trunk/madman/Rpacks/GEOquery@102653 bc3139a8-67e5-0310-9ffc-ced21a209358
When I try to load a (manually downloaded) GSE matrix file by
getGEO(filename="GSEXXXX_series_matrix.txt", destdir="./")
the destdir option is not passed to parseGSEMatrix() through parseGEO().
Therefore, GPL file is not searched in the destdir, but downloaded
into a temporary folder every time R is restarted.
The text was updated successfully, but these errors were encountered: