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

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

# --- GEO supplementary files ---
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE59nnn/GSE59288/suppl/GSE59288_exp_mRNA.txt.gz" -O "GSE59288_exp_mRNA.txt.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 "SRR1510124"
gz1="$(_compress_if_exists 'SRR1510124_1' || true)"
gz2="$(_compress_if_exists 'SRR1510124_2' || true)"
gzs="$(_compress_if_exists 'SRR1510124' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "aut1.fastq.gz"
fi

fasterq-dump --split-files "SRR1510125"
gz1="$(_compress_if_exists 'SRR1510125_1' || true)"
gz2="$(_compress_if_exists 'SRR1510125_2' || true)"
gzs="$(_compress_if_exists 'SRR1510125' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "aut2.fastq.gz"
fi

fasterq-dump --split-files "SRR1510126"
gz1="$(_compress_if_exists 'SRR1510126_1' || true)"
gz2="$(_compress_if_exists 'SRR1510126_2' || true)"
gzs="$(_compress_if_exists 'SRR1510126' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "aut3.fastq.gz"
fi

fasterq-dump --split-files "SRR1510127"
gz1="$(_compress_if_exists 'SRR1510127_1' || true)"
gz2="$(_compress_if_exists 'SRR1510127_2' || true)"
gzs="$(_compress_if_exists 'SRR1510127' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "aut4.fastq.gz"
fi

fasterq-dump --split-files "SRR1510128"
gz1="$(_compress_if_exists 'SRR1510128_1' || true)"
gz2="$(_compress_if_exists 'SRR1510128_2' || true)"
gzs="$(_compress_if_exists 'SRR1510128' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "aut5.fastq.gz"
fi

fasterq-dump --split-files "SRR1510129"
gz1="$(_compress_if_exists 'SRR1510129_1' || true)"
gz2="$(_compress_if_exists 'SRR1510129_2' || true)"
gzs="$(_compress_if_exists 'SRR1510129' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "aut6.fastq.gz"
fi

fasterq-dump --split-files "SRR1510130"
gz1="$(_compress_if_exists 'SRR1510130_1' || true)"
gz2="$(_compress_if_exists 'SRR1510130_2' || true)"
gzs="$(_compress_if_exists 'SRR1510130' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "aut7.fastq.gz"
fi

fasterq-dump --split-files "SRR1510131"
gz1="$(_compress_if_exists 'SRR1510131_1' || true)"
gz2="$(_compress_if_exists 'SRR1510131_2' || true)"
gzs="$(_compress_if_exists 'SRR1510131' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "aut8.fastq.gz"
fi

fasterq-dump --split-files "SRR1510132"
gz1="$(_compress_if_exists 'SRR1510132_1' || true)"
gz2="$(_compress_if_exists 'SRR1510132_2' || true)"
gzs="$(_compress_if_exists 'SRR1510132' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "aut9.fastq.gz"
fi

fasterq-dump --split-files "SRR1510133"
gz1="$(_compress_if_exists 'SRR1510133_1' || true)"
gz2="$(_compress_if_exists 'SRR1510133_2' || true)"
gzs="$(_compress_if_exists 'SRR1510133' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "aut10.fastq.gz"
fi

fasterq-dump --split-files "SRR1510134"
gz1="$(_compress_if_exists 'SRR1510134_1' || true)"
gz2="$(_compress_if_exists 'SRR1510134_2' || true)"
gzs="$(_compress_if_exists 'SRR1510134' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "aut11.fastq.gz"
fi

fasterq-dump --split-files "SRR1510135"
gz1="$(_compress_if_exists 'SRR1510135_1' || true)"
gz2="$(_compress_if_exists 'SRR1510135_2' || true)"
gzs="$(_compress_if_exists 'SRR1510135' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "aut12.fastq.gz"
fi

fasterq-dump --split-files "SRR1510136"
gz1="$(_compress_if_exists 'SRR1510136_1' || true)"
gz2="$(_compress_if_exists 'SRR1510136_2' || true)"
gzs="$(_compress_if_exists 'SRR1510136' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "aut13.fastq.gz"
fi

fasterq-dump --split-files "SRR1510137"
gz1="$(_compress_if_exists 'SRR1510137_1' || true)"
gz2="$(_compress_if_exists 'SRR1510137_2' || true)"
gzs="$(_compress_if_exists 'SRR1510137' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "aut14.fastq.gz"
fi

