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

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

# --- GEO supplementary files ---
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE31nnn/GSE31595/suppl/GSE31595_RAW.tar" -O "GSE31595_RAW.tar"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE31nnn/GSE31595/suppl/GSE31595_complete_dataset.txt.gz" -O "GSE31595_complete_dataset.txt.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE31nnn/GSE31595/suppl/GSE31595_readme.txt" -O "GSE31595_readme.txt"

echo "Download complete. Files saved to $OUTDIR"