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

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

# --- GEO supplementary files ---
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE75nnn/GSE75128/suppl/GSE75128_Gerson-Gurwitz_et_al_2015_mastertable.csv.gz" -O "GSE75128_Gerson-Gurwitz_et_al_2015_mastertable.csv.gz"

# --- SRA run files ---
# Tip: use 'fasterq-dump' from SRA Toolkit for FASTQ conversion
#      with optional renaming to original submitted FASTQ names.
# Set to 1 to rename SRR outputs (e.g. SRR_1.fastq.gz -> sample_R1.fastq.gz)
RENAME_SRA_TO_ORIGINAL=1

_compress_if_exists() {
  local stem="$1"
  if [ -f "${stem}.fastq" ]; then
    gzip -f "${stem}.fastq"
    echo "${stem}.fastq.gz"
    return 0
  fi
  if [ -f "${stem}.fq" ]; then
    gzip -f "${stem}.fq"
    echo "${stem}.fq.gz"
    return 0
  fi
  return 1
}

# Option A: Download via SRA Toolkit (recommended)
fasterq-dump --split-files "SRR2922454"
gz1="$(_compress_if_exists 'SRR2922454_1' || true)"
gz2="$(_compress_if_exists 'SRR2922454_2' || true)"
gzs="$(_compress_if_exists 'SRR2922454' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-N2-control-5_S1_L008_R1_001.fastq.gz"
fi

fasterq-dump --split-files "SRR2922455"
gz1="$(_compress_if_exists 'SRR2922455_1' || true)"
gz2="$(_compress_if_exists 'SRR2922455_2' || true)"
gzs="$(_compress_if_exists 'SRR2922455' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-N2-control-5_S1_L008_R1_010.fastq.gz"
fi

fasterq-dump --split-files "SRR2922456"
gz1="$(_compress_if_exists 'SRR2922456_1' || true)"
gz2="$(_compress_if_exists 'SRR2922456_2' || true)"
gzs="$(_compress_if_exists 'SRR2922456' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-N2-control-5_S1_L008_R1_011.fastq.gz"
fi

fasterq-dump --split-files "SRR2922457"
gz1="$(_compress_if_exists 'SRR2922457_1' || true)"
gz2="$(_compress_if_exists 'SRR2922457_2' || true)"
gzs="$(_compress_if_exists 'SRR2922457' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-N2-control-5_S1_L008_R1_012.fastq.gz"
fi

fasterq-dump --split-files "SRR2922458"
gz1="$(_compress_if_exists 'SRR2922458_1' || true)"
gz2="$(_compress_if_exists 'SRR2922458_2' || true)"
gzs="$(_compress_if_exists 'SRR2922458' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-N2-control-5_S1_L008_R1_013.fastq.gz"
fi

fasterq-dump --split-files "SRR2922459"
gz1="$(_compress_if_exists 'SRR2922459_1' || true)"
gz2="$(_compress_if_exists 'SRR2922459_2' || true)"
gzs="$(_compress_if_exists 'SRR2922459' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-N2-control-5_S1_L008_R1_002.fastq.gz"
fi

fasterq-dump --split-files "SRR2922460"
gz1="$(_compress_if_exists 'SRR2922460_1' || true)"
gz2="$(_compress_if_exists 'SRR2922460_2' || true)"
gzs="$(_compress_if_exists 'SRR2922460' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-N2-control-5_S1_L008_R1_003.fastq.gz"
fi

fasterq-dump --split-files "SRR2922461"
gz1="$(_compress_if_exists 'SRR2922461_1' || true)"
gz2="$(_compress_if_exists 'SRR2922461_2' || true)"
gzs="$(_compress_if_exists 'SRR2922461' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-N2-control-5_S1_L008_R1_004.fastq.gz"
fi

fasterq-dump --split-files "SRR2922462"
gz1="$(_compress_if_exists 'SRR2922462_1' || true)"
gz2="$(_compress_if_exists 'SRR2922462_2' || true)"
gzs="$(_compress_if_exists 'SRR2922462' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-N2-control-5_S1_L008_R1_005.fastq.gz"
fi