fasterq-dump --split-files "SRR1510138"
gz1="$(_compress_if_exists 'SRR1510138_1' || true)"
gz2="$(_compress_if_exists 'SRR1510138_2' || true)"
gzs="$(_compress_if_exists 'SRR1510138' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "aut15.fastq.gz"
fi

fasterq-dump --split-files "SRR1510139"
gz1="$(_compress_if_exists 'SRR1510139_1' || true)"
gz2="$(_compress_if_exists 'SRR1510139_2' || true)"
gzs="$(_compress_if_exists 'SRR1510139' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "aut16.fastq.gz"
fi

fasterq-dump --split-files "SRR1510140"
gz1="$(_compress_if_exists 'SRR1510140_1' || true)"
gz2="$(_compress_if_exists 'SRR1510140_2' || true)"
gzs="$(_compress_if_exists 'SRR1510140' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "aut17.fastq.gz"
fi

fasterq-dump --split-files "SRR1510141"
gz1="$(_compress_if_exists 'SRR1510141_1' || true)"
gz2="$(_compress_if_exists 'SRR1510141_2' || true)"
gzs="$(_compress_if_exists 'SRR1510141' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "aut18.fastq.gz"
fi

fasterq-dump --split-files "SRR1510142"
gz1="$(_compress_if_exists 'SRR1510142_1' || true)"
gz2="$(_compress_if_exists 'SRR1510142_2' || true)"
gzs="$(_compress_if_exists 'SRR1510142' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "aut19.fastq.gz"
fi

fasterq-dump --split-files "SRR1510143"
gz1="$(_compress_if_exists 'SRR1510143_1' || true)"
gz2="$(_compress_if_exists 'SRR1510143_2' || true)"
gzs="$(_compress_if_exists 'SRR1510143' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "aut20.fastq.gz"
fi

fasterq-dump --split-files "SRR1510144"
gz1="$(_compress_if_exists 'SRR1510144_1' || true)"
gz2="$(_compress_if_exists 'SRR1510144_2' || true)"
gzs="$(_compress_if_exists 'SRR1510144' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "aut21.fastq.gz"
fi

fasterq-dump --split-files "SRR1510145"
gz1="$(_compress_if_exists 'SRR1510145_1' || true)"
gz2="$(_compress_if_exists 'SRR1510145_2' || true)"
gzs="$(_compress_if_exists 'SRR1510145' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "aut22.fastq.gz"
fi

fasterq-dump --split-files "SRR1510146"
gz1="$(_compress_if_exists 'SRR1510146_1' || true)"
gz2="$(_compress_if_exists 'SRR1510146_2' || true)"
gzs="$(_compress_if_exists 'SRR1510146' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "aut23.fastq.gz"
fi

fasterq-dump --split-files "SRR1510147"
gz1="$(_compress_if_exists 'SRR1510147_1' || true)"
gz2="$(_compress_if_exists 'SRR1510147_2' || true)"
gzs="$(_compress_if_exists 'SRR1510147' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "aut24.fastq.gz"
fi

fasterq-dump --split-files "SRR1510148"
gz1="$(_compress_if_exists 'SRR1510148_1' || true)"
gz2="$(_compress_if_exists 'SRR1510148_2' || true)"
gzs="$(_compress_if_exists 'SRR1510148' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "aut25.fastq.gz"
fi

fasterq-dump --split-files "SRR1510149"
gz1="$(_compress_if_exists 'SRR1510149_1' || true)"
gz2="$(_compress_if_exists 'SRR1510149_2' || true)"
gzs="$(_compress_if_exists 'SRR1510149' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "aut26.fastq.gz"
fi

fasterq-dump --split-files "SRR1510150"
gz1="$(_compress_if_exists 'SRR1510150_1' || true)"
gz2="$(_compress_if_exists 'SRR1510150_2' || true)"
gzs="$(_compress_if_exists 'SRR1510150' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "aut27.fastq.gz"
fi

fasterq-dump --split-files "SRR1510151"
gz1="$(_compress_if_exists 'SRR1510151_1' || true)"
gz2="$(_compress_if_exists 'SRR1510151_2' || true)"
gzs="$(_compress_if_exists 'SRR1510151' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "aut28.fastq.gz"
fi

fasterq-dump --split-files "SRR1510152"
gz1="$(_compress_if_exists 'SRR1510152_1' || true)"
gz2="$(_compress_if_exists 'SRR1510152_2' || true)"
gzs="$(_compress_if_exists 'SRR1510152' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "aut29.fastq.gz"
fi

