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

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

# --- GEO supplementary files ---
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE62nnn/GSE62023/suppl/GSE62023_RAW.tar" -O "GSE62023_RAW.tar"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE62nnn/GSE62023/suppl/GSE62023_R_analysis.txt.gz" -O "GSE62023_R_analysis.txt.gz"

echo "Download complete. Files saved to $OUTDIR"