This is a test version of Biostars. For the public version, visit https://www.biostars.org.
Need help in downloading CEL files for multiple datasets from GEO in one go

Hi, I have a list of GSE ids (say around 200) from GEO database, whose CEL files belonging to different GSE id, I need to download one after another. Can anyone share the script.

geo next-gen rna-seq r python

See if this works. I will move it to an answer when you confirm.

Using NCBI eUtils (replace GSE number as needed, use another loop outside the one below for multiple searches):

for i in `esearch -db gds -query GSE92586 | efetch -format docsum | xtract -pattern DocumentSummary -element FTPLink`; do wget $i/suppl/*.gz ; done

0 answers

No answers yet.

Log in to answer this question.