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

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

# --- GEO supplementary files ---
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE162nnn/GSE162335/suppl/GSE162335_RAW.tar" -O "GSE162335_RAW.tar"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE162nnn/GSE162335/suppl/GSE162335_SingleCellBarcodes.tsv.gz" -O "GSE162335_SingleCellBarcodes.tsv.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE162nnn/GSE162335/suppl/GSE162335_SingleCellCounts.mtx.gz" -O "GSE162335_SingleCellCounts.mtx.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE162nnn/GSE162335/suppl/GSE162335_SingleCellGenes.tsv.gz" -O "GSE162335_SingleCellGenes.tsv.gz"
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE162nnn/GSE162335/suppl/GSE162335_SingleCellMetadata.txt.gz" -O "GSE162335_SingleCellMetadata.txt.gz"

echo "Download complete. Files saved to $OUTDIR"