fasterq-dump --split-files "SRR2922463"
gz1="$(_compress_if_exists 'SRR2922463_1' || true)"
gz2="$(_compress_if_exists 'SRR2922463_2' || true)"
gzs="$(_compress_if_exists 'SRR2922463' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-N2-control-5_S1_L008_R1_006.fastq.gz"
fi

fasterq-dump --split-files "SRR2922464"
gz1="$(_compress_if_exists 'SRR2922464_1' || true)"
gz2="$(_compress_if_exists 'SRR2922464_2' || true)"
gzs="$(_compress_if_exists 'SRR2922464' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-N2-control-5_S1_L008_R1_007.fastq.gz"
fi

fasterq-dump --split-files "SRR2922465"
gz1="$(_compress_if_exists 'SRR2922465_1' || true)"
gz2="$(_compress_if_exists 'SRR2922465_2' || true)"
gzs="$(_compress_if_exists 'SRR2922465' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-N2-control-5_S1_L008_R1_008.fastq.gz"
fi

fasterq-dump --split-files "SRR2922466"
gz1="$(_compress_if_exists 'SRR2922466_1' || true)"
gz2="$(_compress_if_exists 'SRR2922466_2' || true)"
gzs="$(_compress_if_exists 'SRR2922466' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-N2-control-5_S1_L008_R1_009.fastq.gz"
fi

fasterq-dump --split-files "SRR2922467"
gz1="$(_compress_if_exists 'SRR2922467_1' || true)"
gz2="$(_compress_if_exists 'SRR2922467_2' || true)"
gzs="$(_compress_if_exists 'SRR2922467' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-N2-control-6_S2_L008_R1_001.fastq.gz"
fi

fasterq-dump --split-files "SRR2922468"
gz1="$(_compress_if_exists 'SRR2922468_1' || true)"
gz2="$(_compress_if_exists 'SRR2922468_2' || true)"
gzs="$(_compress_if_exists 'SRR2922468' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-N2-control-6_S2_L008_R1_010.fastq.gz"
fi

fasterq-dump --split-files "SRR2922469"
gz1="$(_compress_if_exists 'SRR2922469_1' || true)"
gz2="$(_compress_if_exists 'SRR2922469_2' || true)"
gzs="$(_compress_if_exists 'SRR2922469' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-N2-control-6_S2_L008_R1_011.fastq.gz"
fi

fasterq-dump --split-files "SRR2922470"
gz1="$(_compress_if_exists 'SRR2922470_1' || true)"
gz2="$(_compress_if_exists 'SRR2922470_2' || true)"
gzs="$(_compress_if_exists 'SRR2922470' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-N2-control-6_S2_L008_R1_012.fastq.gz"
fi

fasterq-dump --split-files "SRR2922471"
gz1="$(_compress_if_exists 'SRR2922471_1' || true)"
gz2="$(_compress_if_exists 'SRR2922471_2' || true)"
gzs="$(_compress_if_exists 'SRR2922471' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-N2-control-6_S2_L008_R1_002.fastq.gz"
fi

fasterq-dump --split-files "SRR2922472"
gz1="$(_compress_if_exists 'SRR2922472_1' || true)"
gz2="$(_compress_if_exists 'SRR2922472_2' || true)"
gzs="$(_compress_if_exists 'SRR2922472' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-N2-control-6_S2_L008_R1_003.fastq.gz"
fi

fasterq-dump --split-files "SRR2922473"
gz1="$(_compress_if_exists 'SRR2922473_1' || true)"
gz2="$(_compress_if_exists 'SRR2922473_2' || true)"
gzs="$(_compress_if_exists 'SRR2922473' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-N2-control-6_S2_L008_R1_004.fastq.gz"
fi

fasterq-dump --split-files "SRR2922474"
gz1="$(_compress_if_exists 'SRR2922474_1' || true)"
gz2="$(_compress_if_exists 'SRR2922474_2' || true)"
gzs="$(_compress_if_exists 'SRR2922474' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-N2-control-6_S2_L008_R1_005.fastq.gz"
fi

