#!/usr/bin/env bash
# Bulk download script for GSE24759
# Generated from Yeo Lab Publications Database
# Total files: 5

OUTDIR="GSE24759"
mkdir -p "$OUTDIR"
cd "$OUTDIR"

# --- GEO supplementary files ---
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE24nnn/GSE24759/suppl/GSE24759_GEO_names_map.xlsx" -O "GSE24759_GEO_names_map.xlsx"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE24nnn/GSE24759/suppl/GSE24759_RAW.tar" -O "GSE24759_RAW.tar"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE24nnn/GSE24759/suppl/GSE24759_RMA.pre-norm.txt.gz" -O "GSE24759_RMA.pre-norm.txt.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE24nnn/GSE24759/suppl/GSE24759_data.sort.txt.gz" -O "GSE24759_data.sort.txt.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE24nnn/GSE24759/suppl/GSE24759_modules.txt.gz" -O "GSE24759_modules.txt.gz"

echo "Download complete. Files saved to $OUTDIR"