fasterq-dump --split-files "SRR1510153"
gz1="$(_compress_if_exists 'SRR1510153_1' || true)"
gz2="$(_compress_if_exists 'SRR1510153_2' || true)"
gzs="$(_compress_if_exists 'SRR1510153' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "aut30.fastq.gz"
fi

fasterq-dump --split-files "SRR1510154"
gz1="$(_compress_if_exists 'SRR1510154_1' || true)"
gz2="$(_compress_if_exists 'SRR1510154_2' || true)"
gzs="$(_compress_if_exists 'SRR1510154' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "aut31.fastq.gz"
fi

fasterq-dump --split-files "SRR1510155"
gz1="$(_compress_if_exists 'SRR1510155_1' || true)"
gz2="$(_compress_if_exists 'SRR1510155_2' || true)"
gzs="$(_compress_if_exists 'SRR1510155' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "aut32.fastq.gz"
fi

fasterq-dump --split-files "SRR1510156"
gz1="$(_compress_if_exists 'SRR1510156_1' || true)"
gz2="$(_compress_if_exists 'SRR1510156_2' || true)"
gzs="$(_compress_if_exists 'SRR1510156' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "aut33.fastq.gz"
fi

fasterq-dump --split-files "SRR1510157"
gz1="$(_compress_if_exists 'SRR1510157_1' || true)"
gz2="$(_compress_if_exists 'SRR1510157_2' || true)"
gzs="$(_compress_if_exists 'SRR1510157' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "aut34.fastq.gz"
fi

fasterq-dump --split-files "SRR1510158"
gz1="$(_compress_if_exists 'SRR1510158_1' || true)"
gz2="$(_compress_if_exists 'SRR1510158_2' || true)"
gzs="$(_compress_if_exists 'SRR1510158' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr1.fastq.gz"
fi

fasterq-dump --split-files "SRR1510159"
gz1="$(_compress_if_exists 'SRR1510159_1' || true)"
gz2="$(_compress_if_exists 'SRR1510159_2' || true)"
gzs="$(_compress_if_exists 'SRR1510159' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr2.fastq.gz"
fi

fasterq-dump --split-files "SRR1510160"
gz1="$(_compress_if_exists 'SRR1510160_1' || true)"
gz2="$(_compress_if_exists 'SRR1510160_2' || true)"
gzs="$(_compress_if_exists 'SRR1510160' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr3.fastq.gz"
fi

fasterq-dump --split-files "SRR1510161"
gz1="$(_compress_if_exists 'SRR1510161_1' || true)"
gz2="$(_compress_if_exists 'SRR1510161_2' || true)"
gzs="$(_compress_if_exists 'SRR1510161' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr4.fastq.gz"
fi

fasterq-dump --split-files "SRR1510162"
gz1="$(_compress_if_exists 'SRR1510162_1' || true)"
gz2="$(_compress_if_exists 'SRR1510162_2' || true)"
gzs="$(_compress_if_exists 'SRR1510162' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr5.fastq.gz"
fi

fasterq-dump --split-files "SRR1510163"
gz1="$(_compress_if_exists 'SRR1510163_1' || true)"
gz2="$(_compress_if_exists 'SRR1510163_2' || true)"
gzs="$(_compress_if_exists 'SRR1510163' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr6.fastq.gz"
fi

fasterq-dump --split-files "SRR1510164"
gz1="$(_compress_if_exists 'SRR1510164_1' || true)"
gz2="$(_compress_if_exists 'SRR1510164_2' || true)"
gzs="$(_compress_if_exists 'SRR1510164' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr7.fastq.gz"
fi

fasterq-dump --split-files "SRR1510165"
gz1="$(_compress_if_exists 'SRR1510165_1' || true)"
gz2="$(_compress_if_exists 'SRR1510165_2' || true)"
gzs="$(_compress_if_exists 'SRR1510165' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr8.fastq.gz"
fi

fasterq-dump --split-files "SRR1510166"
gz1="$(_compress_if_exists 'SRR1510166_1' || true)"
gz2="$(_compress_if_exists 'SRR1510166_2' || true)"
gzs="$(_compress_if_exists 'SRR1510166' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr9.fastq.gz"
fi

fasterq-dump --split-files "SRR1510167"
gz1="$(_compress_if_exists 'SRR1510167_1' || true)"
gz2="$(_compress_if_exists 'SRR1510167_2' || true)"
gzs="$(_compress_if_exists 'SRR1510167' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr10.fastq.gz"
fi

