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

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

# --- GEO supplementary files ---
wget -nc "ftp://ftp.ncbi.nlm.nih.gov/geo/series/GSE249nnn/GSE249245/suppl/GSE249245_RAW.tar" -O "GSE249245_RAW.tar"

# --- 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 "SRR27033839"
gz1="$(_compress_if_exists 'SRR27033839_1' || true)"
gz2="$(_compress_if_exists 'SRR27033839_2' || true)"
gzs="$(_compress_if_exists 'SRR27033839' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "ZNF317_1_S17_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "ZNF317_1_S17_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033840"
gz1="$(_compress_if_exists 'SRR27033840_1' || true)"
gz2="$(_compress_if_exists 'SRR27033840_2' || true)"
gzs="$(_compress_if_exists 'SRR27033840' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "ZNF2_2_S114_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "ZNF2_2_S114_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033841"
gz1="$(_compress_if_exists 'SRR27033841_1' || true)"
gz2="$(_compress_if_exists 'SRR27033841_2' || true)"
gzs="$(_compress_if_exists 'SRR27033841' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "ZNF2_1_S113_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "ZNF2_1_S113_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033842"
gz1="$(_compress_if_exists 'SRR27033842_1' || true)"
gz2="$(_compress_if_exists 'SRR27033842_2' || true)"
gzs="$(_compress_if_exists 'SRR27033842' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "ZNF277_2_S20_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "ZNF277_2_S20_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033843"
gz1="$(_compress_if_exists 'SRR27033843_1' || true)"
gz2="$(_compress_if_exists 'SRR27033843_2' || true)"
gzs="$(_compress_if_exists 'SRR27033843' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "ZNF277_1_S19_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "ZNF277_1_S19_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033844"
gz1="$(_compress_if_exists 'SRR27033844_1' || true)"
gz2="$(_compress_if_exists 'SRR27033844_2' || true)"
gzs="$(_compress_if_exists 'SRR27033844' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "ZNF22_2_S88_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "ZNF22_2_S88_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033845"
gz1="$(_compress_if_exists 'SRR27033845_1' || true)"
gz2="$(_compress_if_exists 'SRR27033845_2' || true)"
gzs="$(_compress_if_exists 'SRR27033845' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "ZNF22_1_S87_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "ZNF22_1_S87_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033846"
gz1="$(_compress_if_exists 'SRR27033846_1' || true)"
gz2="$(_compress_if_exists 'SRR27033846_2' || true)"
gzs="$(_compress_if_exists 'SRR27033846' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "ZMAT5_2_S124_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "ZMAT5_2_S124_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033847"
gz1="$(_compress_if_exists 'SRR27033847_1' || true)"
gz2="$(_compress_if_exists 'SRR27033847_2' || true)"
gzs="$(_compress_if_exists 'SRR27033847' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "ZMAT5_1_S123_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "ZMAT5_1_S123_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033848"
gz1="$(_compress_if_exists 'SRR27033848_1' || true)"
gz2="$(_compress_if_exists 'SRR27033848_2' || true)"
gzs="$(_compress_if_exists 'SRR27033848' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "ZMAT3_2_S106_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "ZMAT3_2_S106_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033849"
gz1="$(_compress_if_exists 'SRR27033849_1' || true)"
gz2="$(_compress_if_exists 'SRR27033849_2' || true)"
gzs="$(_compress_if_exists 'SRR27033849' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "ZMAT3_1_S105_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "ZMAT3_1_S105_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033850"
gz1="$(_compress_if_exists 'SRR27033850_1' || true)"
gz2="$(_compress_if_exists 'SRR27033850_2' || true)"
gzs="$(_compress_if_exists 'SRR27033850' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "ZFP36L1_2_S12_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "ZFP36L1_2_S12_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033851"
gz1="$(_compress_if_exists 'SRR27033851_1' || true)"
gz2="$(_compress_if_exists 'SRR27033851_2' || true)"
gzs="$(_compress_if_exists 'SRR27033851' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "ZFP36L1_1_S11_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "ZFP36L1_1_S11_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033852"
gz1="$(_compress_if_exists 'SRR27033852_1' || true)"
gz2="$(_compress_if_exists 'SRR27033852_2' || true)"
gzs="$(_compress_if_exists 'SRR27033852' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "ZC3H3_2_S98_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "ZC3H3_2_S98_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033853"
gz1="$(_compress_if_exists 'SRR27033853_1' || true)"
gz2="$(_compress_if_exists 'SRR27033853_2' || true)"
gzs="$(_compress_if_exists 'SRR27033853' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "ZC3H3_1_S97_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "ZC3H3_1_S97_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033854"
gz1="$(_compress_if_exists 'SRR27033854_1' || true)"
gz2="$(_compress_if_exists 'SRR27033854_2' || true)"
gzs="$(_compress_if_exists 'SRR27033854' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "WBP4_2_S104_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "WBP4_2_S104_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033855"
gz1="$(_compress_if_exists 'SRR27033855_1' || true)"
gz2="$(_compress_if_exists 'SRR27033855_2' || true)"
gzs="$(_compress_if_exists 'SRR27033855' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "WBP4_1_S103_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "WBP4_1_S103_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033856"
gz1="$(_compress_if_exists 'SRR27033856_1' || true)"
gz2="$(_compress_if_exists 'SRR27033856_2' || true)"
gzs="$(_compress_if_exists 'SRR27033856' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "UT-2_S57_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "UT-2_S57_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033857"
gz1="$(_compress_if_exists 'SRR27033857_1' || true)"
gz2="$(_compress_if_exists 'SRR27033857_2' || true)"
gzs="$(_compress_if_exists 'SRR27033857' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "UT_S25_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "UT_S25_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033858"
gz1="$(_compress_if_exists 'SRR27033858_1' || true)"
gz2="$(_compress_if_exists 'SRR27033858_2' || true)"
gzs="$(_compress_if_exists 'SRR27033858' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U2AF1_2_S96_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U2AF1_2_S96_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033859"
gz1="$(_compress_if_exists 'SRR27033859_1' || true)"
gz2="$(_compress_if_exists 'SRR27033859_2' || true)"
gzs="$(_compress_if_exists 'SRR27033859' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "U2AF1_1_S95_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "U2AF1_1_S95_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033860"
gz1="$(_compress_if_exists 'SRR27033860_1' || true)"
gz2="$(_compress_if_exists 'SRR27033860_2' || true)"
gzs="$(_compress_if_exists 'SRR27033860' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "TRIM55_2_S128_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "TRIM55_2_S128_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033861"
gz1="$(_compress_if_exists 'SRR27033861_1' || true)"
gz2="$(_compress_if_exists 'SRR27033861_2' || true)"
gzs="$(_compress_if_exists 'SRR27033861' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "TRIM55_1_S127_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "TRIM55_1_S127_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033862"
gz1="$(_compress_if_exists 'SRR27033862_1' || true)"
gz2="$(_compress_if_exists 'SRR27033862_2' || true)"
gzs="$(_compress_if_exists 'SRR27033862' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "TEX13A_2_S118_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "TEX13A_2_S118_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033863"
gz1="$(_compress_if_exists 'SRR27033863_1' || true)"
gz2="$(_compress_if_exists 'SRR27033863_2' || true)"
gzs="$(_compress_if_exists 'SRR27033863' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "ZNF800-2_S44_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "ZNF800-2_S44_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033864"
gz1="$(_compress_if_exists 'SRR27033864_1' || true)"
gz2="$(_compress_if_exists 'SRR27033864_2' || true)"
gzs="$(_compress_if_exists 'SRR27033864' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "ZNF800-1_S43_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "ZNF800-1_S43_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033865"
gz1="$(_compress_if_exists 'SRR27033865_1' || true)"
gz2="$(_compress_if_exists 'SRR27033865_2' || true)"
gzs="$(_compress_if_exists 'SRR27033865' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "ZNF706-2_S42_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "ZNF706-2_S42_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033866"
gz1="$(_compress_if_exists 'SRR27033866_1' || true)"
gz2="$(_compress_if_exists 'SRR27033866_2' || true)"
gzs="$(_compress_if_exists 'SRR27033866' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "ZNF706-1_S41_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "ZNF706-1_S41_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033867"
gz1="$(_compress_if_exists 'SRR27033867_1' || true)"
gz2="$(_compress_if_exists 'SRR27033867_2' || true)"
gzs="$(_compress_if_exists 'SRR27033867' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "ZNF593_2_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "ZNF593_2_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033868"
gz1="$(_compress_if_exists 'SRR27033868_1' || true)"
gz2="$(_compress_if_exists 'SRR27033868_2' || true)"
gzs="$(_compress_if_exists 'SRR27033868' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "ZNF593_1_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "ZNF593_1_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033869"
gz1="$(_compress_if_exists 'SRR27033869_1' || true)"
gz2="$(_compress_if_exists 'SRR27033869_2' || true)"
gzs="$(_compress_if_exists 'SRR27033869' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "ZNF574-2_S48_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "ZNF574-2_S48_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033870"
gz1="$(_compress_if_exists 'SRR27033870_1' || true)"
gz2="$(_compress_if_exists 'SRR27033870_2' || true)"
gzs="$(_compress_if_exists 'SRR27033870' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "ZNF574-1_S47_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "ZNF574-1_S47_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033871"
gz1="$(_compress_if_exists 'SRR27033871_1' || true)"
gz2="$(_compress_if_exists 'SRR27033871_2' || true)"
gzs="$(_compress_if_exists 'SRR27033871' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "ZNF473_2_S84_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "ZNF473_2_S84_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033872"
gz1="$(_compress_if_exists 'SRR27033872_1' || true)"
gz2="$(_compress_if_exists 'SRR27033872_2' || true)"
gzs="$(_compress_if_exists 'SRR27033872' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "ZNF473_1_S83_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "ZNF473_1_S83_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033873"
gz1="$(_compress_if_exists 'SRR27033873_1' || true)"
gz2="$(_compress_if_exists 'SRR27033873_2' || true)"
gzs="$(_compress_if_exists 'SRR27033873' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "ZNF473-WT-2_S59_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "ZNF473-WT-2_S59_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033874"
gz1="$(_compress_if_exists 'SRR27033874_1' || true)"
gz2="$(_compress_if_exists 'SRR27033874_2' || true)"
gzs="$(_compress_if_exists 'SRR27033874' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "ZNF473-WT-1_S58_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "ZNF473-WT-1_S58_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033875"
gz1="$(_compress_if_exists 'SRR27033875_1' || true)"
gz2="$(_compress_if_exists 'SRR27033875_2' || true)"
gzs="$(_compress_if_exists 'SRR27033875' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "ZNF473-DEL-2_S61_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "ZNF473-DEL-2_S61_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033876"
gz1="$(_compress_if_exists 'SRR27033876_1' || true)"
gz2="$(_compress_if_exists 'SRR27033876_2' || true)"
gzs="$(_compress_if_exists 'SRR27033876' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "ZNF473-DEL-1_S60_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "ZNF473-DEL-1_S60_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033877"
gz1="$(_compress_if_exists 'SRR27033877_1' || true)"
gz2="$(_compress_if_exists 'SRR27033877_2' || true)"
gzs="$(_compress_if_exists 'SRR27033877' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "ZNF317_2_S18_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "ZNF317_2_S18_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033878"
gz1="$(_compress_if_exists 'SRR27033878_1' || true)"
gz2="$(_compress_if_exists 'SRR27033878_2' || true)"
gzs="$(_compress_if_exists 'SRR27033878' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "TEX13A_1_S117_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "TEX13A_1_S117_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033879"
gz1="$(_compress_if_exists 'SRR27033879_1' || true)"
gz2="$(_compress_if_exists 'SRR27033879_2' || true)"
gzs="$(_compress_if_exists 'SRR27033879' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "SNRPC_2_S86_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "SNRPC_2_S86_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033880"
gz1="$(_compress_if_exists 'SRR27033880_1' || true)"
gz2="$(_compress_if_exists 'SRR27033880_2' || true)"
gzs="$(_compress_if_exists 'SRR27033880' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "SNRPC_1_S85_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "SNRPC_1_S85_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033881"
gz1="$(_compress_if_exists 'SRR27033881_1' || true)"
gz2="$(_compress_if_exists 'SRR27033881_2' || true)"
gzs="$(_compress_if_exists 'SRR27033881' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "SALL4_2_S10_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "SALL4_2_S10_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033882"
gz1="$(_compress_if_exists 'SRR27033882_1' || true)"
gz2="$(_compress_if_exists 'SRR27033882_2' || true)"
gzs="$(_compress_if_exists 'SRR27033882' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "SALL4_1_S9_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "SALL4_1_S9_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033883"
gz1="$(_compress_if_exists 'SRR27033883_1' || true)"
gz2="$(_compress_if_exists 'SRR27033883_2' || true)"
gzs="$(_compress_if_exists 'SRR27033883' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "RNF14-2_S46_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "RNF14-2_S46_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033884"
gz1="$(_compress_if_exists 'SRR27033884_1' || true)"
gz2="$(_compress_if_exists 'SRR27033884_2' || true)"
gzs="$(_compress_if_exists 'SRR27033884' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "RNF14-1_S45_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "RNF14-1_S45_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033885"
gz1="$(_compress_if_exists 'SRR27033885_1' || true)"
gz2="$(_compress_if_exists 'SRR27033885_2' || true)"
gzs="$(_compress_if_exists 'SRR27033885' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "RNF113A_2_S69_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "RNF113A_2_S69_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033886"
gz1="$(_compress_if_exists 'SRR27033886_1' || true)"
gz2="$(_compress_if_exists 'SRR27033886_2' || true)"
gzs="$(_compress_if_exists 'SRR27033886' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "RNF113A_1_S58_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "RNF113A_1_S58_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033887"
gz1="$(_compress_if_exists 'SRR27033887_1' || true)"
gz2="$(_compress_if_exists 'SRR27033887_2' || true)"
gzs="$(_compress_if_exists 'SRR27033887' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "RBM5_2_S55_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "RBM5_2_S55_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033888"
gz1="$(_compress_if_exists 'SRR27033888_1' || true)"
gz2="$(_compress_if_exists 'SRR27033888_2' || true)"
gzs="$(_compress_if_exists 'SRR27033888' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "RBM5_1_S54_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "RBM5_1_S54_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033889"
gz1="$(_compress_if_exists 'SRR27033889_1' || true)"
gz2="$(_compress_if_exists 'SRR27033889_2' || true)"
gzs="$(_compress_if_exists 'SRR27033889' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "PHF7_2_S92_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "PHF7_2_S92_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033890"
gz1="$(_compress_if_exists 'SRR27033890_1' || true)"
gz2="$(_compress_if_exists 'SRR27033890_2' || true)"
gzs="$(_compress_if_exists 'SRR27033890' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "PHF7_1_S91_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "PHF7_1_S91_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033891"
gz1="$(_compress_if_exists 'SRR27033891_1' || true)"
gz2="$(_compress_if_exists 'SRR27033891_2' || true)"
gzs="$(_compress_if_exists 'SRR27033891' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "NANOS2_2_S112_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "NANOS2_2_S112_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033892"
gz1="$(_compress_if_exists 'SRR27033892_1' || true)"
gz2="$(_compress_if_exists 'SRR27033892_2' || true)"
gzs="$(_compress_if_exists 'SRR27033892' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "NANOS2_1_S111_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "NANOS2_1_S111_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033893"
gz1="$(_compress_if_exists 'SRR27033893_1' || true)"
gz2="$(_compress_if_exists 'SRR27033893_2' || true)"
gzs="$(_compress_if_exists 'SRR27033893' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "MBNL1_2_S90_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "MBNL1_2_S90_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033894"
gz1="$(_compress_if_exists 'SRR27033894_1' || true)"
gz2="$(_compress_if_exists 'SRR27033894_2' || true)"
gzs="$(_compress_if_exists 'SRR27033894' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "MBNL1_1_S89_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "MBNL1_1_S89_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033895"
gz1="$(_compress_if_exists 'SRR27033895_1' || true)"
gz2="$(_compress_if_exists 'SRR27033895_2' || true)"
gzs="$(_compress_if_exists 'SRR27033895' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "MAZ_2_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "MAZ_2_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033896"
gz1="$(_compress_if_exists 'SRR27033896_1' || true)"
gz2="$(_compress_if_exists 'SRR27033896_2' || true)"
gzs="$(_compress_if_exists 'SRR27033896' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "MAZ_1_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "MAZ_1_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033897"
gz1="$(_compress_if_exists 'SRR27033897_1' || true)"
gz2="$(_compress_if_exists 'SRR27033897_2' || true)"
gzs="$(_compress_if_exists 'SRR27033897' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIN28B_2_S8_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIN28B_2_S8_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033898"
gz1="$(_compress_if_exists 'SRR27033898_1' || true)"
gz2="$(_compress_if_exists 'SRR27033898_2' || true)"
gzs="$(_compress_if_exists 'SRR27033898' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "LIN28B_1_S7_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "LIN28B_1_S7_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033899"
gz1="$(_compress_if_exists 'SRR27033899_1' || true)"
gz2="$(_compress_if_exists 'SRR27033899_2' || true)"
gzs="$(_compress_if_exists 'SRR27033899' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "IGHMBP2_2_S126_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "IGHMBP2_2_S126_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033900"
gz1="$(_compress_if_exists 'SRR27033900_1' || true)"
gz2="$(_compress_if_exists 'SRR27033900_2' || true)"
gzs="$(_compress_if_exists 'SRR27033900' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "IGHMBP2_1_S125_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "IGHMBP2_1_S125_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033901"
gz1="$(_compress_if_exists 'SRR27033901_1' || true)"
gz2="$(_compress_if_exists 'SRR27033901_2' || true)"
gzs="$(_compress_if_exists 'SRR27033901' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "GTF3C4-2_S50_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "GTF3C4-2_S50_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033902"
gz1="$(_compress_if_exists 'SRR27033902_1' || true)"
gz2="$(_compress_if_exists 'SRR27033902_2' || true)"
gzs="$(_compress_if_exists 'SRR27033902' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "GTF3C4-1_S49_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "GTF3C4-1_S49_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033903"
gz1="$(_compress_if_exists 'SRR27033903_1' || true)"
gz2="$(_compress_if_exists 'SRR27033903_2' || true)"
gzs="$(_compress_if_exists 'SRR27033903' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "GIN1_2_S82_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "GIN1_2_S82_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033904"
gz1="$(_compress_if_exists 'SRR27033904_1' || true)"
gz2="$(_compress_if_exists 'SRR27033904_2' || true)"
gzs="$(_compress_if_exists 'SRR27033904' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "GIN1_1_S81_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "GIN1_1_S81_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033905"
gz1="$(_compress_if_exists 'SRR27033905_1' || true)"
gz2="$(_compress_if_exists 'SRR27033905_2' || true)"
gzs="$(_compress_if_exists 'SRR27033905' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "G2E3_2_S80_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "G2E3_2_S80_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033906"
gz1="$(_compress_if_exists 'SRR27033906_1' || true)"
gz2="$(_compress_if_exists 'SRR27033906_2' || true)"
gzs="$(_compress_if_exists 'SRR27033906' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "G2E3_1_S79_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "G2E3_1_S79_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033907"
gz1="$(_compress_if_exists 'SRR27033907_1' || true)"
gz2="$(_compress_if_exists 'SRR27033907_2' || true)"
gzs="$(_compress_if_exists 'SRR27033907' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "FUS_2_S108_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "FUS_2_S108_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033908"
gz1="$(_compress_if_exists 'SRR27033908_1' || true)"
gz2="$(_compress_if_exists 'SRR27033908_2' || true)"
gzs="$(_compress_if_exists 'SRR27033908' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "FUS_1_S107_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "FUS_1_S107_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033909"
gz1="$(_compress_if_exists 'SRR27033909_1' || true)"
gz2="$(_compress_if_exists 'SRR27033909_2' || true)"
gzs="$(_compress_if_exists 'SRR27033909' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "ERI2_2_S100_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "ERI2_2_S100_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033910"
gz1="$(_compress_if_exists 'SRR27033910_1' || true)"
gz2="$(_compress_if_exists 'SRR27033910_2' || true)"
gzs="$(_compress_if_exists 'SRR27033910' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "ERI2_1_S99_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "ERI2_1_S99_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033911"
gz1="$(_compress_if_exists 'SRR27033911_1' || true)"
gz2="$(_compress_if_exists 'SRR27033911_2' || true)"
gzs="$(_compress_if_exists 'SRR27033911' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "CTCF_2_S29_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "CTCF_2_S29_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033912"
gz1="$(_compress_if_exists 'SRR27033912_1' || true)"
gz2="$(_compress_if_exists 'SRR27033912_2' || true)"
gzs="$(_compress_if_exists 'SRR27033912' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "CTCF_1_S28_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "CTCF_1_S28_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033913"
gz1="$(_compress_if_exists 'SRR27033913_1' || true)"
gz2="$(_compress_if_exists 'SRR27033913_2' || true)"
gzs="$(_compress_if_exists 'SRR27033913' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "CPSF4_2_S94_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "CPSF4_2_S94_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033914"
gz1="$(_compress_if_exists 'SRR27033914_1' || true)"
gz2="$(_compress_if_exists 'SRR27033914_2' || true)"
gzs="$(_compress_if_exists 'SRR27033914' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "CPSF4_1_S93_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "CPSF4_1_S93_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033915"
gz1="$(_compress_if_exists 'SRR27033915_1' || true)"
gz2="$(_compress_if_exists 'SRR27033915_2' || true)"
gzs="$(_compress_if_exists 'SRR27033915' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "CPSF4L_2_S57_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "CPSF4L_2_S57_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033916"
gz1="$(_compress_if_exists 'SRR27033916_1' || true)"
gz2="$(_compress_if_exists 'SRR27033916_2' || true)"
gzs="$(_compress_if_exists 'SRR27033916' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "CPSF4L_1_S56_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "CPSF4L_1_S56_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033917"
gz1="$(_compress_if_exists 'SRR27033917_1' || true)"
gz2="$(_compress_if_exists 'SRR27033917_2' || true)"
gzs="$(_compress_if_exists 'SRR27033917' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "CNOT4_2_S116_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "CNOT4_2_S116_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033918"
gz1="$(_compress_if_exists 'SRR27033918_1' || true)"
gz2="$(_compress_if_exists 'SRR27033918_2' || true)"
gzs="$(_compress_if_exists 'SRR27033918' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "CNOT4_1_S115_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "CNOT4_1_S115_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033919"
gz1="$(_compress_if_exists 'SRR27033919_1' || true)"
gz2="$(_compress_if_exists 'SRR27033919_2' || true)"
gzs="$(_compress_if_exists 'SRR27033919' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "CNBP_2_S14_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "CNBP_2_S14_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033920"
gz1="$(_compress_if_exists 'SRR27033920_1' || true)"
gz2="$(_compress_if_exists 'SRR27033920_2' || true)"
gzs="$(_compress_if_exists 'SRR27033920' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "CNBP_1_S13_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "CNBP_1_S13_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033921"
gz1="$(_compress_if_exists 'SRR27033921_1' || true)"
gz2="$(_compress_if_exists 'SRR27033921_2' || true)"
gzs="$(_compress_if_exists 'SRR27033921' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "CISD2_2_S120_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "CISD2_2_S120_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033922"
gz1="$(_compress_if_exists 'SRR27033922_1' || true)"
gz2="$(_compress_if_exists 'SRR27033922_2' || true)"
gzs="$(_compress_if_exists 'SRR27033922' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "CISD2_1_S119_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "CISD2_1_S119_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033923"
gz1="$(_compress_if_exists 'SRR27033923_1' || true)"
gz2="$(_compress_if_exists 'SRR27033923_2' || true)"
gzs="$(_compress_if_exists 'SRR27033923' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "CISD1_2_S16_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "CISD1_2_S16_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033924"
gz1="$(_compress_if_exists 'SRR27033924_1' || true)"
gz2="$(_compress_if_exists 'SRR27033924_2' || true)"
gzs="$(_compress_if_exists 'SRR27033924' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "CISD1_1_S15_L001_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "CISD1_1_S15_L001_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033925"
gz1="$(_compress_if_exists 'SRR27033925_1' || true)"
gz2="$(_compress_if_exists 'SRR27033925_2' || true)"
gzs="$(_compress_if_exists 'SRR27033925' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BRCA1_2_S110_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BRCA1_2_S110_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033926"
gz1="$(_compress_if_exists 'SRR27033926_1' || true)"
gz2="$(_compress_if_exists 'SRR27033926_2' || true)"
gzs="$(_compress_if_exists 'SRR27033926' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "BRCA1_1_S109_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "BRCA1_1_S109_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033927"
gz1="$(_compress_if_exists 'SRR27033927_1' || true)"
gz2="$(_compress_if_exists 'SRR27033927_2' || true)"
gzs="$(_compress_if_exists 'SRR27033927' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "APEX2_2_S102_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "APEX2_2_S102_L002_R2_001.fastq.gz"
fi

