guma44 / GEOparse

Python library to access Gene Expression Omnibus Database (GEO)
BSD 3-Clause "New" or "Revised" License
137 stars 51 forks source link

GEOparse not downloading a supplementary file for a GSE #72

Open grisaitis opened 3 years ago

grisaitis commented 3 years ago

i'm not sure if this is user error (probably) or library error, but for a particular GEO accession, I can't get GEOparse to download the main supplementary file.

check this out: https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE127813

the accession has one supplementary file:

image

but, download_supplementary_files() doesn't download it:

import GEOparse
gse_127813 = GEOparse.get_GEO(geo="GSE127813", destdir="./data_from_geoparse")
gse_127813.download_supplementary_files()
$ tree -h ./data_from_geoparse
data_from_geoparse/
└── [3.2K]  GSE127813_family.soft.gz

0 directories, 1 file

am i doing something wrong?