fasterq-dump --split-files "SRR2922475"
gz1="$(_compress_if_exists 'SRR2922475_1' || true)"
gz2="$(_compress_if_exists 'SRR2922475_2' || true)"
gzs="$(_compress_if_exists 'SRR2922475' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-N2-control-6_S2_L008_R1_006.fastq.gz"
fi

fasterq-dump --split-files "SRR2922476"
gz1="$(_compress_if_exists 'SRR2922476_1' || true)"
gz2="$(_compress_if_exists 'SRR2922476_2' || true)"
gzs="$(_compress_if_exists 'SRR2922476' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-N2-control-6_S2_L008_R1_007.fastq.gz"
fi

fasterq-dump --split-files "SRR2922477"
gz1="$(_compress_if_exists 'SRR2922477_1' || true)"
gz2="$(_compress_if_exists 'SRR2922477_2' || true)"
gzs="$(_compress_if_exists 'SRR2922477' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-N2-control-6_S2_L008_R1_008.fastq.gz"
fi

fasterq-dump --split-files "SRR2922478"
gz1="$(_compress_if_exists 'SRR2922478_1' || true)"
gz2="$(_compress_if_exists 'SRR2922478_2' || true)"
gzs="$(_compress_if_exists 'SRR2922478' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-N2-control-6_S2_L008_R1_009.fastq.gz"
fi

fasterq-dump --split-files "SRR2922479"
gz1="$(_compress_if_exists 'SRR2922479_1' || true)"
gz2="$(_compress_if_exists 'SRR2922479_2' || true)"
gzs="$(_compress_if_exists 'SRR2922479' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1463-WT-3_S5_L008_R1_001.fastq.gz"
fi

fasterq-dump --split-files "SRR2922480"
gz1="$(_compress_if_exists 'SRR2922480_1' || true)"
gz2="$(_compress_if_exists 'SRR2922480_2' || true)"
gzs="$(_compress_if_exists 'SRR2922480' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1463-WT-3_S5_L008_R1_010.fastq.gz"
fi

fasterq-dump --split-files "SRR2922481"
gz1="$(_compress_if_exists 'SRR2922481_1' || true)"
gz2="$(_compress_if_exists 'SRR2922481_2' || true)"
gzs="$(_compress_if_exists 'SRR2922481' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1463-WT-3_S5_L008_R1_011.fastq.gz"
fi

fasterq-dump --split-files "SRR2922482"
gz1="$(_compress_if_exists 'SRR2922482_1' || true)"
gz2="$(_compress_if_exists 'SRR2922482_2' || true)"
gzs="$(_compress_if_exists 'SRR2922482' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1463-WT-3_S5_L008_R1_012.fastq.gz"
fi

fasterq-dump --split-files "SRR2922483"
gz1="$(_compress_if_exists 'SRR2922483_1' || true)"
gz2="$(_compress_if_exists 'SRR2922483_2' || true)"
gzs="$(_compress_if_exists 'SRR2922483' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1463-WT-3_S5_L008_R1_002.fastq.gz"
fi

fasterq-dump --split-files "SRR2922484"
gz1="$(_compress_if_exists 'SRR2922484_1' || true)"
gz2="$(_compress_if_exists 'SRR2922484_2' || true)"
gzs="$(_compress_if_exists 'SRR2922484' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1463-WT-3_S5_L008_R1_003.fastq.gz"
fi

fasterq-dump --split-files "SRR2922485"
gz1="$(_compress_if_exists 'SRR2922485_1' || true)"
gz2="$(_compress_if_exists 'SRR2922485_2' || true)"
gzs="$(_compress_if_exists 'SRR2922485' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1463-WT-3_S5_L008_R1_004.fastq.gz"
fi