fasterq-dump --split-files "SRR1510168"
gz1="$(_compress_if_exists 'SRR1510168_1' || true)"
gz2="$(_compress_if_exists 'SRR1510168_2' || true)"
gzs="$(_compress_if_exists 'SRR1510168' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr11.fastq.gz"
fi

fasterq-dump --split-files "SRR1510169"
gz1="$(_compress_if_exists 'SRR1510169_1' || true)"
gz2="$(_compress_if_exists 'SRR1510169_2' || true)"
gzs="$(_compress_if_exists 'SRR1510169' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr12.fastq.gz"
fi

fasterq-dump --split-files "SRR1510170"
gz1="$(_compress_if_exists 'SRR1510170_1' || true)"
gz2="$(_compress_if_exists 'SRR1510170_2' || true)"
gzs="$(_compress_if_exists 'SRR1510170' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr13.fastq.gz"
fi

fasterq-dump --split-files "SRR1510171"
gz1="$(_compress_if_exists 'SRR1510171_1' || true)"
gz2="$(_compress_if_exists 'SRR1510171_2' || true)"
gzs="$(_compress_if_exists 'SRR1510171' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr14.fastq.gz"
fi

fasterq-dump --split-files "SRR1510172"
gz1="$(_compress_if_exists 'SRR1510172_1' || true)"
gz2="$(_compress_if_exists 'SRR1510172_2' || true)"
gzs="$(_compress_if_exists 'SRR1510172' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr15.fastq.gz"
fi

fasterq-dump --split-files "SRR1510173"
gz1="$(_compress_if_exists 'SRR1510173_1' || true)"
gz2="$(_compress_if_exists 'SRR1510173_2' || true)"
gzs="$(_compress_if_exists 'SRR1510173' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr16.fastq.gz"
fi

fasterq-dump --split-files "SRR1510174"
gz1="$(_compress_if_exists 'SRR1510174_1' || true)"
gz2="$(_compress_if_exists 'SRR1510174_2' || true)"
gzs="$(_compress_if_exists 'SRR1510174' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr17.fastq.gz"
fi

fasterq-dump --split-files "SRR1510175"
gz1="$(_compress_if_exists 'SRR1510175_1' || true)"
gz2="$(_compress_if_exists 'SRR1510175_2' || true)"
gzs="$(_compress_if_exists 'SRR1510175' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr18.fastq.gz"
fi

fasterq-dump --split-files "SRR1510176"
gz1="$(_compress_if_exists 'SRR1510176_1' || true)"
gz2="$(_compress_if_exists 'SRR1510176_2' || true)"
gzs="$(_compress_if_exists 'SRR1510176' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr19.fastq.gz"
fi

fasterq-dump --split-files "SRR1510177"
gz1="$(_compress_if_exists 'SRR1510177_1' || true)"
gz2="$(_compress_if_exists 'SRR1510177_2' || true)"
gzs="$(_compress_if_exists 'SRR1510177' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr20.fastq.gz"
fi

fasterq-dump --split-files "SRR1510178"
gz1="$(_compress_if_exists 'SRR1510178_1' || true)"
gz2="$(_compress_if_exists 'SRR1510178_2' || true)"
gzs="$(_compress_if_exists 'SRR1510178' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr21.fastq.gz"
fi

fasterq-dump --split-files "SRR1510179"
gz1="$(_compress_if_exists 'SRR1510179_1' || true)"
gz2="$(_compress_if_exists 'SRR1510179_2' || true)"
gzs="$(_compress_if_exists 'SRR1510179' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr22.fastq.gz"
fi

fasterq-dump --split-files "SRR1510180"
gz1="$(_compress_if_exists 'SRR1510180_1' || true)"
gz2="$(_compress_if_exists 'SRR1510180_2' || true)"
gzs="$(_compress_if_exists 'SRR1510180' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr23.fastq.gz"
fi

fasterq-dump --split-files "SRR1510181"
gz1="$(_compress_if_exists 'SRR1510181_1' || true)"
gz2="$(_compress_if_exists 'SRR1510181_2' || true)"
gzs="$(_compress_if_exists 'SRR1510181' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr24.fastq.gz"
fi

fasterq-dump --split-files "SRR1510182"
gz1="$(_compress_if_exists 'SRR1510182_1' || true)"
gz2="$(_compress_if_exists 'SRR1510182_2' || true)"
gzs="$(_compress_if_exists 'SRR1510182' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr25.fastq.gz"
fi