fasterq-dump --split-files "SRR27033928"
gz1="$(_compress_if_exists 'SRR27033928_1' || true)"
gz2="$(_compress_if_exists 'SRR27033928_2' || true)"
gzs="$(_compress_if_exists 'SRR27033928' || true)"
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz1" ]; then
  mv -f "$gz1" "APEX2_1_S101_L002_R1_001.fastq.gz"
fi
if [ "$RENAME_SRA_TO_ORIGINAL" = "1" ] && [ -n "$gz2" ]; then
  mv -f "$gz2" "APEX2_1_S101_L002_R2_001.fastq.gz"
fi


# Option B: Direct download (larger .sra files)
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033839/SRR27033839"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033840/SRR27033840"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033841/SRR27033841"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033842/SRR27033842"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033843/SRR27033843"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033844/SRR27033844"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033845/SRR27033845"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033846/SRR27033846"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033847/SRR27033847"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033848/SRR27033848"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033849/SRR27033849"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033850/SRR27033850"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033851/SRR27033851"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033852/SRR27033852"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033853/SRR27033853"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033854/SRR27033854"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033855/SRR27033855"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033856/SRR27033856"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033857/SRR27033857"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033858/SRR27033858"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033859/SRR27033859"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033860/SRR27033860"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033861/SRR27033861"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033862/SRR27033862"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033863/SRR27033863"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033864/SRR27033864"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033865/SRR27033865"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033866/SRR27033866"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033867/SRR27033867"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033868/SRR27033868"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033869/SRR27033869"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033870/SRR27033870"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033871/SRR27033871"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033872/SRR27033872"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033873/SRR27033873"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033874/SRR27033874"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033875/SRR27033875"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033876/SRR27033876"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033877/SRR27033877"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033878/SRR27033878"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033879/SRR27033879"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033880/SRR27033880"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033881/SRR27033881"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033882/SRR27033882"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033883/SRR27033883"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033884/SRR27033884"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033885/SRR27033885"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033886/SRR27033886"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033887/SRR27033887"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033888/SRR27033888"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033889/SRR27033889"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033890/SRR27033890"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033891/SRR27033891"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033892/SRR27033892"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033893/SRR27033893"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033894/SRR27033894"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033895/SRR27033895"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033896/SRR27033896"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033897/SRR27033897"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033898/SRR27033898"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033899/SRR27033899"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033900/SRR27033900"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033901/SRR27033901"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033902/SRR27033902"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033903/SRR27033903"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033904/SRR27033904"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033905/SRR27033905"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033906/SRR27033906"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033907/SRR27033907"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033908/SRR27033908"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033909/SRR27033909"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033910/SRR27033910"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033911/SRR27033911"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033912/SRR27033912"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033913/SRR27033913"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033914/SRR27033914"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033915/SRR27033915"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033916/SRR27033916"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033917/SRR27033917"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033918/SRR27033918"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033919/SRR27033919"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033920/SRR27033920"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033921/SRR27033921"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033922/SRR27033922"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033923/SRR27033923"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033924/SRR27033924"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033925/SRR27033925"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033926/SRR27033926"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033927/SRR27033927"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033928/SRR27033928"