fasterq-dump --split-files "SRR2922486"
gz1="$(_compress_if_exists 'SRR2922486_1' || true)"
gz2="$(_compress_if_exists 'SRR2922486_2' || true)"
gzs="$(_compress_if_exists 'SRR2922486' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1463-WT-3_S5_L008_R1_005.fastq.gz"
fi

fasterq-dump --split-files "SRR2922487"
gz1="$(_compress_if_exists 'SRR2922487_1' || true)"
gz2="$(_compress_if_exists 'SRR2922487_2' || true)"
gzs="$(_compress_if_exists 'SRR2922487' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1463-WT-3_S5_L008_R1_006.fastq.gz"
fi

fasterq-dump --split-files "SRR2922488"
gz1="$(_compress_if_exists 'SRR2922488_1' || true)"
gz2="$(_compress_if_exists 'SRR2922488_2' || true)"
gzs="$(_compress_if_exists 'SRR2922488' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1463-WT-3_S5_L008_R1_007.fastq.gz"
fi

fasterq-dump --split-files "SRR2922489"
gz1="$(_compress_if_exists 'SRR2922489_1' || true)"
gz2="$(_compress_if_exists 'SRR2922489_2' || true)"
gzs="$(_compress_if_exists 'SRR2922489' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1463-WT-3_S5_L008_R1_008.fastq.gz"
fi

fasterq-dump --split-files "SRR2922490"
gz1="$(_compress_if_exists 'SRR2922490_1' || true)"
gz2="$(_compress_if_exists 'SRR2922490_2' || true)"
gzs="$(_compress_if_exists 'SRR2922490' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1463-WT-3_S5_L008_R1_009.fastq.gz"
fi

fasterq-dump --split-files "SRR2922491"
gz1="$(_compress_if_exists 'SRR2922491_1' || true)"
gz2="$(_compress_if_exists 'SRR2922491_2' || true)"
gzs="$(_compress_if_exists 'SRR2922491' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1463-WT-4_S6_L008_R1_001.fastq.gz"
fi

fasterq-dump --split-files "SRR2922492"
gz1="$(_compress_if_exists 'SRR2922492_1' || true)"
gz2="$(_compress_if_exists 'SRR2922492_2' || true)"
gzs="$(_compress_if_exists 'SRR2922492' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1463-WT-4_S6_L008_R1_010.fastq.gz"
fi

fasterq-dump --split-files "SRR2922493"
gz1="$(_compress_if_exists 'SRR2922493_1' || true)"
gz2="$(_compress_if_exists 'SRR2922493_2' || true)"
gzs="$(_compress_if_exists 'SRR2922493' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1463-WT-4_S6_L008_R1_002.fastq.gz"
fi

fasterq-dump --split-files "SRR2922494"
gz1="$(_compress_if_exists 'SRR2922494_1' || true)"
gz2="$(_compress_if_exists 'SRR2922494_2' || true)"
gzs="$(_compress_if_exists 'SRR2922494' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1463-WT-4_S6_L008_R1_003.fastq.gz"
fi

fasterq-dump --split-files "SRR2922495"
gz1="$(_compress_if_exists 'SRR2922495_1' || true)"
gz2="$(_compress_if_exists 'SRR2922495_2' || true)"
gzs="$(_compress_if_exists 'SRR2922495' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1463-WT-4_S6_L008_R1_004.fastq.gz"
fi

fasterq-dump --split-files "SRR2922496"
gz1="$(_compress_if_exists 'SRR2922496_1' || true)"
gz2="$(_compress_if_exists 'SRR2922496_2' || true)"
gzs="$(_compress_if_exists 'SRR2922496' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1463-WT-4_S6_L008_R1_005.fastq.gz"
fi

fasterq-dump --split-files "SRR2922497"
gz1="$(_compress_if_exists 'SRR2922497_1' || true)"
gz2="$(_compress_if_exists 'SRR2922497_2' || true)"
gzs="$(_compress_if_exists 'SRR2922497' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1463-WT-4_S6_L008_R1_006.fastq.gz"
fi