fasterq-dump --split-files "SRR1510183"
gz1="$(_compress_if_exists 'SRR1510183_1' || true)"
gz2="$(_compress_if_exists 'SRR1510183_2' || true)"
gzs="$(_compress_if_exists 'SRR1510183' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr26.fastq.gz"
fi

fasterq-dump --split-files "SRR1510184"
gz1="$(_compress_if_exists 'SRR1510184_1' || true)"
gz2="$(_compress_if_exists 'SRR1510184_2' || true)"
gzs="$(_compress_if_exists 'SRR1510184' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr27.fastq.gz"
fi

fasterq-dump --split-files "SRR1510185"
gz1="$(_compress_if_exists 'SRR1510185_1' || true)"
gz2="$(_compress_if_exists 'SRR1510185_2' || true)"
gzs="$(_compress_if_exists 'SRR1510185' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr28.fastq.gz"
fi

fasterq-dump --split-files "SRR1510186"
gz1="$(_compress_if_exists 'SRR1510186_1' || true)"
gz2="$(_compress_if_exists 'SRR1510186_2' || true)"
gzs="$(_compress_if_exists 'SRR1510186' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr29.fastq.gz"
fi

fasterq-dump --split-files "SRR1510187"
gz1="$(_compress_if_exists 'SRR1510187_1' || true)"
gz2="$(_compress_if_exists 'SRR1510187_2' || true)"
gzs="$(_compress_if_exists 'SRR1510187' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr30.fastq.gz"
fi

fasterq-dump --split-files "SRR1510188"
gz1="$(_compress_if_exists 'SRR1510188_1' || true)"
gz2="$(_compress_if_exists 'SRR1510188_2' || true)"
gzs="$(_compress_if_exists 'SRR1510188' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr31.fastq.gz"
fi

fasterq-dump --split-files "SRR1510189"
gz1="$(_compress_if_exists 'SRR1510189_1' || true)"
gz2="$(_compress_if_exists 'SRR1510189_2' || true)"
gzs="$(_compress_if_exists 'SRR1510189' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr32.fastq.gz"
fi

fasterq-dump --split-files "SRR1510190"
gz1="$(_compress_if_exists 'SRR1510190_1' || true)"
gz2="$(_compress_if_exists 'SRR1510190_2' || true)"
gzs="$(_compress_if_exists 'SRR1510190' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr33.fastq.gz"
fi

fasterq-dump --split-files "SRR1510191"
gz1="$(_compress_if_exists 'SRR1510191_1' || true)"
gz2="$(_compress_if_exists 'SRR1510191_2' || true)"
gzs="$(_compress_if_exists 'SRR1510191' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr34.fastq.gz"
fi

fasterq-dump --split-files "SRR1510192"
gz1="$(_compress_if_exists 'SRR1510192_1' || true)"
gz2="$(_compress_if_exists 'SRR1510192_2' || true)"
gzs="$(_compress_if_exists 'SRR1510192' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr35.fastq.gz"
fi

fasterq-dump --split-files "SRR1510193"
gz1="$(_compress_if_exists 'SRR1510193_1' || true)"
gz2="$(_compress_if_exists 'SRR1510193_2' || true)"
gzs="$(_compress_if_exists 'SRR1510193' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr36.fastq.gz"
fi

fasterq-dump --split-files "SRR1510194"
gz1="$(_compress_if_exists 'SRR1510194_1' || true)"
gz2="$(_compress_if_exists 'SRR1510194_2' || true)"
gzs="$(_compress_if_exists 'SRR1510194' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr37.fastq.gz"
fi

fasterq-dump --split-files "SRR1510195"
gz1="$(_compress_if_exists 'SRR1510195_1' || true)"
gz2="$(_compress_if_exists 'SRR1510195_2' || true)"
gzs="$(_compress_if_exists 'SRR1510195' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr38.fastq.gz"
fi

fasterq-dump --split-files "SRR1510196"
gz1="$(_compress_if_exists 'SRR1510196_1' || true)"
gz2="$(_compress_if_exists 'SRR1510196_2' || true)"
gzs="$(_compress_if_exists 'SRR1510196' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gzs" ]; then
  mv -f "$gzs" "ptr39.fastq.gz"
fi