# --- Additional data files ---
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033928/SRR27033928"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033927/SRR27033927"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033926/SRR27033926"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033925/SRR27033925"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033924/SRR27033924"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033923/SRR27033923"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033922/SRR27033922"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033921/SRR27033921"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033920/SRR27033920"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033919/SRR27033919"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033918/SRR27033918"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033917/SRR27033917"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033914/SRR27033914"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033913/SRR27033913"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033916/SRR27033916"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033915/SRR27033915"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033912/SRR27033912"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033911/SRR27033911"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033910/SRR27033910"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033909/SRR27033909"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033908/SRR27033908"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033907/SRR27033907"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033906/SRR27033906"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033905/SRR27033905"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033904/SRR27033904"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033903/SRR27033903"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033902/SRR27033902"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033901/SRR27033901"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033900/SRR27033900"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033899/SRR27033899"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033898/SRR27033898"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033897/SRR27033897"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033896/SRR27033896"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033895/SRR27033895"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033894/SRR27033894"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033893/SRR27033893"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033892/SRR27033892"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033891/SRR27033891"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033890/SRR27033890"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033889/SRR27033889"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033888/SRR27033888"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033887/SRR27033887"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033886/SRR27033886"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033885/SRR27033885"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033884/SRR27033884"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033883/SRR27033883"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033882/SRR27033882"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033881/SRR27033881"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033880/SRR27033880"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033879/SRR27033879"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033878/SRR27033878"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033862/SRR27033862"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033861/SRR27033861"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033860/SRR27033860"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033859/SRR27033859"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033858/SRR27033858"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033856/SRR27033856"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033857/SRR27033857"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033855/SRR27033855"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033854/SRR27033854"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033853/SRR27033853"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033852/SRR27033852"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033851/SRR27033851"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033850/SRR27033850"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033849/SRR27033849"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033848/SRR27033848"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033847/SRR27033847"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033846/SRR27033846"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033841/SRR27033841"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033845/SRR27033845"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033844/SRR27033844"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033840/SRR27033840"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033843/SRR27033843"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033842/SRR27033842"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033839/SRR27033839"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033877/SRR27033877"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033872/SRR27033872"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033871/SRR27033871"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033876/SRR27033876"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033875/SRR27033875"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033874/SRR27033874"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033873/SRR27033873"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033870/SRR27033870"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033869/SRR27033869"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033868/SRR27033868"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033867/SRR27033867"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033866/SRR27033866"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033865/SRR27033865"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033864/SRR27033864"
curl -L -O -C - "https://sra-pub-run-odp.s3.amazonaws.com/sra/SRR27033863/SRR27033863"

echo "Download complete. Files saved to $OUTDIR"