fasterq-dump --split-files "SRR2922498"
gz1="$(_compress_if_exists 'SRR2922498_1' || true)"
gz2="$(_compress_if_exists 'SRR2922498_2' || true)"
gzs="$(_compress_if_exists 'SRR2922498' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1463-WT-4_S6_L008_R1_007.fastq.gz"
fi

fasterq-dump --split-files "SRR2922499"
gz1="$(_compress_if_exists 'SRR2922499_1' || true)"
gz2="$(_compress_if_exists 'SRR2922499_2' || true)"
gzs="$(_compress_if_exists 'SRR2922499' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1463-WT-4_S6_L008_R1_008.fastq.gz"
fi

fasterq-dump --split-files "SRR2922500"
gz1="$(_compress_if_exists 'SRR2922500_1' || true)"
gz2="$(_compress_if_exists 'SRR2922500_2' || true)"
gzs="$(_compress_if_exists 'SRR2922500' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1463-WT-4_S6_L008_R1_009.fastq.gz"
fi

fasterq-dump --split-files "SRR2922501"
gz1="$(_compress_if_exists 'SRR2922501_1' || true)"
gz2="$(_compress_if_exists 'SRR2922501_2' || true)"
gzs="$(_compress_if_exists 'SRR2922501' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1175-SIN-1_S3_L008_R1_001.fastq.gz"
fi

fasterq-dump --split-files "SRR2922502"
gz1="$(_compress_if_exists 'SRR2922502_1' || true)"
gz2="$(_compress_if_exists 'SRR2922502_2' || true)"
gzs="$(_compress_if_exists 'SRR2922502' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1175-SIN-1_S3_L008_R1_010.fastq.gz"
fi

fasterq-dump --split-files "SRR2922503"
gz1="$(_compress_if_exists 'SRR2922503_1' || true)"
gz2="$(_compress_if_exists 'SRR2922503_2' || true)"
gzs="$(_compress_if_exists 'SRR2922503' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1175-SIN-1_S3_L008_R1_011.fastq.gz"
fi

fasterq-dump --split-files "SRR2922504"
gz1="$(_compress_if_exists 'SRR2922504_1' || true)"
gz2="$(_compress_if_exists 'SRR2922504_2' || true)"
gzs="$(_compress_if_exists 'SRR2922504' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1175-SIN-1_S3_L008_R1_002.fastq.gz"
fi

fasterq-dump --split-files "SRR2922505"
gz1="$(_compress_if_exists 'SRR2922505_1' || true)"
gz2="$(_compress_if_exists 'SRR2922505_2' || true)"
gzs="$(_compress_if_exists 'SRR2922505' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1175-SIN-1_S3_L008_R1_003.fastq.gz"
fi

fasterq-dump --split-files "SRR2922506"
gz1="$(_compress_if_exists 'SRR2922506_1' || true)"
gz2="$(_compress_if_exists 'SRR2922506_2' || true)"
gzs="$(_compress_if_exists 'SRR2922506' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1175-SIN-1_S3_L008_R1_004.fastq.gz"
fi

fasterq-dump --split-files "SRR2922507"
gz1="$(_compress_if_exists 'SRR2922507_1' || true)"
gz2="$(_compress_if_exists 'SRR2922507_2' || true)"
gzs="$(_compress_if_exists 'SRR2922507' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1175-SIN-1_S3_L008_R1_005.fastq.gz"
fi

fasterq-dump --split-files "SRR2922508"
gz1="$(_compress_if_exists 'SRR2922508_1' || true)"
gz2="$(_compress_if_exists 'SRR2922508_2' || true)"
gzs="$(_compress_if_exists 'SRR2922508' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1175-SIN-1_S3_L008_R1_006.fastq.gz"
fi

fasterq-dump --split-files "SRR2922509"
gz1="$(_compress_if_exists 'SRR2922509_1' || true)"
gz2="$(_compress_if_exists 'SRR2922509_2' || true)"
gzs="$(_compress_if_exists 'SRR2922509' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1175-SIN-1_S3_L008_R1_007.fastq.gz"
fi