# Option B: Direct download (larger .sra files)
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510124/SRR1510124"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510125/SRR1510125"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510126/SRR1510126"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510127/SRR1510127"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510128/SRR1510128"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510129/SRR1510129"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510130/SRR1510130"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510131/SRR1510131"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510132/SRR1510132"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510133/SRR1510133"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510134/SRR1510134"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510135/SRR1510135"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510136/SRR1510136"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510137/SRR1510137"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510138/SRR1510138"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510139/SRR1510139"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510140/SRR1510140"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510141/SRR1510141"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510142/SRR1510142"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510143/SRR1510143"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510144/SRR1510144"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510145/SRR1510145"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510146/SRR1510146"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510147/SRR1510147"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510148/SRR1510148"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510149/SRR1510149"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510150/SRR1510150"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510151/SRR1510151"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510152/SRR1510152"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510153/SRR1510153"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510154/SRR1510154"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510155/SRR1510155"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510156/SRR1510156"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510157/SRR1510157"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510158/SRR1510158"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510159/SRR1510159"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510160/SRR1510160"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510161/SRR1510161"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510162/SRR1510162"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510163/SRR1510163"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510164/SRR1510164"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510165/SRR1510165"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510166/SRR1510166"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510167/SRR1510167"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510168/SRR1510168"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510169/SRR1510169"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510170/SRR1510170"
curl -L -O -C - "https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos5/sra-pub-zq-11/SRR001/510/SRR1510171/SRR1510171.sralite.1"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510172/SRR1510172"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510173/SRR1510173"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510174/SRR1510174"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510175/SRR1510175"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510176/SRR1510176"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510177/SRR1510177"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510178/SRR1510178"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510179/SRR1510179"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510180/SRR1510180"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510181/SRR1510181"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510182/SRR1510182"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510183/SRR1510183"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510184/SRR1510184"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510185/SRR1510185"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510186/SRR1510186"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510187/SRR1510187"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510188/SRR1510188"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510189/SRR1510189"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510190/SRR1510190"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510191/SRR1510191"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510192/SRR1510192"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510193/SRR1510193"
curl -L -O -C - "https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos5/sra-pub-zq-11/SRR001/510/SRR1510194/SRR1510194.sralite.1"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510195/SRR1510195"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510196/SRR1510196"

# --- Additional data files ---
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510133/SRR1510133"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510137/SRR1510137"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510141/SRR1510141"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510142/SRR1510142"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510143/SRR1510143"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510144/SRR1510144"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510145/SRR1510145"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510146/SRR1510146"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510148/SRR1510148"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510149/SRR1510149"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510150/SRR1510150"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510152/SRR1510152"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510156/SRR1510156"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510128/SRR1510128"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510130/SRR1510130"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510167/SRR1510167"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510170/SRR1510170"
curl -L -O -C - "https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos5/sra-pub-zq-11/SRR001/510/SRR1510171/SRR1510171.sralite.1"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510173/SRR1510173"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510178/SRR1510178"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510179/SRR1510179"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510182/SRR1510182"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510186/SRR1510186"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510187/SRR1510187"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510189/SRR1510189"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510190/SRR1510190"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510191/SRR1510191"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510195/SRR1510195"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510196/SRR1510196"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510160/SRR1510160"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510161/SRR1510161"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510124/SRR1510124"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510125/SRR1510125"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510126/SRR1510126"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510127/SRR1510127"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510129/SRR1510129"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510131/SRR1510131"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510132/SRR1510132"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510134/SRR1510134"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510135/SRR1510135"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510136/SRR1510136"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510138/SRR1510138"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510139/SRR1510139"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510140/SRR1510140"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510147/SRR1510147"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510151/SRR1510151"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510153/SRR1510153"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510154/SRR1510154"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510155/SRR1510155"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510157/SRR1510157"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510158/SRR1510158"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510159/SRR1510159"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510162/SRR1510162"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510163/SRR1510163"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510164/SRR1510164"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510165/SRR1510165"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510166/SRR1510166"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510168/SRR1510168"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510169/SRR1510169"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510172/SRR1510172"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510174/SRR1510174"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510175/SRR1510175"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510176/SRR1510176"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510177/SRR1510177"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510180/SRR1510180"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510181/SRR1510181"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510183/SRR1510183"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510184/SRR1510184"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510185/SRR1510185"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510188/SRR1510188"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510192/SRR1510192"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR1510193/SRR1510193"
curl -L -O -C - "https://sra-downloadb.be-md.ncbi.nlm.nih.gov/sos5/sra-pub-zq-11/SRR001/510/SRR1510194/SRR1510194.sralite.1"

echo "Download complete. Files saved to $OUTDIR"