fasterq-dump --split-files "SRR2922510"
gz1="$(_compress_if_exists 'SRR2922510_1' || true)"
gz2="$(_compress_if_exists 'SRR2922510_2' || true)"
gzs="$(_compress_if_exists 'SRR2922510' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1175-SIN-1_S3_L008_R1_008.fastq.gz"
fi

fasterq-dump --split-files "SRR2922511"
gz1="$(_compress_if_exists 'SRR2922511_1' || true)"
gz2="$(_compress_if_exists 'SRR2922511_2' || true)"
gzs="$(_compress_if_exists 'SRR2922511' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1175-SIN-1_S3_L008_R1_009.fastq.gz"
fi

fasterq-dump --split-files "SRR2922512"
gz1="$(_compress_if_exists 'SRR2922512_1' || true)"
gz2="$(_compress_if_exists 'SRR2922512_2' || true)"
gzs="$(_compress_if_exists 'SRR2922512' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1175-SIN-2_S4_L008_R1_001.fastq.gz"
fi

fasterq-dump --split-files "SRR2922513"
gz1="$(_compress_if_exists 'SRR2922513_1' || true)"
gz2="$(_compress_if_exists 'SRR2922513_2' || true)"
gzs="$(_compress_if_exists 'SRR2922513' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1175-SIN-2_S4_L008_R1_010.fastq.gz"
fi

fasterq-dump --split-files "SRR2922514"
gz1="$(_compress_if_exists 'SRR2922514_1' || true)"
gz2="$(_compress_if_exists 'SRR2922514_2' || true)"
gzs="$(_compress_if_exists 'SRR2922514' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1175-SIN-2_S4_L008_R1_002.fastq.gz"
fi

fasterq-dump --split-files "SRR2922515"
gz1="$(_compress_if_exists 'SRR2922515_1' || true)"
gz2="$(_compress_if_exists 'SRR2922515_2' || true)"
gzs="$(_compress_if_exists 'SRR2922515' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1175-SIN-2_S4_L008_R1_003.fastq.gz"
fi

fasterq-dump --split-files "SRR2922516"
gz1="$(_compress_if_exists 'SRR2922516_1' || true)"
gz2="$(_compress_if_exists 'SRR2922516_2' || true)"
gzs="$(_compress_if_exists 'SRR2922516' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1175-SIN-2_S4_L008_R1_004.fastq.gz"
fi

fasterq-dump --split-files "SRR2922517"
gz1="$(_compress_if_exists 'SRR2922517_1' || true)"
gz2="$(_compress_if_exists 'SRR2922517_2' || true)"
gzs="$(_compress_if_exists 'SRR2922517' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1175-SIN-2_S4_L008_R1_005.fastq.gz"
fi

fasterq-dump --split-files "SRR2922518"
gz1="$(_compress_if_exists 'SRR2922518_1' || true)"
gz2="$(_compress_if_exists 'SRR2922518_2' || true)"
gzs="$(_compress_if_exists 'SRR2922518' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1175-SIN-2_S4_L008_R1_006.fastq.gz"
fi

fasterq-dump --split-files "SRR2922519"
gz1="$(_compress_if_exists 'SRR2922519_1' || true)"
gz2="$(_compress_if_exists 'SRR2922519_2' || true)"
gzs="$(_compress_if_exists 'SRR2922519' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1175-SIN-2_S4_L008_R1_007.fastq.gz"
fi

fasterq-dump --split-files "SRR2922520"
gz1="$(_compress_if_exists 'SRR2922520_1' || true)"
gz2="$(_compress_if_exists 'SRR2922520_2' || true)"
gzs="$(_compress_if_exists 'SRR2922520' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1175-SIN-2_S4_L008_R1_008.fastq.gz"
fi

fasterq-dump --split-files "SRR2922521"
gz1="$(_compress_if_exists 'SRR2922521_1' || true)"
gz2="$(_compress_if_exists 'SRR2922521_2' || true)"
gzs="$(_compress_if_exists 'SRR2922521' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "AG-OD1175-SIN-2_S4_L008_R1_009.fastq.gz"
fi


# Option B: Direct download (larger .sra files)
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922454/SRR2922454"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922455/SRR2922455"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922456/SRR2922456"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922457/SRR2922457"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922458/SRR2922458"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922459/SRR2922459"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922460/SRR2922460"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922461/SRR2922461"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922462/SRR2922462"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922463/SRR2922463"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922464/SRR2922464"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922465/SRR2922465"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922466/SRR2922466"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922467/SRR2922467"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922468/SRR2922468"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922469/SRR2922469"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922470/SRR2922470"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922471/SRR2922471"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922472/SRR2922472"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922473/SRR2922473"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922474/SRR2922474"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922475/SRR2922475"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922476/SRR2922476"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922477/SRR2922477"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922478/SRR2922478"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922479/SRR2922479"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922480/SRR2922480"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922481/SRR2922481"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922482/SRR2922482"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922483/SRR2922483"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922484/SRR2922484"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922485/SRR2922485"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922486/SRR2922486"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922487/SRR2922487"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922488/SRR2922488"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922489/SRR2922489"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922490/SRR2922490"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922491/SRR2922491"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922492/SRR2922492"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922493/SRR2922493"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922494/SRR2922494"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922495/SRR2922495"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922496/SRR2922496"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922497/SRR2922497"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922498/SRR2922498"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922499/SRR2922499"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922500/SRR2922500"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922501/SRR2922501"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922502/SRR2922502"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922503/SRR2922503"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922504/SRR2922504"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922505/SRR2922505"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922506/SRR2922506"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922507/SRR2922507"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922508/SRR2922508"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922509/SRR2922509"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922510/SRR2922510"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922511/SRR2922511"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922512/SRR2922512"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922513/SRR2922513"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922514/SRR2922514"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922515/SRR2922515"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922516/SRR2922516"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922517/SRR2922517"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922518/SRR2922518"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922519/SRR2922519"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922520/SRR2922520"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922521/SRR2922521"

# --- Additional data files ---
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922454/SRR2922454"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922459/SRR2922459"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922460/SRR2922460"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922461/SRR2922461"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922462/SRR2922462"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922463/SRR2922463"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922464/SRR2922464"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922465/SRR2922465"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922466/SRR2922466"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922455/SRR2922455"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922456/SRR2922456"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922457/SRR2922457"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922458/SRR2922458"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922467/SRR2922467"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922471/SRR2922471"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922472/SRR2922472"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922473/SRR2922473"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922474/SRR2922474"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922475/SRR2922475"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922476/SRR2922476"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922477/SRR2922477"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922478/SRR2922478"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922468/SRR2922468"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922469/SRR2922469"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922470/SRR2922470"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922501/SRR2922501"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922504/SRR2922504"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922505/SRR2922505"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922506/SRR2922506"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922507/SRR2922507"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922508/SRR2922508"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922509/SRR2922509"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922510/SRR2922510"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922511/SRR2922511"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922502/SRR2922502"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922503/SRR2922503"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922512/SRR2922512"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922514/SRR2922514"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922515/SRR2922515"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922516/SRR2922516"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922517/SRR2922517"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922518/SRR2922518"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922519/SRR2922519"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922520/SRR2922520"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922521/SRR2922521"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922513/SRR2922513"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922479/SRR2922479"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922483/SRR2922483"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922484/SRR2922484"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922485/SRR2922485"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922486/SRR2922486"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922487/SRR2922487"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922488/SRR2922488"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922489/SRR2922489"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922490/SRR2922490"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922480/SRR2922480"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922481/SRR2922481"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922482/SRR2922482"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922491/SRR2922491"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922493/SRR2922493"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922494/SRR2922494"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922495/SRR2922495"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922496/SRR2922496"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922497/SRR2922497"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922498/SRR2922498"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922499/SRR2922499"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922500/SRR2922500"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR2922492/SRR2922492"

echo "Download complete. Files saved to $OUTDIR"